ivsstub

package
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 31, 2022 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BatchGetChannelFuture

type BatchGetChannelFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchGetChannelFuture) Get

type BatchGetStreamKeyFuture

type BatchGetStreamKeyFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchGetStreamKeyFuture) Get

type Client

type Client interface {
	BatchGetChannel(ctx workflow.Context, input *ivs.BatchGetChannelInput) (*ivs.BatchGetChannelOutput, error)
	BatchGetChannelAsync(ctx workflow.Context, input *ivs.BatchGetChannelInput) *BatchGetChannelFuture

	BatchGetStreamKey(ctx workflow.Context, input *ivs.BatchGetStreamKeyInput) (*ivs.BatchGetStreamKeyOutput, error)
	BatchGetStreamKeyAsync(ctx workflow.Context, input *ivs.BatchGetStreamKeyInput) *BatchGetStreamKeyFuture

	CreateChannel(ctx workflow.Context, input *ivs.CreateChannelInput) (*ivs.CreateChannelOutput, error)
	CreateChannelAsync(ctx workflow.Context, input *ivs.CreateChannelInput) *CreateChannelFuture

	CreateStreamKey(ctx workflow.Context, input *ivs.CreateStreamKeyInput) (*ivs.CreateStreamKeyOutput, error)
	CreateStreamKeyAsync(ctx workflow.Context, input *ivs.CreateStreamKeyInput) *CreateStreamKeyFuture

	DeleteChannel(ctx workflow.Context, input *ivs.DeleteChannelInput) (*ivs.DeleteChannelOutput, error)
	DeleteChannelAsync(ctx workflow.Context, input *ivs.DeleteChannelInput) *DeleteChannelFuture

	DeletePlaybackKeyPair(ctx workflow.Context, input *ivs.DeletePlaybackKeyPairInput) (*ivs.DeletePlaybackKeyPairOutput, error)
	DeletePlaybackKeyPairAsync(ctx workflow.Context, input *ivs.DeletePlaybackKeyPairInput) *DeletePlaybackKeyPairFuture

	DeleteStreamKey(ctx workflow.Context, input *ivs.DeleteStreamKeyInput) (*ivs.DeleteStreamKeyOutput, error)
	DeleteStreamKeyAsync(ctx workflow.Context, input *ivs.DeleteStreamKeyInput) *DeleteStreamKeyFuture

	GetChannel(ctx workflow.Context, input *ivs.GetChannelInput) (*ivs.GetChannelOutput, error)
	GetChannelAsync(ctx workflow.Context, input *ivs.GetChannelInput) *GetChannelFuture

	GetPlaybackKeyPair(ctx workflow.Context, input *ivs.GetPlaybackKeyPairInput) (*ivs.GetPlaybackKeyPairOutput, error)
	GetPlaybackKeyPairAsync(ctx workflow.Context, input *ivs.GetPlaybackKeyPairInput) *GetPlaybackKeyPairFuture

	GetStream(ctx workflow.Context, input *ivs.GetStreamInput) (*ivs.GetStreamOutput, error)
	GetStreamAsync(ctx workflow.Context, input *ivs.GetStreamInput) *GetStreamFuture

	GetStreamKey(ctx workflow.Context, input *ivs.GetStreamKeyInput) (*ivs.GetStreamKeyOutput, error)
	GetStreamKeyAsync(ctx workflow.Context, input *ivs.GetStreamKeyInput) *GetStreamKeyFuture

	ImportPlaybackKeyPair(ctx workflow.Context, input *ivs.ImportPlaybackKeyPairInput) (*ivs.ImportPlaybackKeyPairOutput, error)
	ImportPlaybackKeyPairAsync(ctx workflow.Context, input *ivs.ImportPlaybackKeyPairInput) *ImportPlaybackKeyPairFuture

	ListChannels(ctx workflow.Context, input *ivs.ListChannelsInput) (*ivs.ListChannelsOutput, error)
	ListChannelsAsync(ctx workflow.Context, input *ivs.ListChannelsInput) *ListChannelsFuture

	ListPlaybackKeyPairs(ctx workflow.Context, input *ivs.ListPlaybackKeyPairsInput) (*ivs.ListPlaybackKeyPairsOutput, error)
	ListPlaybackKeyPairsAsync(ctx workflow.Context, input *ivs.ListPlaybackKeyPairsInput) *ListPlaybackKeyPairsFuture

	ListStreamKeys(ctx workflow.Context, input *ivs.ListStreamKeysInput) (*ivs.ListStreamKeysOutput, error)
	ListStreamKeysAsync(ctx workflow.Context, input *ivs.ListStreamKeysInput) *ListStreamKeysFuture

	ListStreams(ctx workflow.Context, input *ivs.ListStreamsInput) (*ivs.ListStreamsOutput, error)
	ListStreamsAsync(ctx workflow.Context, input *ivs.ListStreamsInput) *ListStreamsFuture

	ListTagsForResource(ctx workflow.Context, input *ivs.ListTagsForResourceInput) (*ivs.ListTagsForResourceOutput, error)
	ListTagsForResourceAsync(ctx workflow.Context, input *ivs.ListTagsForResourceInput) *ListTagsForResourceFuture

	PutMetadata(ctx workflow.Context, input *ivs.PutMetadataInput) (*ivs.PutMetadataOutput, error)
	PutMetadataAsync(ctx workflow.Context, input *ivs.PutMetadataInput) *PutMetadataFuture

	StopStream(ctx workflow.Context, input *ivs.StopStreamInput) (*ivs.StopStreamOutput, error)
	StopStreamAsync(ctx workflow.Context, input *ivs.StopStreamInput) *StopStreamFuture

	TagResource(ctx workflow.Context, input *ivs.TagResourceInput) (*ivs.TagResourceOutput, error)
	TagResourceAsync(ctx workflow.Context, input *ivs.TagResourceInput) *TagResourceFuture

	UntagResource(ctx workflow.Context, input *ivs.UntagResourceInput) (*ivs.UntagResourceOutput, error)
	UntagResourceAsync(ctx workflow.Context, input *ivs.UntagResourceInput) *UntagResourceFuture

	UpdateChannel(ctx workflow.Context, input *ivs.UpdateChannelInput) (*ivs.UpdateChannelOutput, error)
	UpdateChannelAsync(ctx workflow.Context, input *ivs.UpdateChannelInput) *UpdateChannelFuture
}

func NewClient

func NewClient() Client

type CreateChannelFuture

type CreateChannelFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateChannelFuture) Get

type CreateStreamKeyFuture

type CreateStreamKeyFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateStreamKeyFuture) Get

type DeleteChannelFuture

type DeleteChannelFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteChannelFuture) Get

type DeletePlaybackKeyPairFuture

type DeletePlaybackKeyPairFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeletePlaybackKeyPairFuture) Get

type DeleteStreamKeyFuture

type DeleteStreamKeyFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteStreamKeyFuture) Get

type GetChannelFuture

type GetChannelFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetChannelFuture) Get

type GetPlaybackKeyPairFuture

type GetPlaybackKeyPairFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetPlaybackKeyPairFuture) Get

type GetStreamFuture

type GetStreamFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetStreamFuture) Get

type GetStreamKeyFuture

type GetStreamKeyFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetStreamKeyFuture) Get

type ImportPlaybackKeyPairFuture

type ImportPlaybackKeyPairFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ImportPlaybackKeyPairFuture) Get

type ListChannelsFuture

type ListChannelsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListChannelsFuture) Get

type ListPlaybackKeyPairsFuture

type ListPlaybackKeyPairsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListPlaybackKeyPairsFuture) Get

type ListStreamKeysFuture

type ListStreamKeysFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListStreamKeysFuture) Get

type ListStreamsFuture

type ListStreamsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListStreamsFuture) Get

type ListTagsForResourceFuture

type ListTagsForResourceFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListTagsForResourceFuture) Get

type PutMetadataFuture

type PutMetadataFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*PutMetadataFuture) Get

type StopStreamFuture

type StopStreamFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StopStreamFuture) Get

type TagResourceFuture

type TagResourceFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*TagResourceFuture) Get

type UntagResourceFuture

type UntagResourceFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UntagResourceFuture) Get

type UpdateChannelFuture

type UpdateChannelFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateChannelFuture) Get

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL