medialive

package
v0.84.0 Latest Latest
Warning

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

Go to latest
Published: Nov 6, 2023 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Channel deprecated

type Channel struct {
	pulumi.CustomResourceState

	Arn                   pulumi.StringOutput                       `pulumi:"arn"`
	CdiInputSpecification ChannelCdiInputSpecificationPtrOutput     `pulumi:"cdiInputSpecification"`
	ChannelClass          pulumi.StringPtrOutput                    `pulumi:"channelClass"`
	Destinations          ChannelOutputDestinationArrayOutput       `pulumi:"destinations"`
	EncoderSettings       ChannelEncoderSettingsPtrOutput           `pulumi:"encoderSettings"`
	InputAttachments      ChannelInputAttachmentArrayOutput         `pulumi:"inputAttachments"`
	InputSpecification    ChannelInputSpecificationPtrOutput        `pulumi:"inputSpecification"`
	Inputs                pulumi.StringArrayOutput                  `pulumi:"inputs"`
	LogLevel              pulumi.StringPtrOutput                    `pulumi:"logLevel"`
	Maintenance           ChannelMaintenanceCreateSettingsPtrOutput `pulumi:"maintenance"`
	Name                  pulumi.StringPtrOutput                    `pulumi:"name"`
	RoleArn               pulumi.StringPtrOutput                    `pulumi:"roleArn"`
	Tags                  pulumi.AnyOutput                          `pulumi:"tags"`
	Vpc                   ChannelVpcOutputSettingsPtrOutput         `pulumi:"vpc"`
}

Resource Type definition for AWS::MediaLive::Channel

Deprecated: Channel is not yet supported by AWS Native, so its creation will currently fail. Please use the classic AWS provider, if possible.

func GetChannel

func GetChannel(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *ChannelState, opts ...pulumi.ResourceOption) (*Channel, error)

GetChannel gets an existing Channel resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewChannel

func NewChannel(ctx *pulumi.Context,
	name string, args *ChannelArgs, opts ...pulumi.ResourceOption) (*Channel, error)

NewChannel registers a new resource with the given unique name, arguments, and options.

func (*Channel) ElementType

func (*Channel) ElementType() reflect.Type

func (*Channel) ToChannelOutput

func (i *Channel) ToChannelOutput() ChannelOutput

func (*Channel) ToChannelOutputWithContext

func (i *Channel) ToChannelOutputWithContext(ctx context.Context) ChannelOutput

func (*Channel) ToOutput added in v0.76.0

func (i *Channel) ToOutput(ctx context.Context) pulumix.Output[*Channel]

type ChannelAacSettings

type ChannelAacSettings struct {
	Bitrate         *float64 `pulumi:"bitrate"`
	CodingMode      *string  `pulumi:"codingMode"`
	InputType       *string  `pulumi:"inputType"`
	Profile         *string  `pulumi:"profile"`
	RateControlMode *string  `pulumi:"rateControlMode"`
	RawFormat       *string  `pulumi:"rawFormat"`
	SampleRate      *float64 `pulumi:"sampleRate"`
	Spec            *string  `pulumi:"spec"`
	VbrQuality      *string  `pulumi:"vbrQuality"`
}

type ChannelAacSettingsArgs

type ChannelAacSettingsArgs struct {
	Bitrate         pulumi.Float64PtrInput `pulumi:"bitrate"`
	CodingMode      pulumi.StringPtrInput  `pulumi:"codingMode"`
	InputType       pulumi.StringPtrInput  `pulumi:"inputType"`
	Profile         pulumi.StringPtrInput  `pulumi:"profile"`
	RateControlMode pulumi.StringPtrInput  `pulumi:"rateControlMode"`
	RawFormat       pulumi.StringPtrInput  `pulumi:"rawFormat"`
	SampleRate      pulumi.Float64PtrInput `pulumi:"sampleRate"`
	Spec            pulumi.StringPtrInput  `pulumi:"spec"`
	VbrQuality      pulumi.StringPtrInput  `pulumi:"vbrQuality"`
}

func (ChannelAacSettingsArgs) ElementType

func (ChannelAacSettingsArgs) ElementType() reflect.Type

func (ChannelAacSettingsArgs) ToChannelAacSettingsOutput

func (i ChannelAacSettingsArgs) ToChannelAacSettingsOutput() ChannelAacSettingsOutput

func (ChannelAacSettingsArgs) ToChannelAacSettingsOutputWithContext

func (i ChannelAacSettingsArgs) ToChannelAacSettingsOutputWithContext(ctx context.Context) ChannelAacSettingsOutput

func (ChannelAacSettingsArgs) ToChannelAacSettingsPtrOutput

func (i ChannelAacSettingsArgs) ToChannelAacSettingsPtrOutput() ChannelAacSettingsPtrOutput

func (ChannelAacSettingsArgs) ToChannelAacSettingsPtrOutputWithContext

func (i ChannelAacSettingsArgs) ToChannelAacSettingsPtrOutputWithContext(ctx context.Context) ChannelAacSettingsPtrOutput

func (ChannelAacSettingsArgs) ToOutput added in v0.76.0

type ChannelAacSettingsInput

type ChannelAacSettingsInput interface {
	pulumi.Input

	ToChannelAacSettingsOutput() ChannelAacSettingsOutput
	ToChannelAacSettingsOutputWithContext(context.Context) ChannelAacSettingsOutput
}

ChannelAacSettingsInput is an input type that accepts ChannelAacSettingsArgs and ChannelAacSettingsOutput values. You can construct a concrete instance of `ChannelAacSettingsInput` via:

ChannelAacSettingsArgs{...}

type ChannelAacSettingsOutput

type ChannelAacSettingsOutput struct{ *pulumi.OutputState }

func (ChannelAacSettingsOutput) Bitrate

func (ChannelAacSettingsOutput) CodingMode

func (ChannelAacSettingsOutput) ElementType

func (ChannelAacSettingsOutput) ElementType() reflect.Type

func (ChannelAacSettingsOutput) InputType

func (ChannelAacSettingsOutput) Profile

func (ChannelAacSettingsOutput) RateControlMode

func (o ChannelAacSettingsOutput) RateControlMode() pulumi.StringPtrOutput

func (ChannelAacSettingsOutput) RawFormat

func (ChannelAacSettingsOutput) SampleRate

func (ChannelAacSettingsOutput) Spec

func (ChannelAacSettingsOutput) ToChannelAacSettingsOutput

func (o ChannelAacSettingsOutput) ToChannelAacSettingsOutput() ChannelAacSettingsOutput

func (ChannelAacSettingsOutput) ToChannelAacSettingsOutputWithContext

func (o ChannelAacSettingsOutput) ToChannelAacSettingsOutputWithContext(ctx context.Context) ChannelAacSettingsOutput

func (ChannelAacSettingsOutput) ToChannelAacSettingsPtrOutput

func (o ChannelAacSettingsOutput) ToChannelAacSettingsPtrOutput() ChannelAacSettingsPtrOutput

func (ChannelAacSettingsOutput) ToChannelAacSettingsPtrOutputWithContext

func (o ChannelAacSettingsOutput) ToChannelAacSettingsPtrOutputWithContext(ctx context.Context) ChannelAacSettingsPtrOutput

func (ChannelAacSettingsOutput) ToOutput added in v0.76.0

func (ChannelAacSettingsOutput) VbrQuality

type ChannelAacSettingsPtrInput

type ChannelAacSettingsPtrInput interface {
	pulumi.Input

	ToChannelAacSettingsPtrOutput() ChannelAacSettingsPtrOutput
	ToChannelAacSettingsPtrOutputWithContext(context.Context) ChannelAacSettingsPtrOutput
}

ChannelAacSettingsPtrInput is an input type that accepts ChannelAacSettingsArgs, ChannelAacSettingsPtr and ChannelAacSettingsPtrOutput values. You can construct a concrete instance of `ChannelAacSettingsPtrInput` via:

        ChannelAacSettingsArgs{...}

or:

        nil

type ChannelAacSettingsPtrOutput

type ChannelAacSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAacSettingsPtrOutput) Bitrate

func (ChannelAacSettingsPtrOutput) CodingMode

func (ChannelAacSettingsPtrOutput) Elem

func (ChannelAacSettingsPtrOutput) ElementType

func (ChannelAacSettingsPtrOutput) InputType

func (ChannelAacSettingsPtrOutput) Profile

func (ChannelAacSettingsPtrOutput) RateControlMode

func (ChannelAacSettingsPtrOutput) RawFormat

func (ChannelAacSettingsPtrOutput) SampleRate

func (ChannelAacSettingsPtrOutput) Spec

func (ChannelAacSettingsPtrOutput) ToChannelAacSettingsPtrOutput

func (o ChannelAacSettingsPtrOutput) ToChannelAacSettingsPtrOutput() ChannelAacSettingsPtrOutput

func (ChannelAacSettingsPtrOutput) ToChannelAacSettingsPtrOutputWithContext

func (o ChannelAacSettingsPtrOutput) ToChannelAacSettingsPtrOutputWithContext(ctx context.Context) ChannelAacSettingsPtrOutput

func (ChannelAacSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelAacSettingsPtrOutput) VbrQuality

type ChannelAc3Settings

type ChannelAc3Settings struct {
	AttenuationControl *string  `pulumi:"attenuationControl"`
	Bitrate            *float64 `pulumi:"bitrate"`
	BitstreamMode      *string  `pulumi:"bitstreamMode"`
	CodingMode         *string  `pulumi:"codingMode"`
	Dialnorm           *int     `pulumi:"dialnorm"`
	DrcProfile         *string  `pulumi:"drcProfile"`
	LfeFilter          *string  `pulumi:"lfeFilter"`
	MetadataControl    *string  `pulumi:"metadataControl"`
}

type ChannelAc3SettingsArgs

type ChannelAc3SettingsArgs struct {
	AttenuationControl pulumi.StringPtrInput  `pulumi:"attenuationControl"`
	Bitrate            pulumi.Float64PtrInput `pulumi:"bitrate"`
	BitstreamMode      pulumi.StringPtrInput  `pulumi:"bitstreamMode"`
	CodingMode         pulumi.StringPtrInput  `pulumi:"codingMode"`
	Dialnorm           pulumi.IntPtrInput     `pulumi:"dialnorm"`
	DrcProfile         pulumi.StringPtrInput  `pulumi:"drcProfile"`
	LfeFilter          pulumi.StringPtrInput  `pulumi:"lfeFilter"`
	MetadataControl    pulumi.StringPtrInput  `pulumi:"metadataControl"`
}

func (ChannelAc3SettingsArgs) ElementType

func (ChannelAc3SettingsArgs) ElementType() reflect.Type

func (ChannelAc3SettingsArgs) ToChannelAc3SettingsOutput

func (i ChannelAc3SettingsArgs) ToChannelAc3SettingsOutput() ChannelAc3SettingsOutput

func (ChannelAc3SettingsArgs) ToChannelAc3SettingsOutputWithContext

func (i ChannelAc3SettingsArgs) ToChannelAc3SettingsOutputWithContext(ctx context.Context) ChannelAc3SettingsOutput

func (ChannelAc3SettingsArgs) ToChannelAc3SettingsPtrOutput

func (i ChannelAc3SettingsArgs) ToChannelAc3SettingsPtrOutput() ChannelAc3SettingsPtrOutput

func (ChannelAc3SettingsArgs) ToChannelAc3SettingsPtrOutputWithContext

func (i ChannelAc3SettingsArgs) ToChannelAc3SettingsPtrOutputWithContext(ctx context.Context) ChannelAc3SettingsPtrOutput

func (ChannelAc3SettingsArgs) ToOutput added in v0.76.0

type ChannelAc3SettingsInput

type ChannelAc3SettingsInput interface {
	pulumi.Input

	ToChannelAc3SettingsOutput() ChannelAc3SettingsOutput
	ToChannelAc3SettingsOutputWithContext(context.Context) ChannelAc3SettingsOutput
}

ChannelAc3SettingsInput is an input type that accepts ChannelAc3SettingsArgs and ChannelAc3SettingsOutput values. You can construct a concrete instance of `ChannelAc3SettingsInput` via:

ChannelAc3SettingsArgs{...}

type ChannelAc3SettingsOutput

type ChannelAc3SettingsOutput struct{ *pulumi.OutputState }

func (ChannelAc3SettingsOutput) AttenuationControl added in v0.76.0

func (o ChannelAc3SettingsOutput) AttenuationControl() pulumi.StringPtrOutput

func (ChannelAc3SettingsOutput) Bitrate

func (ChannelAc3SettingsOutput) BitstreamMode

func (ChannelAc3SettingsOutput) CodingMode

func (ChannelAc3SettingsOutput) Dialnorm

func (ChannelAc3SettingsOutput) DrcProfile

func (ChannelAc3SettingsOutput) ElementType

func (ChannelAc3SettingsOutput) ElementType() reflect.Type

func (ChannelAc3SettingsOutput) LfeFilter

func (ChannelAc3SettingsOutput) MetadataControl

func (o ChannelAc3SettingsOutput) MetadataControl() pulumi.StringPtrOutput

func (ChannelAc3SettingsOutput) ToChannelAc3SettingsOutput

func (o ChannelAc3SettingsOutput) ToChannelAc3SettingsOutput() ChannelAc3SettingsOutput

func (ChannelAc3SettingsOutput) ToChannelAc3SettingsOutputWithContext

func (o ChannelAc3SettingsOutput) ToChannelAc3SettingsOutputWithContext(ctx context.Context) ChannelAc3SettingsOutput

func (ChannelAc3SettingsOutput) ToChannelAc3SettingsPtrOutput

func (o ChannelAc3SettingsOutput) ToChannelAc3SettingsPtrOutput() ChannelAc3SettingsPtrOutput

func (ChannelAc3SettingsOutput) ToChannelAc3SettingsPtrOutputWithContext

func (o ChannelAc3SettingsOutput) ToChannelAc3SettingsPtrOutputWithContext(ctx context.Context) ChannelAc3SettingsPtrOutput

func (ChannelAc3SettingsOutput) ToOutput added in v0.76.0

type ChannelAc3SettingsPtrInput

type ChannelAc3SettingsPtrInput interface {
	pulumi.Input

	ToChannelAc3SettingsPtrOutput() ChannelAc3SettingsPtrOutput
	ToChannelAc3SettingsPtrOutputWithContext(context.Context) ChannelAc3SettingsPtrOutput
}

ChannelAc3SettingsPtrInput is an input type that accepts ChannelAc3SettingsArgs, ChannelAc3SettingsPtr and ChannelAc3SettingsPtrOutput values. You can construct a concrete instance of `ChannelAc3SettingsPtrInput` via:

        ChannelAc3SettingsArgs{...}

or:

        nil

type ChannelAc3SettingsPtrOutput

type ChannelAc3SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAc3SettingsPtrOutput) AttenuationControl added in v0.76.0

func (o ChannelAc3SettingsPtrOutput) AttenuationControl() pulumi.StringPtrOutput

func (ChannelAc3SettingsPtrOutput) Bitrate

func (ChannelAc3SettingsPtrOutput) BitstreamMode

func (ChannelAc3SettingsPtrOutput) CodingMode

func (ChannelAc3SettingsPtrOutput) Dialnorm

func (ChannelAc3SettingsPtrOutput) DrcProfile

func (ChannelAc3SettingsPtrOutput) Elem

func (ChannelAc3SettingsPtrOutput) ElementType

func (ChannelAc3SettingsPtrOutput) LfeFilter

func (ChannelAc3SettingsPtrOutput) MetadataControl

func (ChannelAc3SettingsPtrOutput) ToChannelAc3SettingsPtrOutput

func (o ChannelAc3SettingsPtrOutput) ToChannelAc3SettingsPtrOutput() ChannelAc3SettingsPtrOutput

func (ChannelAc3SettingsPtrOutput) ToChannelAc3SettingsPtrOutputWithContext

func (o ChannelAc3SettingsPtrOutput) ToChannelAc3SettingsPtrOutputWithContext(ctx context.Context) ChannelAc3SettingsPtrOutput

func (ChannelAc3SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelAncillarySourceSettings

type ChannelAncillarySourceSettings struct {
	SourceAncillaryChannelNumber *int `pulumi:"sourceAncillaryChannelNumber"`
}

type ChannelAncillarySourceSettingsArgs

type ChannelAncillarySourceSettingsArgs struct {
	SourceAncillaryChannelNumber pulumi.IntPtrInput `pulumi:"sourceAncillaryChannelNumber"`
}

func (ChannelAncillarySourceSettingsArgs) ElementType

func (ChannelAncillarySourceSettingsArgs) ToChannelAncillarySourceSettingsOutput

func (i ChannelAncillarySourceSettingsArgs) ToChannelAncillarySourceSettingsOutput() ChannelAncillarySourceSettingsOutput

func (ChannelAncillarySourceSettingsArgs) ToChannelAncillarySourceSettingsOutputWithContext

func (i ChannelAncillarySourceSettingsArgs) ToChannelAncillarySourceSettingsOutputWithContext(ctx context.Context) ChannelAncillarySourceSettingsOutput

func (ChannelAncillarySourceSettingsArgs) ToChannelAncillarySourceSettingsPtrOutput

func (i ChannelAncillarySourceSettingsArgs) ToChannelAncillarySourceSettingsPtrOutput() ChannelAncillarySourceSettingsPtrOutput

func (ChannelAncillarySourceSettingsArgs) ToChannelAncillarySourceSettingsPtrOutputWithContext

func (i ChannelAncillarySourceSettingsArgs) ToChannelAncillarySourceSettingsPtrOutputWithContext(ctx context.Context) ChannelAncillarySourceSettingsPtrOutput

func (ChannelAncillarySourceSettingsArgs) ToOutput added in v0.76.0

type ChannelAncillarySourceSettingsInput

type ChannelAncillarySourceSettingsInput interface {
	pulumi.Input

	ToChannelAncillarySourceSettingsOutput() ChannelAncillarySourceSettingsOutput
	ToChannelAncillarySourceSettingsOutputWithContext(context.Context) ChannelAncillarySourceSettingsOutput
}

ChannelAncillarySourceSettingsInput is an input type that accepts ChannelAncillarySourceSettingsArgs and ChannelAncillarySourceSettingsOutput values. You can construct a concrete instance of `ChannelAncillarySourceSettingsInput` via:

ChannelAncillarySourceSettingsArgs{...}

type ChannelAncillarySourceSettingsOutput

type ChannelAncillarySourceSettingsOutput struct{ *pulumi.OutputState }

func (ChannelAncillarySourceSettingsOutput) ElementType

func (ChannelAncillarySourceSettingsOutput) SourceAncillaryChannelNumber

func (o ChannelAncillarySourceSettingsOutput) SourceAncillaryChannelNumber() pulumi.IntPtrOutput

func (ChannelAncillarySourceSettingsOutput) ToChannelAncillarySourceSettingsOutput

func (o ChannelAncillarySourceSettingsOutput) ToChannelAncillarySourceSettingsOutput() ChannelAncillarySourceSettingsOutput

func (ChannelAncillarySourceSettingsOutput) ToChannelAncillarySourceSettingsOutputWithContext

func (o ChannelAncillarySourceSettingsOutput) ToChannelAncillarySourceSettingsOutputWithContext(ctx context.Context) ChannelAncillarySourceSettingsOutput

func (ChannelAncillarySourceSettingsOutput) ToChannelAncillarySourceSettingsPtrOutput

func (o ChannelAncillarySourceSettingsOutput) ToChannelAncillarySourceSettingsPtrOutput() ChannelAncillarySourceSettingsPtrOutput

func (ChannelAncillarySourceSettingsOutput) ToChannelAncillarySourceSettingsPtrOutputWithContext

func (o ChannelAncillarySourceSettingsOutput) ToChannelAncillarySourceSettingsPtrOutputWithContext(ctx context.Context) ChannelAncillarySourceSettingsPtrOutput

func (ChannelAncillarySourceSettingsOutput) ToOutput added in v0.76.0

type ChannelAncillarySourceSettingsPtrInput

type ChannelAncillarySourceSettingsPtrInput interface {
	pulumi.Input

	ToChannelAncillarySourceSettingsPtrOutput() ChannelAncillarySourceSettingsPtrOutput
	ToChannelAncillarySourceSettingsPtrOutputWithContext(context.Context) ChannelAncillarySourceSettingsPtrOutput
}

ChannelAncillarySourceSettingsPtrInput is an input type that accepts ChannelAncillarySourceSettingsArgs, ChannelAncillarySourceSettingsPtr and ChannelAncillarySourceSettingsPtrOutput values. You can construct a concrete instance of `ChannelAncillarySourceSettingsPtrInput` via:

        ChannelAncillarySourceSettingsArgs{...}

or:

        nil

type ChannelAncillarySourceSettingsPtrOutput

type ChannelAncillarySourceSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAncillarySourceSettingsPtrOutput) Elem

func (ChannelAncillarySourceSettingsPtrOutput) ElementType

func (ChannelAncillarySourceSettingsPtrOutput) SourceAncillaryChannelNumber

func (o ChannelAncillarySourceSettingsPtrOutput) SourceAncillaryChannelNumber() pulumi.IntPtrOutput

func (ChannelAncillarySourceSettingsPtrOutput) ToChannelAncillarySourceSettingsPtrOutput

func (o ChannelAncillarySourceSettingsPtrOutput) ToChannelAncillarySourceSettingsPtrOutput() ChannelAncillarySourceSettingsPtrOutput

func (ChannelAncillarySourceSettingsPtrOutput) ToChannelAncillarySourceSettingsPtrOutputWithContext

func (o ChannelAncillarySourceSettingsPtrOutput) ToChannelAncillarySourceSettingsPtrOutputWithContext(ctx context.Context) ChannelAncillarySourceSettingsPtrOutput

func (ChannelAncillarySourceSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelArchiveCdnSettings

type ChannelArchiveCdnSettings struct {
	ArchiveS3Settings *ChannelArchiveS3Settings `pulumi:"archiveS3Settings"`
}

type ChannelArchiveCdnSettingsArgs

type ChannelArchiveCdnSettingsArgs struct {
	ArchiveS3Settings ChannelArchiveS3SettingsPtrInput `pulumi:"archiveS3Settings"`
}

func (ChannelArchiveCdnSettingsArgs) ElementType

func (ChannelArchiveCdnSettingsArgs) ToChannelArchiveCdnSettingsOutput

func (i ChannelArchiveCdnSettingsArgs) ToChannelArchiveCdnSettingsOutput() ChannelArchiveCdnSettingsOutput

func (ChannelArchiveCdnSettingsArgs) ToChannelArchiveCdnSettingsOutputWithContext

func (i ChannelArchiveCdnSettingsArgs) ToChannelArchiveCdnSettingsOutputWithContext(ctx context.Context) ChannelArchiveCdnSettingsOutput

func (ChannelArchiveCdnSettingsArgs) ToChannelArchiveCdnSettingsPtrOutput

func (i ChannelArchiveCdnSettingsArgs) ToChannelArchiveCdnSettingsPtrOutput() ChannelArchiveCdnSettingsPtrOutput

func (ChannelArchiveCdnSettingsArgs) ToChannelArchiveCdnSettingsPtrOutputWithContext

func (i ChannelArchiveCdnSettingsArgs) ToChannelArchiveCdnSettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveCdnSettingsPtrOutput

func (ChannelArchiveCdnSettingsArgs) ToOutput added in v0.76.0

type ChannelArchiveCdnSettingsInput

type ChannelArchiveCdnSettingsInput interface {
	pulumi.Input

	ToChannelArchiveCdnSettingsOutput() ChannelArchiveCdnSettingsOutput
	ToChannelArchiveCdnSettingsOutputWithContext(context.Context) ChannelArchiveCdnSettingsOutput
}

ChannelArchiveCdnSettingsInput is an input type that accepts ChannelArchiveCdnSettingsArgs and ChannelArchiveCdnSettingsOutput values. You can construct a concrete instance of `ChannelArchiveCdnSettingsInput` via:

ChannelArchiveCdnSettingsArgs{...}

type ChannelArchiveCdnSettingsOutput

type ChannelArchiveCdnSettingsOutput struct{ *pulumi.OutputState }

func (ChannelArchiveCdnSettingsOutput) ArchiveS3Settings

func (ChannelArchiveCdnSettingsOutput) ElementType

func (ChannelArchiveCdnSettingsOutput) ToChannelArchiveCdnSettingsOutput

func (o ChannelArchiveCdnSettingsOutput) ToChannelArchiveCdnSettingsOutput() ChannelArchiveCdnSettingsOutput

func (ChannelArchiveCdnSettingsOutput) ToChannelArchiveCdnSettingsOutputWithContext

func (o ChannelArchiveCdnSettingsOutput) ToChannelArchiveCdnSettingsOutputWithContext(ctx context.Context) ChannelArchiveCdnSettingsOutput

func (ChannelArchiveCdnSettingsOutput) ToChannelArchiveCdnSettingsPtrOutput

func (o ChannelArchiveCdnSettingsOutput) ToChannelArchiveCdnSettingsPtrOutput() ChannelArchiveCdnSettingsPtrOutput

func (ChannelArchiveCdnSettingsOutput) ToChannelArchiveCdnSettingsPtrOutputWithContext

func (o ChannelArchiveCdnSettingsOutput) ToChannelArchiveCdnSettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveCdnSettingsPtrOutput

func (ChannelArchiveCdnSettingsOutput) ToOutput added in v0.76.0

type ChannelArchiveCdnSettingsPtrInput

type ChannelArchiveCdnSettingsPtrInput interface {
	pulumi.Input

	ToChannelArchiveCdnSettingsPtrOutput() ChannelArchiveCdnSettingsPtrOutput
	ToChannelArchiveCdnSettingsPtrOutputWithContext(context.Context) ChannelArchiveCdnSettingsPtrOutput
}

ChannelArchiveCdnSettingsPtrInput is an input type that accepts ChannelArchiveCdnSettingsArgs, ChannelArchiveCdnSettingsPtr and ChannelArchiveCdnSettingsPtrOutput values. You can construct a concrete instance of `ChannelArchiveCdnSettingsPtrInput` via:

        ChannelArchiveCdnSettingsArgs{...}

or:

        nil

type ChannelArchiveCdnSettingsPtrOutput

type ChannelArchiveCdnSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelArchiveCdnSettingsPtrOutput) ArchiveS3Settings

func (ChannelArchiveCdnSettingsPtrOutput) Elem

func (ChannelArchiveCdnSettingsPtrOutput) ElementType

func (ChannelArchiveCdnSettingsPtrOutput) ToChannelArchiveCdnSettingsPtrOutput

func (o ChannelArchiveCdnSettingsPtrOutput) ToChannelArchiveCdnSettingsPtrOutput() ChannelArchiveCdnSettingsPtrOutput

func (ChannelArchiveCdnSettingsPtrOutput) ToChannelArchiveCdnSettingsPtrOutputWithContext

func (o ChannelArchiveCdnSettingsPtrOutput) ToChannelArchiveCdnSettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveCdnSettingsPtrOutput

func (ChannelArchiveCdnSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelArchiveContainerSettings

type ChannelArchiveContainerSettings struct {
	M2tsSettings *ChannelM2tsSettings `pulumi:"m2tsSettings"`
	RawSettings  *ChannelRawSettings  `pulumi:"rawSettings"`
}

type ChannelArchiveContainerSettingsArgs

type ChannelArchiveContainerSettingsArgs struct {
	M2tsSettings ChannelM2tsSettingsPtrInput `pulumi:"m2tsSettings"`
	RawSettings  ChannelRawSettingsPtrInput  `pulumi:"rawSettings"`
}

func (ChannelArchiveContainerSettingsArgs) ElementType

func (ChannelArchiveContainerSettingsArgs) ToChannelArchiveContainerSettingsOutput

func (i ChannelArchiveContainerSettingsArgs) ToChannelArchiveContainerSettingsOutput() ChannelArchiveContainerSettingsOutput

func (ChannelArchiveContainerSettingsArgs) ToChannelArchiveContainerSettingsOutputWithContext

func (i ChannelArchiveContainerSettingsArgs) ToChannelArchiveContainerSettingsOutputWithContext(ctx context.Context) ChannelArchiveContainerSettingsOutput

func (ChannelArchiveContainerSettingsArgs) ToChannelArchiveContainerSettingsPtrOutput

func (i ChannelArchiveContainerSettingsArgs) ToChannelArchiveContainerSettingsPtrOutput() ChannelArchiveContainerSettingsPtrOutput

func (ChannelArchiveContainerSettingsArgs) ToChannelArchiveContainerSettingsPtrOutputWithContext

func (i ChannelArchiveContainerSettingsArgs) ToChannelArchiveContainerSettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveContainerSettingsPtrOutput

func (ChannelArchiveContainerSettingsArgs) ToOutput added in v0.76.0

type ChannelArchiveContainerSettingsInput

type ChannelArchiveContainerSettingsInput interface {
	pulumi.Input

	ToChannelArchiveContainerSettingsOutput() ChannelArchiveContainerSettingsOutput
	ToChannelArchiveContainerSettingsOutputWithContext(context.Context) ChannelArchiveContainerSettingsOutput
}

ChannelArchiveContainerSettingsInput is an input type that accepts ChannelArchiveContainerSettingsArgs and ChannelArchiveContainerSettingsOutput values. You can construct a concrete instance of `ChannelArchiveContainerSettingsInput` via:

ChannelArchiveContainerSettingsArgs{...}

type ChannelArchiveContainerSettingsOutput

type ChannelArchiveContainerSettingsOutput struct{ *pulumi.OutputState }

func (ChannelArchiveContainerSettingsOutput) ElementType

func (ChannelArchiveContainerSettingsOutput) M2tsSettings

func (ChannelArchiveContainerSettingsOutput) RawSettings

func (ChannelArchiveContainerSettingsOutput) ToChannelArchiveContainerSettingsOutput

func (o ChannelArchiveContainerSettingsOutput) ToChannelArchiveContainerSettingsOutput() ChannelArchiveContainerSettingsOutput

func (ChannelArchiveContainerSettingsOutput) ToChannelArchiveContainerSettingsOutputWithContext

func (o ChannelArchiveContainerSettingsOutput) ToChannelArchiveContainerSettingsOutputWithContext(ctx context.Context) ChannelArchiveContainerSettingsOutput

func (ChannelArchiveContainerSettingsOutput) ToChannelArchiveContainerSettingsPtrOutput

func (o ChannelArchiveContainerSettingsOutput) ToChannelArchiveContainerSettingsPtrOutput() ChannelArchiveContainerSettingsPtrOutput

func (ChannelArchiveContainerSettingsOutput) ToChannelArchiveContainerSettingsPtrOutputWithContext

func (o ChannelArchiveContainerSettingsOutput) ToChannelArchiveContainerSettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveContainerSettingsPtrOutput

func (ChannelArchiveContainerSettingsOutput) ToOutput added in v0.76.0

type ChannelArchiveContainerSettingsPtrInput

type ChannelArchiveContainerSettingsPtrInput interface {
	pulumi.Input

	ToChannelArchiveContainerSettingsPtrOutput() ChannelArchiveContainerSettingsPtrOutput
	ToChannelArchiveContainerSettingsPtrOutputWithContext(context.Context) ChannelArchiveContainerSettingsPtrOutput
}

ChannelArchiveContainerSettingsPtrInput is an input type that accepts ChannelArchiveContainerSettingsArgs, ChannelArchiveContainerSettingsPtr and ChannelArchiveContainerSettingsPtrOutput values. You can construct a concrete instance of `ChannelArchiveContainerSettingsPtrInput` via:

        ChannelArchiveContainerSettingsArgs{...}

or:

        nil

type ChannelArchiveContainerSettingsPtrOutput

type ChannelArchiveContainerSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelArchiveContainerSettingsPtrOutput) Elem

func (ChannelArchiveContainerSettingsPtrOutput) ElementType

func (ChannelArchiveContainerSettingsPtrOutput) M2tsSettings

func (ChannelArchiveContainerSettingsPtrOutput) RawSettings

func (ChannelArchiveContainerSettingsPtrOutput) ToChannelArchiveContainerSettingsPtrOutput

func (o ChannelArchiveContainerSettingsPtrOutput) ToChannelArchiveContainerSettingsPtrOutput() ChannelArchiveContainerSettingsPtrOutput

func (ChannelArchiveContainerSettingsPtrOutput) ToChannelArchiveContainerSettingsPtrOutputWithContext

func (o ChannelArchiveContainerSettingsPtrOutput) ToChannelArchiveContainerSettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveContainerSettingsPtrOutput

func (ChannelArchiveContainerSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelArchiveGroupSettings

type ChannelArchiveGroupSettings struct {
	ArchiveCdnSettings *ChannelArchiveCdnSettings `pulumi:"archiveCdnSettings"`
	Destination        *ChannelOutputLocationRef  `pulumi:"destination"`
	RolloverInterval   *int                       `pulumi:"rolloverInterval"`
}

type ChannelArchiveGroupSettingsArgs

type ChannelArchiveGroupSettingsArgs struct {
	ArchiveCdnSettings ChannelArchiveCdnSettingsPtrInput `pulumi:"archiveCdnSettings"`
	Destination        ChannelOutputLocationRefPtrInput  `pulumi:"destination"`
	RolloverInterval   pulumi.IntPtrInput                `pulumi:"rolloverInterval"`
}

func (ChannelArchiveGroupSettingsArgs) ElementType

func (ChannelArchiveGroupSettingsArgs) ToChannelArchiveGroupSettingsOutput

func (i ChannelArchiveGroupSettingsArgs) ToChannelArchiveGroupSettingsOutput() ChannelArchiveGroupSettingsOutput

func (ChannelArchiveGroupSettingsArgs) ToChannelArchiveGroupSettingsOutputWithContext

func (i ChannelArchiveGroupSettingsArgs) ToChannelArchiveGroupSettingsOutputWithContext(ctx context.Context) ChannelArchiveGroupSettingsOutput

func (ChannelArchiveGroupSettingsArgs) ToChannelArchiveGroupSettingsPtrOutput

func (i ChannelArchiveGroupSettingsArgs) ToChannelArchiveGroupSettingsPtrOutput() ChannelArchiveGroupSettingsPtrOutput

func (ChannelArchiveGroupSettingsArgs) ToChannelArchiveGroupSettingsPtrOutputWithContext

func (i ChannelArchiveGroupSettingsArgs) ToChannelArchiveGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveGroupSettingsPtrOutput

func (ChannelArchiveGroupSettingsArgs) ToOutput added in v0.76.0

type ChannelArchiveGroupSettingsInput

type ChannelArchiveGroupSettingsInput interface {
	pulumi.Input

	ToChannelArchiveGroupSettingsOutput() ChannelArchiveGroupSettingsOutput
	ToChannelArchiveGroupSettingsOutputWithContext(context.Context) ChannelArchiveGroupSettingsOutput
}

ChannelArchiveGroupSettingsInput is an input type that accepts ChannelArchiveGroupSettingsArgs and ChannelArchiveGroupSettingsOutput values. You can construct a concrete instance of `ChannelArchiveGroupSettingsInput` via:

ChannelArchiveGroupSettingsArgs{...}

type ChannelArchiveGroupSettingsOutput

type ChannelArchiveGroupSettingsOutput struct{ *pulumi.OutputState }

func (ChannelArchiveGroupSettingsOutput) ArchiveCdnSettings

func (ChannelArchiveGroupSettingsOutput) Destination

func (ChannelArchiveGroupSettingsOutput) ElementType

func (ChannelArchiveGroupSettingsOutput) RolloverInterval

func (ChannelArchiveGroupSettingsOutput) ToChannelArchiveGroupSettingsOutput

func (o ChannelArchiveGroupSettingsOutput) ToChannelArchiveGroupSettingsOutput() ChannelArchiveGroupSettingsOutput

func (ChannelArchiveGroupSettingsOutput) ToChannelArchiveGroupSettingsOutputWithContext

func (o ChannelArchiveGroupSettingsOutput) ToChannelArchiveGroupSettingsOutputWithContext(ctx context.Context) ChannelArchiveGroupSettingsOutput

func (ChannelArchiveGroupSettingsOutput) ToChannelArchiveGroupSettingsPtrOutput

func (o ChannelArchiveGroupSettingsOutput) ToChannelArchiveGroupSettingsPtrOutput() ChannelArchiveGroupSettingsPtrOutput

func (ChannelArchiveGroupSettingsOutput) ToChannelArchiveGroupSettingsPtrOutputWithContext

func (o ChannelArchiveGroupSettingsOutput) ToChannelArchiveGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveGroupSettingsPtrOutput

func (ChannelArchiveGroupSettingsOutput) ToOutput added in v0.76.0

type ChannelArchiveGroupSettingsPtrInput

type ChannelArchiveGroupSettingsPtrInput interface {
	pulumi.Input

	ToChannelArchiveGroupSettingsPtrOutput() ChannelArchiveGroupSettingsPtrOutput
	ToChannelArchiveGroupSettingsPtrOutputWithContext(context.Context) ChannelArchiveGroupSettingsPtrOutput
}

ChannelArchiveGroupSettingsPtrInput is an input type that accepts ChannelArchiveGroupSettingsArgs, ChannelArchiveGroupSettingsPtr and ChannelArchiveGroupSettingsPtrOutput values. You can construct a concrete instance of `ChannelArchiveGroupSettingsPtrInput` via:

        ChannelArchiveGroupSettingsArgs{...}

or:

        nil

type ChannelArchiveGroupSettingsPtrOutput

type ChannelArchiveGroupSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelArchiveGroupSettingsPtrOutput) ArchiveCdnSettings

func (ChannelArchiveGroupSettingsPtrOutput) Destination

func (ChannelArchiveGroupSettingsPtrOutput) Elem

func (ChannelArchiveGroupSettingsPtrOutput) ElementType

func (ChannelArchiveGroupSettingsPtrOutput) RolloverInterval

func (ChannelArchiveGroupSettingsPtrOutput) ToChannelArchiveGroupSettingsPtrOutput

func (o ChannelArchiveGroupSettingsPtrOutput) ToChannelArchiveGroupSettingsPtrOutput() ChannelArchiveGroupSettingsPtrOutput

func (ChannelArchiveGroupSettingsPtrOutput) ToChannelArchiveGroupSettingsPtrOutputWithContext

func (o ChannelArchiveGroupSettingsPtrOutput) ToChannelArchiveGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveGroupSettingsPtrOutput

func (ChannelArchiveGroupSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelArchiveOutputSettings

type ChannelArchiveOutputSettings struct {
	ContainerSettings *ChannelArchiveContainerSettings `pulumi:"containerSettings"`
	Extension         *string                          `pulumi:"extension"`
	NameModifier      *string                          `pulumi:"nameModifier"`
}

type ChannelArchiveOutputSettingsArgs

type ChannelArchiveOutputSettingsArgs struct {
	ContainerSettings ChannelArchiveContainerSettingsPtrInput `pulumi:"containerSettings"`
	Extension         pulumi.StringPtrInput                   `pulumi:"extension"`
	NameModifier      pulumi.StringPtrInput                   `pulumi:"nameModifier"`
}

func (ChannelArchiveOutputSettingsArgs) ElementType

func (ChannelArchiveOutputSettingsArgs) ToChannelArchiveOutputSettingsOutput

func (i ChannelArchiveOutputSettingsArgs) ToChannelArchiveOutputSettingsOutput() ChannelArchiveOutputSettingsOutput

func (ChannelArchiveOutputSettingsArgs) ToChannelArchiveOutputSettingsOutputWithContext

func (i ChannelArchiveOutputSettingsArgs) ToChannelArchiveOutputSettingsOutputWithContext(ctx context.Context) ChannelArchiveOutputSettingsOutput

func (ChannelArchiveOutputSettingsArgs) ToChannelArchiveOutputSettingsPtrOutput

func (i ChannelArchiveOutputSettingsArgs) ToChannelArchiveOutputSettingsPtrOutput() ChannelArchiveOutputSettingsPtrOutput

func (ChannelArchiveOutputSettingsArgs) ToChannelArchiveOutputSettingsPtrOutputWithContext

func (i ChannelArchiveOutputSettingsArgs) ToChannelArchiveOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveOutputSettingsPtrOutput

func (ChannelArchiveOutputSettingsArgs) ToOutput added in v0.76.0

type ChannelArchiveOutputSettingsInput

type ChannelArchiveOutputSettingsInput interface {
	pulumi.Input

	ToChannelArchiveOutputSettingsOutput() ChannelArchiveOutputSettingsOutput
	ToChannelArchiveOutputSettingsOutputWithContext(context.Context) ChannelArchiveOutputSettingsOutput
}

ChannelArchiveOutputSettingsInput is an input type that accepts ChannelArchiveOutputSettingsArgs and ChannelArchiveOutputSettingsOutput values. You can construct a concrete instance of `ChannelArchiveOutputSettingsInput` via:

ChannelArchiveOutputSettingsArgs{...}

type ChannelArchiveOutputSettingsOutput

type ChannelArchiveOutputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelArchiveOutputSettingsOutput) ContainerSettings

func (ChannelArchiveOutputSettingsOutput) ElementType

func (ChannelArchiveOutputSettingsOutput) Extension

func (ChannelArchiveOutputSettingsOutput) NameModifier

func (ChannelArchiveOutputSettingsOutput) ToChannelArchiveOutputSettingsOutput

func (o ChannelArchiveOutputSettingsOutput) ToChannelArchiveOutputSettingsOutput() ChannelArchiveOutputSettingsOutput

func (ChannelArchiveOutputSettingsOutput) ToChannelArchiveOutputSettingsOutputWithContext

func (o ChannelArchiveOutputSettingsOutput) ToChannelArchiveOutputSettingsOutputWithContext(ctx context.Context) ChannelArchiveOutputSettingsOutput

func (ChannelArchiveOutputSettingsOutput) ToChannelArchiveOutputSettingsPtrOutput

func (o ChannelArchiveOutputSettingsOutput) ToChannelArchiveOutputSettingsPtrOutput() ChannelArchiveOutputSettingsPtrOutput

func (ChannelArchiveOutputSettingsOutput) ToChannelArchiveOutputSettingsPtrOutputWithContext

func (o ChannelArchiveOutputSettingsOutput) ToChannelArchiveOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveOutputSettingsPtrOutput

func (ChannelArchiveOutputSettingsOutput) ToOutput added in v0.76.0

type ChannelArchiveOutputSettingsPtrInput

type ChannelArchiveOutputSettingsPtrInput interface {
	pulumi.Input

	ToChannelArchiveOutputSettingsPtrOutput() ChannelArchiveOutputSettingsPtrOutput
	ToChannelArchiveOutputSettingsPtrOutputWithContext(context.Context) ChannelArchiveOutputSettingsPtrOutput
}

ChannelArchiveOutputSettingsPtrInput is an input type that accepts ChannelArchiveOutputSettingsArgs, ChannelArchiveOutputSettingsPtr and ChannelArchiveOutputSettingsPtrOutput values. You can construct a concrete instance of `ChannelArchiveOutputSettingsPtrInput` via:

        ChannelArchiveOutputSettingsArgs{...}

or:

        nil

type ChannelArchiveOutputSettingsPtrOutput

type ChannelArchiveOutputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelArchiveOutputSettingsPtrOutput) ContainerSettings

func (ChannelArchiveOutputSettingsPtrOutput) Elem

func (ChannelArchiveOutputSettingsPtrOutput) ElementType

func (ChannelArchiveOutputSettingsPtrOutput) Extension

func (ChannelArchiveOutputSettingsPtrOutput) NameModifier

func (ChannelArchiveOutputSettingsPtrOutput) ToChannelArchiveOutputSettingsPtrOutput

func (o ChannelArchiveOutputSettingsPtrOutput) ToChannelArchiveOutputSettingsPtrOutput() ChannelArchiveOutputSettingsPtrOutput

func (ChannelArchiveOutputSettingsPtrOutput) ToChannelArchiveOutputSettingsPtrOutputWithContext

func (o ChannelArchiveOutputSettingsPtrOutput) ToChannelArchiveOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveOutputSettingsPtrOutput

func (ChannelArchiveOutputSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelArchiveS3Settings

type ChannelArchiveS3Settings struct {
	CannedAcl *string `pulumi:"cannedAcl"`
}

type ChannelArchiveS3SettingsArgs

type ChannelArchiveS3SettingsArgs struct {
	CannedAcl pulumi.StringPtrInput `pulumi:"cannedAcl"`
}

func (ChannelArchiveS3SettingsArgs) ElementType

func (ChannelArchiveS3SettingsArgs) ToChannelArchiveS3SettingsOutput

func (i ChannelArchiveS3SettingsArgs) ToChannelArchiveS3SettingsOutput() ChannelArchiveS3SettingsOutput

func (ChannelArchiveS3SettingsArgs) ToChannelArchiveS3SettingsOutputWithContext

func (i ChannelArchiveS3SettingsArgs) ToChannelArchiveS3SettingsOutputWithContext(ctx context.Context) ChannelArchiveS3SettingsOutput

func (ChannelArchiveS3SettingsArgs) ToChannelArchiveS3SettingsPtrOutput

func (i ChannelArchiveS3SettingsArgs) ToChannelArchiveS3SettingsPtrOutput() ChannelArchiveS3SettingsPtrOutput

func (ChannelArchiveS3SettingsArgs) ToChannelArchiveS3SettingsPtrOutputWithContext

func (i ChannelArchiveS3SettingsArgs) ToChannelArchiveS3SettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveS3SettingsPtrOutput

func (ChannelArchiveS3SettingsArgs) ToOutput added in v0.76.0

type ChannelArchiveS3SettingsInput

type ChannelArchiveS3SettingsInput interface {
	pulumi.Input

	ToChannelArchiveS3SettingsOutput() ChannelArchiveS3SettingsOutput
	ToChannelArchiveS3SettingsOutputWithContext(context.Context) ChannelArchiveS3SettingsOutput
}

ChannelArchiveS3SettingsInput is an input type that accepts ChannelArchiveS3SettingsArgs and ChannelArchiveS3SettingsOutput values. You can construct a concrete instance of `ChannelArchiveS3SettingsInput` via:

ChannelArchiveS3SettingsArgs{...}

type ChannelArchiveS3SettingsOutput

type ChannelArchiveS3SettingsOutput struct{ *pulumi.OutputState }

func (ChannelArchiveS3SettingsOutput) CannedAcl

func (ChannelArchiveS3SettingsOutput) ElementType

func (ChannelArchiveS3SettingsOutput) ToChannelArchiveS3SettingsOutput

func (o ChannelArchiveS3SettingsOutput) ToChannelArchiveS3SettingsOutput() ChannelArchiveS3SettingsOutput

func (ChannelArchiveS3SettingsOutput) ToChannelArchiveS3SettingsOutputWithContext

func (o ChannelArchiveS3SettingsOutput) ToChannelArchiveS3SettingsOutputWithContext(ctx context.Context) ChannelArchiveS3SettingsOutput

func (ChannelArchiveS3SettingsOutput) ToChannelArchiveS3SettingsPtrOutput

func (o ChannelArchiveS3SettingsOutput) ToChannelArchiveS3SettingsPtrOutput() ChannelArchiveS3SettingsPtrOutput

func (ChannelArchiveS3SettingsOutput) ToChannelArchiveS3SettingsPtrOutputWithContext

func (o ChannelArchiveS3SettingsOutput) ToChannelArchiveS3SettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveS3SettingsPtrOutput

func (ChannelArchiveS3SettingsOutput) ToOutput added in v0.76.0

type ChannelArchiveS3SettingsPtrInput

type ChannelArchiveS3SettingsPtrInput interface {
	pulumi.Input

	ToChannelArchiveS3SettingsPtrOutput() ChannelArchiveS3SettingsPtrOutput
	ToChannelArchiveS3SettingsPtrOutputWithContext(context.Context) ChannelArchiveS3SettingsPtrOutput
}

ChannelArchiveS3SettingsPtrInput is an input type that accepts ChannelArchiveS3SettingsArgs, ChannelArchiveS3SettingsPtr and ChannelArchiveS3SettingsPtrOutput values. You can construct a concrete instance of `ChannelArchiveS3SettingsPtrInput` via:

        ChannelArchiveS3SettingsArgs{...}

or:

        nil

type ChannelArchiveS3SettingsPtrOutput

type ChannelArchiveS3SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelArchiveS3SettingsPtrOutput) CannedAcl

func (ChannelArchiveS3SettingsPtrOutput) Elem

func (ChannelArchiveS3SettingsPtrOutput) ElementType

func (ChannelArchiveS3SettingsPtrOutput) ToChannelArchiveS3SettingsPtrOutput

func (o ChannelArchiveS3SettingsPtrOutput) ToChannelArchiveS3SettingsPtrOutput() ChannelArchiveS3SettingsPtrOutput

func (ChannelArchiveS3SettingsPtrOutput) ToChannelArchiveS3SettingsPtrOutputWithContext

func (o ChannelArchiveS3SettingsPtrOutput) ToChannelArchiveS3SettingsPtrOutputWithContext(ctx context.Context) ChannelArchiveS3SettingsPtrOutput

func (ChannelArchiveS3SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelArgs

The set of arguments for constructing a Channel resource.

func (ChannelArgs) ElementType

func (ChannelArgs) ElementType() reflect.Type

type ChannelAribDestinationSettings

type ChannelAribDestinationSettings struct {
}

type ChannelAribDestinationSettingsArgs

type ChannelAribDestinationSettingsArgs struct {
}

func (ChannelAribDestinationSettingsArgs) ElementType

func (ChannelAribDestinationSettingsArgs) ToChannelAribDestinationSettingsOutput

func (i ChannelAribDestinationSettingsArgs) ToChannelAribDestinationSettingsOutput() ChannelAribDestinationSettingsOutput

func (ChannelAribDestinationSettingsArgs) ToChannelAribDestinationSettingsOutputWithContext

func (i ChannelAribDestinationSettingsArgs) ToChannelAribDestinationSettingsOutputWithContext(ctx context.Context) ChannelAribDestinationSettingsOutput

func (ChannelAribDestinationSettingsArgs) ToChannelAribDestinationSettingsPtrOutput

func (i ChannelAribDestinationSettingsArgs) ToChannelAribDestinationSettingsPtrOutput() ChannelAribDestinationSettingsPtrOutput

func (ChannelAribDestinationSettingsArgs) ToChannelAribDestinationSettingsPtrOutputWithContext

func (i ChannelAribDestinationSettingsArgs) ToChannelAribDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelAribDestinationSettingsPtrOutput

func (ChannelAribDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelAribDestinationSettingsInput

type ChannelAribDestinationSettingsInput interface {
	pulumi.Input

	ToChannelAribDestinationSettingsOutput() ChannelAribDestinationSettingsOutput
	ToChannelAribDestinationSettingsOutputWithContext(context.Context) ChannelAribDestinationSettingsOutput
}

ChannelAribDestinationSettingsInput is an input type that accepts ChannelAribDestinationSettingsArgs and ChannelAribDestinationSettingsOutput values. You can construct a concrete instance of `ChannelAribDestinationSettingsInput` via:

ChannelAribDestinationSettingsArgs{...}

type ChannelAribDestinationSettingsOutput

type ChannelAribDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelAribDestinationSettingsOutput) ElementType

func (ChannelAribDestinationSettingsOutput) ToChannelAribDestinationSettingsOutput

func (o ChannelAribDestinationSettingsOutput) ToChannelAribDestinationSettingsOutput() ChannelAribDestinationSettingsOutput

func (ChannelAribDestinationSettingsOutput) ToChannelAribDestinationSettingsOutputWithContext

func (o ChannelAribDestinationSettingsOutput) ToChannelAribDestinationSettingsOutputWithContext(ctx context.Context) ChannelAribDestinationSettingsOutput

func (ChannelAribDestinationSettingsOutput) ToChannelAribDestinationSettingsPtrOutput

func (o ChannelAribDestinationSettingsOutput) ToChannelAribDestinationSettingsPtrOutput() ChannelAribDestinationSettingsPtrOutput

func (ChannelAribDestinationSettingsOutput) ToChannelAribDestinationSettingsPtrOutputWithContext

func (o ChannelAribDestinationSettingsOutput) ToChannelAribDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelAribDestinationSettingsPtrOutput

func (ChannelAribDestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelAribDestinationSettingsPtrInput

type ChannelAribDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelAribDestinationSettingsPtrOutput() ChannelAribDestinationSettingsPtrOutput
	ToChannelAribDestinationSettingsPtrOutputWithContext(context.Context) ChannelAribDestinationSettingsPtrOutput
}

ChannelAribDestinationSettingsPtrInput is an input type that accepts ChannelAribDestinationSettingsArgs, ChannelAribDestinationSettingsPtr and ChannelAribDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelAribDestinationSettingsPtrInput` via:

        ChannelAribDestinationSettingsArgs{...}

or:

        nil

type ChannelAribDestinationSettingsPtrOutput

type ChannelAribDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAribDestinationSettingsPtrOutput) Elem

func (ChannelAribDestinationSettingsPtrOutput) ElementType

func (ChannelAribDestinationSettingsPtrOutput) ToChannelAribDestinationSettingsPtrOutput

func (o ChannelAribDestinationSettingsPtrOutput) ToChannelAribDestinationSettingsPtrOutput() ChannelAribDestinationSettingsPtrOutput

func (ChannelAribDestinationSettingsPtrOutput) ToChannelAribDestinationSettingsPtrOutputWithContext

func (o ChannelAribDestinationSettingsPtrOutput) ToChannelAribDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelAribDestinationSettingsPtrOutput

func (ChannelAribDestinationSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelAribSourceSettings

type ChannelAribSourceSettings struct {
}

type ChannelAribSourceSettingsArgs

type ChannelAribSourceSettingsArgs struct {
}

func (ChannelAribSourceSettingsArgs) ElementType

func (ChannelAribSourceSettingsArgs) ToChannelAribSourceSettingsOutput

func (i ChannelAribSourceSettingsArgs) ToChannelAribSourceSettingsOutput() ChannelAribSourceSettingsOutput

func (ChannelAribSourceSettingsArgs) ToChannelAribSourceSettingsOutputWithContext

func (i ChannelAribSourceSettingsArgs) ToChannelAribSourceSettingsOutputWithContext(ctx context.Context) ChannelAribSourceSettingsOutput

func (ChannelAribSourceSettingsArgs) ToChannelAribSourceSettingsPtrOutput

func (i ChannelAribSourceSettingsArgs) ToChannelAribSourceSettingsPtrOutput() ChannelAribSourceSettingsPtrOutput

func (ChannelAribSourceSettingsArgs) ToChannelAribSourceSettingsPtrOutputWithContext

func (i ChannelAribSourceSettingsArgs) ToChannelAribSourceSettingsPtrOutputWithContext(ctx context.Context) ChannelAribSourceSettingsPtrOutput

func (ChannelAribSourceSettingsArgs) ToOutput added in v0.76.0

type ChannelAribSourceSettingsInput

type ChannelAribSourceSettingsInput interface {
	pulumi.Input

	ToChannelAribSourceSettingsOutput() ChannelAribSourceSettingsOutput
	ToChannelAribSourceSettingsOutputWithContext(context.Context) ChannelAribSourceSettingsOutput
}

ChannelAribSourceSettingsInput is an input type that accepts ChannelAribSourceSettingsArgs and ChannelAribSourceSettingsOutput values. You can construct a concrete instance of `ChannelAribSourceSettingsInput` via:

ChannelAribSourceSettingsArgs{...}

type ChannelAribSourceSettingsOutput

type ChannelAribSourceSettingsOutput struct{ *pulumi.OutputState }

func (ChannelAribSourceSettingsOutput) ElementType

func (ChannelAribSourceSettingsOutput) ToChannelAribSourceSettingsOutput

func (o ChannelAribSourceSettingsOutput) ToChannelAribSourceSettingsOutput() ChannelAribSourceSettingsOutput

func (ChannelAribSourceSettingsOutput) ToChannelAribSourceSettingsOutputWithContext

func (o ChannelAribSourceSettingsOutput) ToChannelAribSourceSettingsOutputWithContext(ctx context.Context) ChannelAribSourceSettingsOutput

func (ChannelAribSourceSettingsOutput) ToChannelAribSourceSettingsPtrOutput

func (o ChannelAribSourceSettingsOutput) ToChannelAribSourceSettingsPtrOutput() ChannelAribSourceSettingsPtrOutput

func (ChannelAribSourceSettingsOutput) ToChannelAribSourceSettingsPtrOutputWithContext

func (o ChannelAribSourceSettingsOutput) ToChannelAribSourceSettingsPtrOutputWithContext(ctx context.Context) ChannelAribSourceSettingsPtrOutput

func (ChannelAribSourceSettingsOutput) ToOutput added in v0.76.0

type ChannelAribSourceSettingsPtrInput

type ChannelAribSourceSettingsPtrInput interface {
	pulumi.Input

	ToChannelAribSourceSettingsPtrOutput() ChannelAribSourceSettingsPtrOutput
	ToChannelAribSourceSettingsPtrOutputWithContext(context.Context) ChannelAribSourceSettingsPtrOutput
}

ChannelAribSourceSettingsPtrInput is an input type that accepts ChannelAribSourceSettingsArgs, ChannelAribSourceSettingsPtr and ChannelAribSourceSettingsPtrOutput values. You can construct a concrete instance of `ChannelAribSourceSettingsPtrInput` via:

        ChannelAribSourceSettingsArgs{...}

or:

        nil

type ChannelAribSourceSettingsPtrOutput

type ChannelAribSourceSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAribSourceSettingsPtrOutput) Elem

func (ChannelAribSourceSettingsPtrOutput) ElementType

func (ChannelAribSourceSettingsPtrOutput) ToChannelAribSourceSettingsPtrOutput

func (o ChannelAribSourceSettingsPtrOutput) ToChannelAribSourceSettingsPtrOutput() ChannelAribSourceSettingsPtrOutput

func (ChannelAribSourceSettingsPtrOutput) ToChannelAribSourceSettingsPtrOutputWithContext

func (o ChannelAribSourceSettingsPtrOutput) ToChannelAribSourceSettingsPtrOutputWithContext(ctx context.Context) ChannelAribSourceSettingsPtrOutput

func (ChannelAribSourceSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelAudioChannelMapping

type ChannelAudioChannelMapping struct {
	InputChannelLevels []ChannelInputChannelLevel `pulumi:"inputChannelLevels"`
	OutputChannel      *int                       `pulumi:"outputChannel"`
}

type ChannelAudioChannelMappingArgs

type ChannelAudioChannelMappingArgs struct {
	InputChannelLevels ChannelInputChannelLevelArrayInput `pulumi:"inputChannelLevels"`
	OutputChannel      pulumi.IntPtrInput                 `pulumi:"outputChannel"`
}

func (ChannelAudioChannelMappingArgs) ElementType

func (ChannelAudioChannelMappingArgs) ToChannelAudioChannelMappingOutput

func (i ChannelAudioChannelMappingArgs) ToChannelAudioChannelMappingOutput() ChannelAudioChannelMappingOutput

func (ChannelAudioChannelMappingArgs) ToChannelAudioChannelMappingOutputWithContext

func (i ChannelAudioChannelMappingArgs) ToChannelAudioChannelMappingOutputWithContext(ctx context.Context) ChannelAudioChannelMappingOutput

func (ChannelAudioChannelMappingArgs) ToOutput added in v0.76.0

type ChannelAudioChannelMappingArray

type ChannelAudioChannelMappingArray []ChannelAudioChannelMappingInput

func (ChannelAudioChannelMappingArray) ElementType

func (ChannelAudioChannelMappingArray) ToChannelAudioChannelMappingArrayOutput

func (i ChannelAudioChannelMappingArray) ToChannelAudioChannelMappingArrayOutput() ChannelAudioChannelMappingArrayOutput

func (ChannelAudioChannelMappingArray) ToChannelAudioChannelMappingArrayOutputWithContext

func (i ChannelAudioChannelMappingArray) ToChannelAudioChannelMappingArrayOutputWithContext(ctx context.Context) ChannelAudioChannelMappingArrayOutput

func (ChannelAudioChannelMappingArray) ToOutput added in v0.76.0

type ChannelAudioChannelMappingArrayInput

type ChannelAudioChannelMappingArrayInput interface {
	pulumi.Input

	ToChannelAudioChannelMappingArrayOutput() ChannelAudioChannelMappingArrayOutput
	ToChannelAudioChannelMappingArrayOutputWithContext(context.Context) ChannelAudioChannelMappingArrayOutput
}

ChannelAudioChannelMappingArrayInput is an input type that accepts ChannelAudioChannelMappingArray and ChannelAudioChannelMappingArrayOutput values. You can construct a concrete instance of `ChannelAudioChannelMappingArrayInput` via:

ChannelAudioChannelMappingArray{ ChannelAudioChannelMappingArgs{...} }

type ChannelAudioChannelMappingArrayOutput

type ChannelAudioChannelMappingArrayOutput struct{ *pulumi.OutputState }

func (ChannelAudioChannelMappingArrayOutput) ElementType

func (ChannelAudioChannelMappingArrayOutput) Index

func (ChannelAudioChannelMappingArrayOutput) ToChannelAudioChannelMappingArrayOutput

func (o ChannelAudioChannelMappingArrayOutput) ToChannelAudioChannelMappingArrayOutput() ChannelAudioChannelMappingArrayOutput

func (ChannelAudioChannelMappingArrayOutput) ToChannelAudioChannelMappingArrayOutputWithContext

func (o ChannelAudioChannelMappingArrayOutput) ToChannelAudioChannelMappingArrayOutputWithContext(ctx context.Context) ChannelAudioChannelMappingArrayOutput

func (ChannelAudioChannelMappingArrayOutput) ToOutput added in v0.76.0

type ChannelAudioChannelMappingInput

type ChannelAudioChannelMappingInput interface {
	pulumi.Input

	ToChannelAudioChannelMappingOutput() ChannelAudioChannelMappingOutput
	ToChannelAudioChannelMappingOutputWithContext(context.Context) ChannelAudioChannelMappingOutput
}

ChannelAudioChannelMappingInput is an input type that accepts ChannelAudioChannelMappingArgs and ChannelAudioChannelMappingOutput values. You can construct a concrete instance of `ChannelAudioChannelMappingInput` via:

ChannelAudioChannelMappingArgs{...}

type ChannelAudioChannelMappingOutput

type ChannelAudioChannelMappingOutput struct{ *pulumi.OutputState }

func (ChannelAudioChannelMappingOutput) ElementType

func (ChannelAudioChannelMappingOutput) InputChannelLevels

func (ChannelAudioChannelMappingOutput) OutputChannel

func (ChannelAudioChannelMappingOutput) ToChannelAudioChannelMappingOutput

func (o ChannelAudioChannelMappingOutput) ToChannelAudioChannelMappingOutput() ChannelAudioChannelMappingOutput

func (ChannelAudioChannelMappingOutput) ToChannelAudioChannelMappingOutputWithContext

func (o ChannelAudioChannelMappingOutput) ToChannelAudioChannelMappingOutputWithContext(ctx context.Context) ChannelAudioChannelMappingOutput

func (ChannelAudioChannelMappingOutput) ToOutput added in v0.76.0

type ChannelAudioCodecSettings

type ChannelAudioCodecSettings struct {
	AacSettings         *ChannelAacSettings         `pulumi:"aacSettings"`
	Ac3Settings         *ChannelAc3Settings         `pulumi:"ac3Settings"`
	Eac3AtmosSettings   *ChannelEac3AtmosSettings   `pulumi:"eac3AtmosSettings"`
	Eac3Settings        *ChannelEac3Settings        `pulumi:"eac3Settings"`
	Mp2Settings         *ChannelMp2Settings         `pulumi:"mp2Settings"`
	PassThroughSettings *ChannelPassThroughSettings `pulumi:"passThroughSettings"`
	WavSettings         *ChannelWavSettings         `pulumi:"wavSettings"`
}

type ChannelAudioCodecSettingsArgs

type ChannelAudioCodecSettingsArgs struct {
	AacSettings         ChannelAacSettingsPtrInput         `pulumi:"aacSettings"`
	Ac3Settings         ChannelAc3SettingsPtrInput         `pulumi:"ac3Settings"`
	Eac3AtmosSettings   ChannelEac3AtmosSettingsPtrInput   `pulumi:"eac3AtmosSettings"`
	Eac3Settings        ChannelEac3SettingsPtrInput        `pulumi:"eac3Settings"`
	Mp2Settings         ChannelMp2SettingsPtrInput         `pulumi:"mp2Settings"`
	PassThroughSettings ChannelPassThroughSettingsPtrInput `pulumi:"passThroughSettings"`
	WavSettings         ChannelWavSettingsPtrInput         `pulumi:"wavSettings"`
}

func (ChannelAudioCodecSettingsArgs) ElementType

func (ChannelAudioCodecSettingsArgs) ToChannelAudioCodecSettingsOutput

func (i ChannelAudioCodecSettingsArgs) ToChannelAudioCodecSettingsOutput() ChannelAudioCodecSettingsOutput

func (ChannelAudioCodecSettingsArgs) ToChannelAudioCodecSettingsOutputWithContext

func (i ChannelAudioCodecSettingsArgs) ToChannelAudioCodecSettingsOutputWithContext(ctx context.Context) ChannelAudioCodecSettingsOutput

func (ChannelAudioCodecSettingsArgs) ToChannelAudioCodecSettingsPtrOutput

func (i ChannelAudioCodecSettingsArgs) ToChannelAudioCodecSettingsPtrOutput() ChannelAudioCodecSettingsPtrOutput

func (ChannelAudioCodecSettingsArgs) ToChannelAudioCodecSettingsPtrOutputWithContext

func (i ChannelAudioCodecSettingsArgs) ToChannelAudioCodecSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioCodecSettingsPtrOutput

func (ChannelAudioCodecSettingsArgs) ToOutput added in v0.76.0

type ChannelAudioCodecSettingsInput

type ChannelAudioCodecSettingsInput interface {
	pulumi.Input

	ToChannelAudioCodecSettingsOutput() ChannelAudioCodecSettingsOutput
	ToChannelAudioCodecSettingsOutputWithContext(context.Context) ChannelAudioCodecSettingsOutput
}

ChannelAudioCodecSettingsInput is an input type that accepts ChannelAudioCodecSettingsArgs and ChannelAudioCodecSettingsOutput values. You can construct a concrete instance of `ChannelAudioCodecSettingsInput` via:

ChannelAudioCodecSettingsArgs{...}

type ChannelAudioCodecSettingsOutput

type ChannelAudioCodecSettingsOutput struct{ *pulumi.OutputState }

func (ChannelAudioCodecSettingsOutput) AacSettings

func (ChannelAudioCodecSettingsOutput) Ac3Settings

func (ChannelAudioCodecSettingsOutput) Eac3AtmosSettings added in v0.59.0

func (ChannelAudioCodecSettingsOutput) Eac3Settings

func (ChannelAudioCodecSettingsOutput) ElementType

func (ChannelAudioCodecSettingsOutput) Mp2Settings

func (ChannelAudioCodecSettingsOutput) PassThroughSettings

func (ChannelAudioCodecSettingsOutput) ToChannelAudioCodecSettingsOutput

func (o ChannelAudioCodecSettingsOutput) ToChannelAudioCodecSettingsOutput() ChannelAudioCodecSettingsOutput

func (ChannelAudioCodecSettingsOutput) ToChannelAudioCodecSettingsOutputWithContext

func (o ChannelAudioCodecSettingsOutput) ToChannelAudioCodecSettingsOutputWithContext(ctx context.Context) ChannelAudioCodecSettingsOutput

func (ChannelAudioCodecSettingsOutput) ToChannelAudioCodecSettingsPtrOutput

func (o ChannelAudioCodecSettingsOutput) ToChannelAudioCodecSettingsPtrOutput() ChannelAudioCodecSettingsPtrOutput

func (ChannelAudioCodecSettingsOutput) ToChannelAudioCodecSettingsPtrOutputWithContext

func (o ChannelAudioCodecSettingsOutput) ToChannelAudioCodecSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioCodecSettingsPtrOutput

func (ChannelAudioCodecSettingsOutput) ToOutput added in v0.76.0

func (ChannelAudioCodecSettingsOutput) WavSettings

type ChannelAudioCodecSettingsPtrInput

type ChannelAudioCodecSettingsPtrInput interface {
	pulumi.Input

	ToChannelAudioCodecSettingsPtrOutput() ChannelAudioCodecSettingsPtrOutput
	ToChannelAudioCodecSettingsPtrOutputWithContext(context.Context) ChannelAudioCodecSettingsPtrOutput
}

ChannelAudioCodecSettingsPtrInput is an input type that accepts ChannelAudioCodecSettingsArgs, ChannelAudioCodecSettingsPtr and ChannelAudioCodecSettingsPtrOutput values. You can construct a concrete instance of `ChannelAudioCodecSettingsPtrInput` via:

        ChannelAudioCodecSettingsArgs{...}

or:

        nil

type ChannelAudioCodecSettingsPtrOutput

type ChannelAudioCodecSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAudioCodecSettingsPtrOutput) AacSettings

func (ChannelAudioCodecSettingsPtrOutput) Ac3Settings

func (ChannelAudioCodecSettingsPtrOutput) Eac3AtmosSettings added in v0.59.0

func (ChannelAudioCodecSettingsPtrOutput) Eac3Settings

func (ChannelAudioCodecSettingsPtrOutput) Elem

func (ChannelAudioCodecSettingsPtrOutput) ElementType

func (ChannelAudioCodecSettingsPtrOutput) Mp2Settings

func (ChannelAudioCodecSettingsPtrOutput) PassThroughSettings

func (ChannelAudioCodecSettingsPtrOutput) ToChannelAudioCodecSettingsPtrOutput

func (o ChannelAudioCodecSettingsPtrOutput) ToChannelAudioCodecSettingsPtrOutput() ChannelAudioCodecSettingsPtrOutput

func (ChannelAudioCodecSettingsPtrOutput) ToChannelAudioCodecSettingsPtrOutputWithContext

func (o ChannelAudioCodecSettingsPtrOutput) ToChannelAudioCodecSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioCodecSettingsPtrOutput

func (ChannelAudioCodecSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelAudioCodecSettingsPtrOutput) WavSettings

type ChannelAudioDescription

type ChannelAudioDescription struct {
	AudioNormalizationSettings *ChannelAudioNormalizationSettings `pulumi:"audioNormalizationSettings"`
	AudioSelectorName          *string                            `pulumi:"audioSelectorName"`
	AudioType                  *string                            `pulumi:"audioType"`
	AudioTypeControl           *string                            `pulumi:"audioTypeControl"`
	AudioWatermarkingSettings  *ChannelAudioWatermarkSettings     `pulumi:"audioWatermarkingSettings"`
	CodecSettings              *ChannelAudioCodecSettings         `pulumi:"codecSettings"`
	LanguageCode               *string                            `pulumi:"languageCode"`
	LanguageCodeControl        *string                            `pulumi:"languageCodeControl"`
	Name                       *string                            `pulumi:"name"`
	RemixSettings              *ChannelRemixSettings              `pulumi:"remixSettings"`
	StreamName                 *string                            `pulumi:"streamName"`
}

type ChannelAudioDescriptionArgs

type ChannelAudioDescriptionArgs struct {
	AudioNormalizationSettings ChannelAudioNormalizationSettingsPtrInput `pulumi:"audioNormalizationSettings"`
	AudioSelectorName          pulumi.StringPtrInput                     `pulumi:"audioSelectorName"`
	AudioType                  pulumi.StringPtrInput                     `pulumi:"audioType"`
	AudioTypeControl           pulumi.StringPtrInput                     `pulumi:"audioTypeControl"`
	AudioWatermarkingSettings  ChannelAudioWatermarkSettingsPtrInput     `pulumi:"audioWatermarkingSettings"`
	CodecSettings              ChannelAudioCodecSettingsPtrInput         `pulumi:"codecSettings"`
	LanguageCode               pulumi.StringPtrInput                     `pulumi:"languageCode"`
	LanguageCodeControl        pulumi.StringPtrInput                     `pulumi:"languageCodeControl"`
	Name                       pulumi.StringPtrInput                     `pulumi:"name"`
	RemixSettings              ChannelRemixSettingsPtrInput              `pulumi:"remixSettings"`
	StreamName                 pulumi.StringPtrInput                     `pulumi:"streamName"`
}

func (ChannelAudioDescriptionArgs) ElementType

func (ChannelAudioDescriptionArgs) ToChannelAudioDescriptionOutput

func (i ChannelAudioDescriptionArgs) ToChannelAudioDescriptionOutput() ChannelAudioDescriptionOutput

func (ChannelAudioDescriptionArgs) ToChannelAudioDescriptionOutputWithContext

func (i ChannelAudioDescriptionArgs) ToChannelAudioDescriptionOutputWithContext(ctx context.Context) ChannelAudioDescriptionOutput

func (ChannelAudioDescriptionArgs) ToOutput added in v0.76.0

type ChannelAudioDescriptionArray

type ChannelAudioDescriptionArray []ChannelAudioDescriptionInput

func (ChannelAudioDescriptionArray) ElementType

func (ChannelAudioDescriptionArray) ToChannelAudioDescriptionArrayOutput

func (i ChannelAudioDescriptionArray) ToChannelAudioDescriptionArrayOutput() ChannelAudioDescriptionArrayOutput

func (ChannelAudioDescriptionArray) ToChannelAudioDescriptionArrayOutputWithContext

func (i ChannelAudioDescriptionArray) ToChannelAudioDescriptionArrayOutputWithContext(ctx context.Context) ChannelAudioDescriptionArrayOutput

func (ChannelAudioDescriptionArray) ToOutput added in v0.76.0

type ChannelAudioDescriptionArrayInput

type ChannelAudioDescriptionArrayInput interface {
	pulumi.Input

	ToChannelAudioDescriptionArrayOutput() ChannelAudioDescriptionArrayOutput
	ToChannelAudioDescriptionArrayOutputWithContext(context.Context) ChannelAudioDescriptionArrayOutput
}

ChannelAudioDescriptionArrayInput is an input type that accepts ChannelAudioDescriptionArray and ChannelAudioDescriptionArrayOutput values. You can construct a concrete instance of `ChannelAudioDescriptionArrayInput` via:

ChannelAudioDescriptionArray{ ChannelAudioDescriptionArgs{...} }

type ChannelAudioDescriptionArrayOutput

type ChannelAudioDescriptionArrayOutput struct{ *pulumi.OutputState }

func (ChannelAudioDescriptionArrayOutput) ElementType

func (ChannelAudioDescriptionArrayOutput) Index

func (ChannelAudioDescriptionArrayOutput) ToChannelAudioDescriptionArrayOutput

func (o ChannelAudioDescriptionArrayOutput) ToChannelAudioDescriptionArrayOutput() ChannelAudioDescriptionArrayOutput

func (ChannelAudioDescriptionArrayOutput) ToChannelAudioDescriptionArrayOutputWithContext

func (o ChannelAudioDescriptionArrayOutput) ToChannelAudioDescriptionArrayOutputWithContext(ctx context.Context) ChannelAudioDescriptionArrayOutput

func (ChannelAudioDescriptionArrayOutput) ToOutput added in v0.76.0

type ChannelAudioDescriptionInput

type ChannelAudioDescriptionInput interface {
	pulumi.Input

	ToChannelAudioDescriptionOutput() ChannelAudioDescriptionOutput
	ToChannelAudioDescriptionOutputWithContext(context.Context) ChannelAudioDescriptionOutput
}

ChannelAudioDescriptionInput is an input type that accepts ChannelAudioDescriptionArgs and ChannelAudioDescriptionOutput values. You can construct a concrete instance of `ChannelAudioDescriptionInput` via:

ChannelAudioDescriptionArgs{...}

type ChannelAudioDescriptionOutput

type ChannelAudioDescriptionOutput struct{ *pulumi.OutputState }

func (ChannelAudioDescriptionOutput) AudioNormalizationSettings

func (ChannelAudioDescriptionOutput) AudioSelectorName

func (ChannelAudioDescriptionOutput) AudioType

func (ChannelAudioDescriptionOutput) AudioTypeControl

func (ChannelAudioDescriptionOutput) AudioWatermarkingSettings added in v0.9.0

func (ChannelAudioDescriptionOutput) CodecSettings

func (ChannelAudioDescriptionOutput) ElementType

func (ChannelAudioDescriptionOutput) LanguageCode

func (ChannelAudioDescriptionOutput) LanguageCodeControl

func (o ChannelAudioDescriptionOutput) LanguageCodeControl() pulumi.StringPtrOutput

func (ChannelAudioDescriptionOutput) Name

func (ChannelAudioDescriptionOutput) RemixSettings

func (ChannelAudioDescriptionOutput) StreamName

func (ChannelAudioDescriptionOutput) ToChannelAudioDescriptionOutput

func (o ChannelAudioDescriptionOutput) ToChannelAudioDescriptionOutput() ChannelAudioDescriptionOutput

func (ChannelAudioDescriptionOutput) ToChannelAudioDescriptionOutputWithContext

func (o ChannelAudioDescriptionOutput) ToChannelAudioDescriptionOutputWithContext(ctx context.Context) ChannelAudioDescriptionOutput

func (ChannelAudioDescriptionOutput) ToOutput added in v0.76.0

type ChannelAudioDolbyEDecode added in v0.59.0

type ChannelAudioDolbyEDecode struct {
	ProgramSelection *string `pulumi:"programSelection"`
}

type ChannelAudioDolbyEDecodeArgs added in v0.59.0

type ChannelAudioDolbyEDecodeArgs struct {
	ProgramSelection pulumi.StringPtrInput `pulumi:"programSelection"`
}

func (ChannelAudioDolbyEDecodeArgs) ElementType added in v0.59.0

func (ChannelAudioDolbyEDecodeArgs) ToChannelAudioDolbyEDecodeOutput added in v0.59.0

func (i ChannelAudioDolbyEDecodeArgs) ToChannelAudioDolbyEDecodeOutput() ChannelAudioDolbyEDecodeOutput

func (ChannelAudioDolbyEDecodeArgs) ToChannelAudioDolbyEDecodeOutputWithContext added in v0.59.0

func (i ChannelAudioDolbyEDecodeArgs) ToChannelAudioDolbyEDecodeOutputWithContext(ctx context.Context) ChannelAudioDolbyEDecodeOutput

func (ChannelAudioDolbyEDecodeArgs) ToChannelAudioDolbyEDecodePtrOutput added in v0.59.0

func (i ChannelAudioDolbyEDecodeArgs) ToChannelAudioDolbyEDecodePtrOutput() ChannelAudioDolbyEDecodePtrOutput

func (ChannelAudioDolbyEDecodeArgs) ToChannelAudioDolbyEDecodePtrOutputWithContext added in v0.59.0

func (i ChannelAudioDolbyEDecodeArgs) ToChannelAudioDolbyEDecodePtrOutputWithContext(ctx context.Context) ChannelAudioDolbyEDecodePtrOutput

func (ChannelAudioDolbyEDecodeArgs) ToOutput added in v0.76.0

type ChannelAudioDolbyEDecodeInput added in v0.59.0

type ChannelAudioDolbyEDecodeInput interface {
	pulumi.Input

	ToChannelAudioDolbyEDecodeOutput() ChannelAudioDolbyEDecodeOutput
	ToChannelAudioDolbyEDecodeOutputWithContext(context.Context) ChannelAudioDolbyEDecodeOutput
}

ChannelAudioDolbyEDecodeInput is an input type that accepts ChannelAudioDolbyEDecodeArgs and ChannelAudioDolbyEDecodeOutput values. You can construct a concrete instance of `ChannelAudioDolbyEDecodeInput` via:

ChannelAudioDolbyEDecodeArgs{...}

type ChannelAudioDolbyEDecodeOutput added in v0.59.0

type ChannelAudioDolbyEDecodeOutput struct{ *pulumi.OutputState }

func (ChannelAudioDolbyEDecodeOutput) ElementType added in v0.59.0

func (ChannelAudioDolbyEDecodeOutput) ProgramSelection added in v0.59.0

func (ChannelAudioDolbyEDecodeOutput) ToChannelAudioDolbyEDecodeOutput added in v0.59.0

func (o ChannelAudioDolbyEDecodeOutput) ToChannelAudioDolbyEDecodeOutput() ChannelAudioDolbyEDecodeOutput

func (ChannelAudioDolbyEDecodeOutput) ToChannelAudioDolbyEDecodeOutputWithContext added in v0.59.0

func (o ChannelAudioDolbyEDecodeOutput) ToChannelAudioDolbyEDecodeOutputWithContext(ctx context.Context) ChannelAudioDolbyEDecodeOutput

func (ChannelAudioDolbyEDecodeOutput) ToChannelAudioDolbyEDecodePtrOutput added in v0.59.0

func (o ChannelAudioDolbyEDecodeOutput) ToChannelAudioDolbyEDecodePtrOutput() ChannelAudioDolbyEDecodePtrOutput

func (ChannelAudioDolbyEDecodeOutput) ToChannelAudioDolbyEDecodePtrOutputWithContext added in v0.59.0

func (o ChannelAudioDolbyEDecodeOutput) ToChannelAudioDolbyEDecodePtrOutputWithContext(ctx context.Context) ChannelAudioDolbyEDecodePtrOutput

func (ChannelAudioDolbyEDecodeOutput) ToOutput added in v0.76.0

type ChannelAudioDolbyEDecodePtrInput added in v0.59.0

type ChannelAudioDolbyEDecodePtrInput interface {
	pulumi.Input

	ToChannelAudioDolbyEDecodePtrOutput() ChannelAudioDolbyEDecodePtrOutput
	ToChannelAudioDolbyEDecodePtrOutputWithContext(context.Context) ChannelAudioDolbyEDecodePtrOutput
}

ChannelAudioDolbyEDecodePtrInput is an input type that accepts ChannelAudioDolbyEDecodeArgs, ChannelAudioDolbyEDecodePtr and ChannelAudioDolbyEDecodePtrOutput values. You can construct a concrete instance of `ChannelAudioDolbyEDecodePtrInput` via:

        ChannelAudioDolbyEDecodeArgs{...}

or:

        nil

func ChannelAudioDolbyEDecodePtr added in v0.59.0

func ChannelAudioDolbyEDecodePtr(v *ChannelAudioDolbyEDecodeArgs) ChannelAudioDolbyEDecodePtrInput

type ChannelAudioDolbyEDecodePtrOutput added in v0.59.0

type ChannelAudioDolbyEDecodePtrOutput struct{ *pulumi.OutputState }

func (ChannelAudioDolbyEDecodePtrOutput) Elem added in v0.59.0

func (ChannelAudioDolbyEDecodePtrOutput) ElementType added in v0.59.0

func (ChannelAudioDolbyEDecodePtrOutput) ProgramSelection added in v0.59.0

func (ChannelAudioDolbyEDecodePtrOutput) ToChannelAudioDolbyEDecodePtrOutput added in v0.59.0

func (o ChannelAudioDolbyEDecodePtrOutput) ToChannelAudioDolbyEDecodePtrOutput() ChannelAudioDolbyEDecodePtrOutput

func (ChannelAudioDolbyEDecodePtrOutput) ToChannelAudioDolbyEDecodePtrOutputWithContext added in v0.59.0

func (o ChannelAudioDolbyEDecodePtrOutput) ToChannelAudioDolbyEDecodePtrOutputWithContext(ctx context.Context) ChannelAudioDolbyEDecodePtrOutput

func (ChannelAudioDolbyEDecodePtrOutput) ToOutput added in v0.76.0

type ChannelAudioHlsRenditionSelection added in v0.9.0

type ChannelAudioHlsRenditionSelection struct {
	GroupId *string `pulumi:"groupId"`
	Name    *string `pulumi:"name"`
}

type ChannelAudioHlsRenditionSelectionArgs added in v0.9.0

type ChannelAudioHlsRenditionSelectionArgs struct {
	GroupId pulumi.StringPtrInput `pulumi:"groupId"`
	Name    pulumi.StringPtrInput `pulumi:"name"`
}

func (ChannelAudioHlsRenditionSelectionArgs) ElementType added in v0.9.0

func (ChannelAudioHlsRenditionSelectionArgs) ToChannelAudioHlsRenditionSelectionOutput added in v0.9.0

func (i ChannelAudioHlsRenditionSelectionArgs) ToChannelAudioHlsRenditionSelectionOutput() ChannelAudioHlsRenditionSelectionOutput

func (ChannelAudioHlsRenditionSelectionArgs) ToChannelAudioHlsRenditionSelectionOutputWithContext added in v0.9.0

func (i ChannelAudioHlsRenditionSelectionArgs) ToChannelAudioHlsRenditionSelectionOutputWithContext(ctx context.Context) ChannelAudioHlsRenditionSelectionOutput

func (ChannelAudioHlsRenditionSelectionArgs) ToChannelAudioHlsRenditionSelectionPtrOutput added in v0.9.0

func (i ChannelAudioHlsRenditionSelectionArgs) ToChannelAudioHlsRenditionSelectionPtrOutput() ChannelAudioHlsRenditionSelectionPtrOutput

func (ChannelAudioHlsRenditionSelectionArgs) ToChannelAudioHlsRenditionSelectionPtrOutputWithContext added in v0.9.0

func (i ChannelAudioHlsRenditionSelectionArgs) ToChannelAudioHlsRenditionSelectionPtrOutputWithContext(ctx context.Context) ChannelAudioHlsRenditionSelectionPtrOutput

func (ChannelAudioHlsRenditionSelectionArgs) ToOutput added in v0.76.0

type ChannelAudioHlsRenditionSelectionInput added in v0.9.0

type ChannelAudioHlsRenditionSelectionInput interface {
	pulumi.Input

	ToChannelAudioHlsRenditionSelectionOutput() ChannelAudioHlsRenditionSelectionOutput
	ToChannelAudioHlsRenditionSelectionOutputWithContext(context.Context) ChannelAudioHlsRenditionSelectionOutput
}

ChannelAudioHlsRenditionSelectionInput is an input type that accepts ChannelAudioHlsRenditionSelectionArgs and ChannelAudioHlsRenditionSelectionOutput values. You can construct a concrete instance of `ChannelAudioHlsRenditionSelectionInput` via:

ChannelAudioHlsRenditionSelectionArgs{...}

type ChannelAudioHlsRenditionSelectionOutput added in v0.9.0

type ChannelAudioHlsRenditionSelectionOutput struct{ *pulumi.OutputState }

func (ChannelAudioHlsRenditionSelectionOutput) ElementType added in v0.9.0

func (ChannelAudioHlsRenditionSelectionOutput) GroupId added in v0.9.0

func (ChannelAudioHlsRenditionSelectionOutput) Name added in v0.9.0

func (ChannelAudioHlsRenditionSelectionOutput) ToChannelAudioHlsRenditionSelectionOutput added in v0.9.0

func (o ChannelAudioHlsRenditionSelectionOutput) ToChannelAudioHlsRenditionSelectionOutput() ChannelAudioHlsRenditionSelectionOutput

func (ChannelAudioHlsRenditionSelectionOutput) ToChannelAudioHlsRenditionSelectionOutputWithContext added in v0.9.0

func (o ChannelAudioHlsRenditionSelectionOutput) ToChannelAudioHlsRenditionSelectionOutputWithContext(ctx context.Context) ChannelAudioHlsRenditionSelectionOutput

func (ChannelAudioHlsRenditionSelectionOutput) ToChannelAudioHlsRenditionSelectionPtrOutput added in v0.9.0

func (o ChannelAudioHlsRenditionSelectionOutput) ToChannelAudioHlsRenditionSelectionPtrOutput() ChannelAudioHlsRenditionSelectionPtrOutput

func (ChannelAudioHlsRenditionSelectionOutput) ToChannelAudioHlsRenditionSelectionPtrOutputWithContext added in v0.9.0

func (o ChannelAudioHlsRenditionSelectionOutput) ToChannelAudioHlsRenditionSelectionPtrOutputWithContext(ctx context.Context) ChannelAudioHlsRenditionSelectionPtrOutput

func (ChannelAudioHlsRenditionSelectionOutput) ToOutput added in v0.76.0

type ChannelAudioHlsRenditionSelectionPtrInput added in v0.9.0

type ChannelAudioHlsRenditionSelectionPtrInput interface {
	pulumi.Input

	ToChannelAudioHlsRenditionSelectionPtrOutput() ChannelAudioHlsRenditionSelectionPtrOutput
	ToChannelAudioHlsRenditionSelectionPtrOutputWithContext(context.Context) ChannelAudioHlsRenditionSelectionPtrOutput
}

ChannelAudioHlsRenditionSelectionPtrInput is an input type that accepts ChannelAudioHlsRenditionSelectionArgs, ChannelAudioHlsRenditionSelectionPtr and ChannelAudioHlsRenditionSelectionPtrOutput values. You can construct a concrete instance of `ChannelAudioHlsRenditionSelectionPtrInput` via:

        ChannelAudioHlsRenditionSelectionArgs{...}

or:

        nil

type ChannelAudioHlsRenditionSelectionPtrOutput added in v0.9.0

type ChannelAudioHlsRenditionSelectionPtrOutput struct{ *pulumi.OutputState }

func (ChannelAudioHlsRenditionSelectionPtrOutput) Elem added in v0.9.0

func (ChannelAudioHlsRenditionSelectionPtrOutput) ElementType added in v0.9.0

func (ChannelAudioHlsRenditionSelectionPtrOutput) GroupId added in v0.9.0

func (ChannelAudioHlsRenditionSelectionPtrOutput) Name added in v0.9.0

func (ChannelAudioHlsRenditionSelectionPtrOutput) ToChannelAudioHlsRenditionSelectionPtrOutput added in v0.9.0

func (o ChannelAudioHlsRenditionSelectionPtrOutput) ToChannelAudioHlsRenditionSelectionPtrOutput() ChannelAudioHlsRenditionSelectionPtrOutput

func (ChannelAudioHlsRenditionSelectionPtrOutput) ToChannelAudioHlsRenditionSelectionPtrOutputWithContext added in v0.9.0

func (o ChannelAudioHlsRenditionSelectionPtrOutput) ToChannelAudioHlsRenditionSelectionPtrOutputWithContext(ctx context.Context) ChannelAudioHlsRenditionSelectionPtrOutput

func (ChannelAudioHlsRenditionSelectionPtrOutput) ToOutput added in v0.76.0

type ChannelAudioLanguageSelection

type ChannelAudioLanguageSelection struct {
	LanguageCode            *string `pulumi:"languageCode"`
	LanguageSelectionPolicy *string `pulumi:"languageSelectionPolicy"`
}

type ChannelAudioLanguageSelectionArgs

type ChannelAudioLanguageSelectionArgs struct {
	LanguageCode            pulumi.StringPtrInput `pulumi:"languageCode"`
	LanguageSelectionPolicy pulumi.StringPtrInput `pulumi:"languageSelectionPolicy"`
}

func (ChannelAudioLanguageSelectionArgs) ElementType

func (ChannelAudioLanguageSelectionArgs) ToChannelAudioLanguageSelectionOutput

func (i ChannelAudioLanguageSelectionArgs) ToChannelAudioLanguageSelectionOutput() ChannelAudioLanguageSelectionOutput

func (ChannelAudioLanguageSelectionArgs) ToChannelAudioLanguageSelectionOutputWithContext

func (i ChannelAudioLanguageSelectionArgs) ToChannelAudioLanguageSelectionOutputWithContext(ctx context.Context) ChannelAudioLanguageSelectionOutput

func (ChannelAudioLanguageSelectionArgs) ToChannelAudioLanguageSelectionPtrOutput

func (i ChannelAudioLanguageSelectionArgs) ToChannelAudioLanguageSelectionPtrOutput() ChannelAudioLanguageSelectionPtrOutput

func (ChannelAudioLanguageSelectionArgs) ToChannelAudioLanguageSelectionPtrOutputWithContext

func (i ChannelAudioLanguageSelectionArgs) ToChannelAudioLanguageSelectionPtrOutputWithContext(ctx context.Context) ChannelAudioLanguageSelectionPtrOutput

func (ChannelAudioLanguageSelectionArgs) ToOutput added in v0.76.0

type ChannelAudioLanguageSelectionInput

type ChannelAudioLanguageSelectionInput interface {
	pulumi.Input

	ToChannelAudioLanguageSelectionOutput() ChannelAudioLanguageSelectionOutput
	ToChannelAudioLanguageSelectionOutputWithContext(context.Context) ChannelAudioLanguageSelectionOutput
}

ChannelAudioLanguageSelectionInput is an input type that accepts ChannelAudioLanguageSelectionArgs and ChannelAudioLanguageSelectionOutput values. You can construct a concrete instance of `ChannelAudioLanguageSelectionInput` via:

ChannelAudioLanguageSelectionArgs{...}

type ChannelAudioLanguageSelectionOutput

type ChannelAudioLanguageSelectionOutput struct{ *pulumi.OutputState }

func (ChannelAudioLanguageSelectionOutput) ElementType

func (ChannelAudioLanguageSelectionOutput) LanguageCode

func (ChannelAudioLanguageSelectionOutput) LanguageSelectionPolicy

func (o ChannelAudioLanguageSelectionOutput) LanguageSelectionPolicy() pulumi.StringPtrOutput

func (ChannelAudioLanguageSelectionOutput) ToChannelAudioLanguageSelectionOutput

func (o ChannelAudioLanguageSelectionOutput) ToChannelAudioLanguageSelectionOutput() ChannelAudioLanguageSelectionOutput

func (ChannelAudioLanguageSelectionOutput) ToChannelAudioLanguageSelectionOutputWithContext

func (o ChannelAudioLanguageSelectionOutput) ToChannelAudioLanguageSelectionOutputWithContext(ctx context.Context) ChannelAudioLanguageSelectionOutput

func (ChannelAudioLanguageSelectionOutput) ToChannelAudioLanguageSelectionPtrOutput

func (o ChannelAudioLanguageSelectionOutput) ToChannelAudioLanguageSelectionPtrOutput() ChannelAudioLanguageSelectionPtrOutput

func (ChannelAudioLanguageSelectionOutput) ToChannelAudioLanguageSelectionPtrOutputWithContext

func (o ChannelAudioLanguageSelectionOutput) ToChannelAudioLanguageSelectionPtrOutputWithContext(ctx context.Context) ChannelAudioLanguageSelectionPtrOutput

func (ChannelAudioLanguageSelectionOutput) ToOutput added in v0.76.0

type ChannelAudioLanguageSelectionPtrInput

type ChannelAudioLanguageSelectionPtrInput interface {
	pulumi.Input

	ToChannelAudioLanguageSelectionPtrOutput() ChannelAudioLanguageSelectionPtrOutput
	ToChannelAudioLanguageSelectionPtrOutputWithContext(context.Context) ChannelAudioLanguageSelectionPtrOutput
}

ChannelAudioLanguageSelectionPtrInput is an input type that accepts ChannelAudioLanguageSelectionArgs, ChannelAudioLanguageSelectionPtr and ChannelAudioLanguageSelectionPtrOutput values. You can construct a concrete instance of `ChannelAudioLanguageSelectionPtrInput` via:

        ChannelAudioLanguageSelectionArgs{...}

or:

        nil

type ChannelAudioLanguageSelectionPtrOutput

type ChannelAudioLanguageSelectionPtrOutput struct{ *pulumi.OutputState }

func (ChannelAudioLanguageSelectionPtrOutput) Elem

func (ChannelAudioLanguageSelectionPtrOutput) ElementType

func (ChannelAudioLanguageSelectionPtrOutput) LanguageCode

func (ChannelAudioLanguageSelectionPtrOutput) LanguageSelectionPolicy

func (ChannelAudioLanguageSelectionPtrOutput) ToChannelAudioLanguageSelectionPtrOutput

func (o ChannelAudioLanguageSelectionPtrOutput) ToChannelAudioLanguageSelectionPtrOutput() ChannelAudioLanguageSelectionPtrOutput

func (ChannelAudioLanguageSelectionPtrOutput) ToChannelAudioLanguageSelectionPtrOutputWithContext

func (o ChannelAudioLanguageSelectionPtrOutput) ToChannelAudioLanguageSelectionPtrOutputWithContext(ctx context.Context) ChannelAudioLanguageSelectionPtrOutput

func (ChannelAudioLanguageSelectionPtrOutput) ToOutput added in v0.76.0

type ChannelAudioNormalizationSettings

type ChannelAudioNormalizationSettings struct {
	Algorithm        *string  `pulumi:"algorithm"`
	AlgorithmControl *string  `pulumi:"algorithmControl"`
	TargetLkfs       *float64 `pulumi:"targetLkfs"`
}

type ChannelAudioNormalizationSettingsArgs

type ChannelAudioNormalizationSettingsArgs struct {
	Algorithm        pulumi.StringPtrInput  `pulumi:"algorithm"`
	AlgorithmControl pulumi.StringPtrInput  `pulumi:"algorithmControl"`
	TargetLkfs       pulumi.Float64PtrInput `pulumi:"targetLkfs"`
}

func (ChannelAudioNormalizationSettingsArgs) ElementType

func (ChannelAudioNormalizationSettingsArgs) ToChannelAudioNormalizationSettingsOutput

func (i ChannelAudioNormalizationSettingsArgs) ToChannelAudioNormalizationSettingsOutput() ChannelAudioNormalizationSettingsOutput

func (ChannelAudioNormalizationSettingsArgs) ToChannelAudioNormalizationSettingsOutputWithContext

func (i ChannelAudioNormalizationSettingsArgs) ToChannelAudioNormalizationSettingsOutputWithContext(ctx context.Context) ChannelAudioNormalizationSettingsOutput

func (ChannelAudioNormalizationSettingsArgs) ToChannelAudioNormalizationSettingsPtrOutput

func (i ChannelAudioNormalizationSettingsArgs) ToChannelAudioNormalizationSettingsPtrOutput() ChannelAudioNormalizationSettingsPtrOutput

func (ChannelAudioNormalizationSettingsArgs) ToChannelAudioNormalizationSettingsPtrOutputWithContext

func (i ChannelAudioNormalizationSettingsArgs) ToChannelAudioNormalizationSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioNormalizationSettingsPtrOutput

func (ChannelAudioNormalizationSettingsArgs) ToOutput added in v0.76.0

type ChannelAudioNormalizationSettingsInput

type ChannelAudioNormalizationSettingsInput interface {
	pulumi.Input

	ToChannelAudioNormalizationSettingsOutput() ChannelAudioNormalizationSettingsOutput
	ToChannelAudioNormalizationSettingsOutputWithContext(context.Context) ChannelAudioNormalizationSettingsOutput
}

ChannelAudioNormalizationSettingsInput is an input type that accepts ChannelAudioNormalizationSettingsArgs and ChannelAudioNormalizationSettingsOutput values. You can construct a concrete instance of `ChannelAudioNormalizationSettingsInput` via:

ChannelAudioNormalizationSettingsArgs{...}

type ChannelAudioNormalizationSettingsOutput

type ChannelAudioNormalizationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelAudioNormalizationSettingsOutput) Algorithm

func (ChannelAudioNormalizationSettingsOutput) AlgorithmControl

func (ChannelAudioNormalizationSettingsOutput) ElementType

func (ChannelAudioNormalizationSettingsOutput) TargetLkfs

func (ChannelAudioNormalizationSettingsOutput) ToChannelAudioNormalizationSettingsOutput

func (o ChannelAudioNormalizationSettingsOutput) ToChannelAudioNormalizationSettingsOutput() ChannelAudioNormalizationSettingsOutput

func (ChannelAudioNormalizationSettingsOutput) ToChannelAudioNormalizationSettingsOutputWithContext

func (o ChannelAudioNormalizationSettingsOutput) ToChannelAudioNormalizationSettingsOutputWithContext(ctx context.Context) ChannelAudioNormalizationSettingsOutput

func (ChannelAudioNormalizationSettingsOutput) ToChannelAudioNormalizationSettingsPtrOutput

func (o ChannelAudioNormalizationSettingsOutput) ToChannelAudioNormalizationSettingsPtrOutput() ChannelAudioNormalizationSettingsPtrOutput

func (ChannelAudioNormalizationSettingsOutput) ToChannelAudioNormalizationSettingsPtrOutputWithContext

func (o ChannelAudioNormalizationSettingsOutput) ToChannelAudioNormalizationSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioNormalizationSettingsPtrOutput

func (ChannelAudioNormalizationSettingsOutput) ToOutput added in v0.76.0

type ChannelAudioNormalizationSettingsPtrInput

type ChannelAudioNormalizationSettingsPtrInput interface {
	pulumi.Input

	ToChannelAudioNormalizationSettingsPtrOutput() ChannelAudioNormalizationSettingsPtrOutput
	ToChannelAudioNormalizationSettingsPtrOutputWithContext(context.Context) ChannelAudioNormalizationSettingsPtrOutput
}

ChannelAudioNormalizationSettingsPtrInput is an input type that accepts ChannelAudioNormalizationSettingsArgs, ChannelAudioNormalizationSettingsPtr and ChannelAudioNormalizationSettingsPtrOutput values. You can construct a concrete instance of `ChannelAudioNormalizationSettingsPtrInput` via:

        ChannelAudioNormalizationSettingsArgs{...}

or:

        nil

type ChannelAudioNormalizationSettingsPtrOutput

type ChannelAudioNormalizationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAudioNormalizationSettingsPtrOutput) Algorithm

func (ChannelAudioNormalizationSettingsPtrOutput) AlgorithmControl

func (ChannelAudioNormalizationSettingsPtrOutput) Elem

func (ChannelAudioNormalizationSettingsPtrOutput) ElementType

func (ChannelAudioNormalizationSettingsPtrOutput) TargetLkfs

func (ChannelAudioNormalizationSettingsPtrOutput) ToChannelAudioNormalizationSettingsPtrOutput

func (o ChannelAudioNormalizationSettingsPtrOutput) ToChannelAudioNormalizationSettingsPtrOutput() ChannelAudioNormalizationSettingsPtrOutput

func (ChannelAudioNormalizationSettingsPtrOutput) ToChannelAudioNormalizationSettingsPtrOutputWithContext

func (o ChannelAudioNormalizationSettingsPtrOutput) ToChannelAudioNormalizationSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioNormalizationSettingsPtrOutput

func (ChannelAudioNormalizationSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelAudioOnlyHlsSettings

type ChannelAudioOnlyHlsSettings struct {
	AudioGroupId   *string               `pulumi:"audioGroupId"`
	AudioOnlyImage *ChannelInputLocation `pulumi:"audioOnlyImage"`
	AudioTrackType *string               `pulumi:"audioTrackType"`
	SegmentType    *string               `pulumi:"segmentType"`
}

type ChannelAudioOnlyHlsSettingsArgs

type ChannelAudioOnlyHlsSettingsArgs struct {
	AudioGroupId   pulumi.StringPtrInput        `pulumi:"audioGroupId"`
	AudioOnlyImage ChannelInputLocationPtrInput `pulumi:"audioOnlyImage"`
	AudioTrackType pulumi.StringPtrInput        `pulumi:"audioTrackType"`
	SegmentType    pulumi.StringPtrInput        `pulumi:"segmentType"`
}

func (ChannelAudioOnlyHlsSettingsArgs) ElementType

func (ChannelAudioOnlyHlsSettingsArgs) ToChannelAudioOnlyHlsSettingsOutput

func (i ChannelAudioOnlyHlsSettingsArgs) ToChannelAudioOnlyHlsSettingsOutput() ChannelAudioOnlyHlsSettingsOutput

func (ChannelAudioOnlyHlsSettingsArgs) ToChannelAudioOnlyHlsSettingsOutputWithContext

func (i ChannelAudioOnlyHlsSettingsArgs) ToChannelAudioOnlyHlsSettingsOutputWithContext(ctx context.Context) ChannelAudioOnlyHlsSettingsOutput

func (ChannelAudioOnlyHlsSettingsArgs) ToChannelAudioOnlyHlsSettingsPtrOutput

func (i ChannelAudioOnlyHlsSettingsArgs) ToChannelAudioOnlyHlsSettingsPtrOutput() ChannelAudioOnlyHlsSettingsPtrOutput

func (ChannelAudioOnlyHlsSettingsArgs) ToChannelAudioOnlyHlsSettingsPtrOutputWithContext

func (i ChannelAudioOnlyHlsSettingsArgs) ToChannelAudioOnlyHlsSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioOnlyHlsSettingsPtrOutput

func (ChannelAudioOnlyHlsSettingsArgs) ToOutput added in v0.76.0

type ChannelAudioOnlyHlsSettingsInput

type ChannelAudioOnlyHlsSettingsInput interface {
	pulumi.Input

	ToChannelAudioOnlyHlsSettingsOutput() ChannelAudioOnlyHlsSettingsOutput
	ToChannelAudioOnlyHlsSettingsOutputWithContext(context.Context) ChannelAudioOnlyHlsSettingsOutput
}

ChannelAudioOnlyHlsSettingsInput is an input type that accepts ChannelAudioOnlyHlsSettingsArgs and ChannelAudioOnlyHlsSettingsOutput values. You can construct a concrete instance of `ChannelAudioOnlyHlsSettingsInput` via:

ChannelAudioOnlyHlsSettingsArgs{...}

type ChannelAudioOnlyHlsSettingsOutput

type ChannelAudioOnlyHlsSettingsOutput struct{ *pulumi.OutputState }

func (ChannelAudioOnlyHlsSettingsOutput) AudioGroupId

func (ChannelAudioOnlyHlsSettingsOutput) AudioOnlyImage

func (ChannelAudioOnlyHlsSettingsOutput) AudioTrackType

func (ChannelAudioOnlyHlsSettingsOutput) ElementType

func (ChannelAudioOnlyHlsSettingsOutput) SegmentType

func (ChannelAudioOnlyHlsSettingsOutput) ToChannelAudioOnlyHlsSettingsOutput

func (o ChannelAudioOnlyHlsSettingsOutput) ToChannelAudioOnlyHlsSettingsOutput() ChannelAudioOnlyHlsSettingsOutput

func (ChannelAudioOnlyHlsSettingsOutput) ToChannelAudioOnlyHlsSettingsOutputWithContext

func (o ChannelAudioOnlyHlsSettingsOutput) ToChannelAudioOnlyHlsSettingsOutputWithContext(ctx context.Context) ChannelAudioOnlyHlsSettingsOutput

func (ChannelAudioOnlyHlsSettingsOutput) ToChannelAudioOnlyHlsSettingsPtrOutput

func (o ChannelAudioOnlyHlsSettingsOutput) ToChannelAudioOnlyHlsSettingsPtrOutput() ChannelAudioOnlyHlsSettingsPtrOutput

func (ChannelAudioOnlyHlsSettingsOutput) ToChannelAudioOnlyHlsSettingsPtrOutputWithContext

func (o ChannelAudioOnlyHlsSettingsOutput) ToChannelAudioOnlyHlsSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioOnlyHlsSettingsPtrOutput

func (ChannelAudioOnlyHlsSettingsOutput) ToOutput added in v0.76.0

type ChannelAudioOnlyHlsSettingsPtrInput

type ChannelAudioOnlyHlsSettingsPtrInput interface {
	pulumi.Input

	ToChannelAudioOnlyHlsSettingsPtrOutput() ChannelAudioOnlyHlsSettingsPtrOutput
	ToChannelAudioOnlyHlsSettingsPtrOutputWithContext(context.Context) ChannelAudioOnlyHlsSettingsPtrOutput
}

ChannelAudioOnlyHlsSettingsPtrInput is an input type that accepts ChannelAudioOnlyHlsSettingsArgs, ChannelAudioOnlyHlsSettingsPtr and ChannelAudioOnlyHlsSettingsPtrOutput values. You can construct a concrete instance of `ChannelAudioOnlyHlsSettingsPtrInput` via:

        ChannelAudioOnlyHlsSettingsArgs{...}

or:

        nil

type ChannelAudioOnlyHlsSettingsPtrOutput

type ChannelAudioOnlyHlsSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAudioOnlyHlsSettingsPtrOutput) AudioGroupId

func (ChannelAudioOnlyHlsSettingsPtrOutput) AudioOnlyImage

func (ChannelAudioOnlyHlsSettingsPtrOutput) AudioTrackType

func (ChannelAudioOnlyHlsSettingsPtrOutput) Elem

func (ChannelAudioOnlyHlsSettingsPtrOutput) ElementType

func (ChannelAudioOnlyHlsSettingsPtrOutput) SegmentType

func (ChannelAudioOnlyHlsSettingsPtrOutput) ToChannelAudioOnlyHlsSettingsPtrOutput

func (o ChannelAudioOnlyHlsSettingsPtrOutput) ToChannelAudioOnlyHlsSettingsPtrOutput() ChannelAudioOnlyHlsSettingsPtrOutput

func (ChannelAudioOnlyHlsSettingsPtrOutput) ToChannelAudioOnlyHlsSettingsPtrOutputWithContext

func (o ChannelAudioOnlyHlsSettingsPtrOutput) ToChannelAudioOnlyHlsSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioOnlyHlsSettingsPtrOutput

func (ChannelAudioOnlyHlsSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelAudioPidSelection

type ChannelAudioPidSelection struct {
	Pid *int `pulumi:"pid"`
}

type ChannelAudioPidSelectionArgs

type ChannelAudioPidSelectionArgs struct {
	Pid pulumi.IntPtrInput `pulumi:"pid"`
}

func (ChannelAudioPidSelectionArgs) ElementType

func (ChannelAudioPidSelectionArgs) ToChannelAudioPidSelectionOutput

func (i ChannelAudioPidSelectionArgs) ToChannelAudioPidSelectionOutput() ChannelAudioPidSelectionOutput

func (ChannelAudioPidSelectionArgs) ToChannelAudioPidSelectionOutputWithContext

func (i ChannelAudioPidSelectionArgs) ToChannelAudioPidSelectionOutputWithContext(ctx context.Context) ChannelAudioPidSelectionOutput

func (ChannelAudioPidSelectionArgs) ToChannelAudioPidSelectionPtrOutput

func (i ChannelAudioPidSelectionArgs) ToChannelAudioPidSelectionPtrOutput() ChannelAudioPidSelectionPtrOutput

func (ChannelAudioPidSelectionArgs) ToChannelAudioPidSelectionPtrOutputWithContext

func (i ChannelAudioPidSelectionArgs) ToChannelAudioPidSelectionPtrOutputWithContext(ctx context.Context) ChannelAudioPidSelectionPtrOutput

func (ChannelAudioPidSelectionArgs) ToOutput added in v0.76.0

type ChannelAudioPidSelectionInput

type ChannelAudioPidSelectionInput interface {
	pulumi.Input

	ToChannelAudioPidSelectionOutput() ChannelAudioPidSelectionOutput
	ToChannelAudioPidSelectionOutputWithContext(context.Context) ChannelAudioPidSelectionOutput
}

ChannelAudioPidSelectionInput is an input type that accepts ChannelAudioPidSelectionArgs and ChannelAudioPidSelectionOutput values. You can construct a concrete instance of `ChannelAudioPidSelectionInput` via:

ChannelAudioPidSelectionArgs{...}

type ChannelAudioPidSelectionOutput

type ChannelAudioPidSelectionOutput struct{ *pulumi.OutputState }

func (ChannelAudioPidSelectionOutput) ElementType

func (ChannelAudioPidSelectionOutput) Pid

func (ChannelAudioPidSelectionOutput) ToChannelAudioPidSelectionOutput

func (o ChannelAudioPidSelectionOutput) ToChannelAudioPidSelectionOutput() ChannelAudioPidSelectionOutput

func (ChannelAudioPidSelectionOutput) ToChannelAudioPidSelectionOutputWithContext

func (o ChannelAudioPidSelectionOutput) ToChannelAudioPidSelectionOutputWithContext(ctx context.Context) ChannelAudioPidSelectionOutput

func (ChannelAudioPidSelectionOutput) ToChannelAudioPidSelectionPtrOutput

func (o ChannelAudioPidSelectionOutput) ToChannelAudioPidSelectionPtrOutput() ChannelAudioPidSelectionPtrOutput

func (ChannelAudioPidSelectionOutput) ToChannelAudioPidSelectionPtrOutputWithContext

func (o ChannelAudioPidSelectionOutput) ToChannelAudioPidSelectionPtrOutputWithContext(ctx context.Context) ChannelAudioPidSelectionPtrOutput

func (ChannelAudioPidSelectionOutput) ToOutput added in v0.76.0

type ChannelAudioPidSelectionPtrInput

type ChannelAudioPidSelectionPtrInput interface {
	pulumi.Input

	ToChannelAudioPidSelectionPtrOutput() ChannelAudioPidSelectionPtrOutput
	ToChannelAudioPidSelectionPtrOutputWithContext(context.Context) ChannelAudioPidSelectionPtrOutput
}

ChannelAudioPidSelectionPtrInput is an input type that accepts ChannelAudioPidSelectionArgs, ChannelAudioPidSelectionPtr and ChannelAudioPidSelectionPtrOutput values. You can construct a concrete instance of `ChannelAudioPidSelectionPtrInput` via:

        ChannelAudioPidSelectionArgs{...}

or:

        nil

type ChannelAudioPidSelectionPtrOutput

type ChannelAudioPidSelectionPtrOutput struct{ *pulumi.OutputState }

func (ChannelAudioPidSelectionPtrOutput) Elem

func (ChannelAudioPidSelectionPtrOutput) ElementType

func (ChannelAudioPidSelectionPtrOutput) Pid

func (ChannelAudioPidSelectionPtrOutput) ToChannelAudioPidSelectionPtrOutput

func (o ChannelAudioPidSelectionPtrOutput) ToChannelAudioPidSelectionPtrOutput() ChannelAudioPidSelectionPtrOutput

func (ChannelAudioPidSelectionPtrOutput) ToChannelAudioPidSelectionPtrOutputWithContext

func (o ChannelAudioPidSelectionPtrOutput) ToChannelAudioPidSelectionPtrOutputWithContext(ctx context.Context) ChannelAudioPidSelectionPtrOutput

func (ChannelAudioPidSelectionPtrOutput) ToOutput added in v0.76.0

type ChannelAudioSelector

type ChannelAudioSelector struct {
	Name             *string                       `pulumi:"name"`
	SelectorSettings *ChannelAudioSelectorSettings `pulumi:"selectorSettings"`
}

type ChannelAudioSelectorArgs

type ChannelAudioSelectorArgs struct {
	Name             pulumi.StringPtrInput                `pulumi:"name"`
	SelectorSettings ChannelAudioSelectorSettingsPtrInput `pulumi:"selectorSettings"`
}

func (ChannelAudioSelectorArgs) ElementType

func (ChannelAudioSelectorArgs) ElementType() reflect.Type

func (ChannelAudioSelectorArgs) ToChannelAudioSelectorOutput

func (i ChannelAudioSelectorArgs) ToChannelAudioSelectorOutput() ChannelAudioSelectorOutput

func (ChannelAudioSelectorArgs) ToChannelAudioSelectorOutputWithContext

func (i ChannelAudioSelectorArgs) ToChannelAudioSelectorOutputWithContext(ctx context.Context) ChannelAudioSelectorOutput

func (ChannelAudioSelectorArgs) ToOutput added in v0.76.0

type ChannelAudioSelectorArray

type ChannelAudioSelectorArray []ChannelAudioSelectorInput

func (ChannelAudioSelectorArray) ElementType

func (ChannelAudioSelectorArray) ElementType() reflect.Type

func (ChannelAudioSelectorArray) ToChannelAudioSelectorArrayOutput

func (i ChannelAudioSelectorArray) ToChannelAudioSelectorArrayOutput() ChannelAudioSelectorArrayOutput

func (ChannelAudioSelectorArray) ToChannelAudioSelectorArrayOutputWithContext

func (i ChannelAudioSelectorArray) ToChannelAudioSelectorArrayOutputWithContext(ctx context.Context) ChannelAudioSelectorArrayOutput

func (ChannelAudioSelectorArray) ToOutput added in v0.76.0

type ChannelAudioSelectorArrayInput

type ChannelAudioSelectorArrayInput interface {
	pulumi.Input

	ToChannelAudioSelectorArrayOutput() ChannelAudioSelectorArrayOutput
	ToChannelAudioSelectorArrayOutputWithContext(context.Context) ChannelAudioSelectorArrayOutput
}

ChannelAudioSelectorArrayInput is an input type that accepts ChannelAudioSelectorArray and ChannelAudioSelectorArrayOutput values. You can construct a concrete instance of `ChannelAudioSelectorArrayInput` via:

ChannelAudioSelectorArray{ ChannelAudioSelectorArgs{...} }

type ChannelAudioSelectorArrayOutput

type ChannelAudioSelectorArrayOutput struct{ *pulumi.OutputState }

func (ChannelAudioSelectorArrayOutput) ElementType

func (ChannelAudioSelectorArrayOutput) Index

func (ChannelAudioSelectorArrayOutput) ToChannelAudioSelectorArrayOutput

func (o ChannelAudioSelectorArrayOutput) ToChannelAudioSelectorArrayOutput() ChannelAudioSelectorArrayOutput

func (ChannelAudioSelectorArrayOutput) ToChannelAudioSelectorArrayOutputWithContext

func (o ChannelAudioSelectorArrayOutput) ToChannelAudioSelectorArrayOutputWithContext(ctx context.Context) ChannelAudioSelectorArrayOutput

func (ChannelAudioSelectorArrayOutput) ToOutput added in v0.76.0

type ChannelAudioSelectorInput

type ChannelAudioSelectorInput interface {
	pulumi.Input

	ToChannelAudioSelectorOutput() ChannelAudioSelectorOutput
	ToChannelAudioSelectorOutputWithContext(context.Context) ChannelAudioSelectorOutput
}

ChannelAudioSelectorInput is an input type that accepts ChannelAudioSelectorArgs and ChannelAudioSelectorOutput values. You can construct a concrete instance of `ChannelAudioSelectorInput` via:

ChannelAudioSelectorArgs{...}

type ChannelAudioSelectorOutput

type ChannelAudioSelectorOutput struct{ *pulumi.OutputState }

func (ChannelAudioSelectorOutput) ElementType

func (ChannelAudioSelectorOutput) ElementType() reflect.Type

func (ChannelAudioSelectorOutput) Name

func (ChannelAudioSelectorOutput) SelectorSettings

func (ChannelAudioSelectorOutput) ToChannelAudioSelectorOutput

func (o ChannelAudioSelectorOutput) ToChannelAudioSelectorOutput() ChannelAudioSelectorOutput

func (ChannelAudioSelectorOutput) ToChannelAudioSelectorOutputWithContext

func (o ChannelAudioSelectorOutput) ToChannelAudioSelectorOutputWithContext(ctx context.Context) ChannelAudioSelectorOutput

func (ChannelAudioSelectorOutput) ToOutput added in v0.76.0

type ChannelAudioSelectorSettings

type ChannelAudioSelectorSettings struct {
	AudioHlsRenditionSelection *ChannelAudioHlsRenditionSelection `pulumi:"audioHlsRenditionSelection"`
	AudioLanguageSelection     *ChannelAudioLanguageSelection     `pulumi:"audioLanguageSelection"`
	AudioPidSelection          *ChannelAudioPidSelection          `pulumi:"audioPidSelection"`
	AudioTrackSelection        *ChannelAudioTrackSelection        `pulumi:"audioTrackSelection"`
}

type ChannelAudioSelectorSettingsArgs

type ChannelAudioSelectorSettingsArgs struct {
	AudioHlsRenditionSelection ChannelAudioHlsRenditionSelectionPtrInput `pulumi:"audioHlsRenditionSelection"`
	AudioLanguageSelection     ChannelAudioLanguageSelectionPtrInput     `pulumi:"audioLanguageSelection"`
	AudioPidSelection          ChannelAudioPidSelectionPtrInput          `pulumi:"audioPidSelection"`
	AudioTrackSelection        ChannelAudioTrackSelectionPtrInput        `pulumi:"audioTrackSelection"`
}

func (ChannelAudioSelectorSettingsArgs) ElementType

func (ChannelAudioSelectorSettingsArgs) ToChannelAudioSelectorSettingsOutput

func (i ChannelAudioSelectorSettingsArgs) ToChannelAudioSelectorSettingsOutput() ChannelAudioSelectorSettingsOutput

func (ChannelAudioSelectorSettingsArgs) ToChannelAudioSelectorSettingsOutputWithContext

func (i ChannelAudioSelectorSettingsArgs) ToChannelAudioSelectorSettingsOutputWithContext(ctx context.Context) ChannelAudioSelectorSettingsOutput

func (ChannelAudioSelectorSettingsArgs) ToChannelAudioSelectorSettingsPtrOutput

func (i ChannelAudioSelectorSettingsArgs) ToChannelAudioSelectorSettingsPtrOutput() ChannelAudioSelectorSettingsPtrOutput

func (ChannelAudioSelectorSettingsArgs) ToChannelAudioSelectorSettingsPtrOutputWithContext

func (i ChannelAudioSelectorSettingsArgs) ToChannelAudioSelectorSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioSelectorSettingsPtrOutput

func (ChannelAudioSelectorSettingsArgs) ToOutput added in v0.76.0

type ChannelAudioSelectorSettingsInput

type ChannelAudioSelectorSettingsInput interface {
	pulumi.Input

	ToChannelAudioSelectorSettingsOutput() ChannelAudioSelectorSettingsOutput
	ToChannelAudioSelectorSettingsOutputWithContext(context.Context) ChannelAudioSelectorSettingsOutput
}

ChannelAudioSelectorSettingsInput is an input type that accepts ChannelAudioSelectorSettingsArgs and ChannelAudioSelectorSettingsOutput values. You can construct a concrete instance of `ChannelAudioSelectorSettingsInput` via:

ChannelAudioSelectorSettingsArgs{...}

type ChannelAudioSelectorSettingsOutput

type ChannelAudioSelectorSettingsOutput struct{ *pulumi.OutputState }

func (ChannelAudioSelectorSettingsOutput) AudioHlsRenditionSelection added in v0.9.0

func (ChannelAudioSelectorSettingsOutput) AudioLanguageSelection

func (ChannelAudioSelectorSettingsOutput) AudioPidSelection

func (ChannelAudioSelectorSettingsOutput) AudioTrackSelection

func (ChannelAudioSelectorSettingsOutput) ElementType

func (ChannelAudioSelectorSettingsOutput) ToChannelAudioSelectorSettingsOutput

func (o ChannelAudioSelectorSettingsOutput) ToChannelAudioSelectorSettingsOutput() ChannelAudioSelectorSettingsOutput

func (ChannelAudioSelectorSettingsOutput) ToChannelAudioSelectorSettingsOutputWithContext

func (o ChannelAudioSelectorSettingsOutput) ToChannelAudioSelectorSettingsOutputWithContext(ctx context.Context) ChannelAudioSelectorSettingsOutput

func (ChannelAudioSelectorSettingsOutput) ToChannelAudioSelectorSettingsPtrOutput

func (o ChannelAudioSelectorSettingsOutput) ToChannelAudioSelectorSettingsPtrOutput() ChannelAudioSelectorSettingsPtrOutput

func (ChannelAudioSelectorSettingsOutput) ToChannelAudioSelectorSettingsPtrOutputWithContext

func (o ChannelAudioSelectorSettingsOutput) ToChannelAudioSelectorSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioSelectorSettingsPtrOutput

func (ChannelAudioSelectorSettingsOutput) ToOutput added in v0.76.0

type ChannelAudioSelectorSettingsPtrInput

type ChannelAudioSelectorSettingsPtrInput interface {
	pulumi.Input

	ToChannelAudioSelectorSettingsPtrOutput() ChannelAudioSelectorSettingsPtrOutput
	ToChannelAudioSelectorSettingsPtrOutputWithContext(context.Context) ChannelAudioSelectorSettingsPtrOutput
}

ChannelAudioSelectorSettingsPtrInput is an input type that accepts ChannelAudioSelectorSettingsArgs, ChannelAudioSelectorSettingsPtr and ChannelAudioSelectorSettingsPtrOutput values. You can construct a concrete instance of `ChannelAudioSelectorSettingsPtrInput` via:

        ChannelAudioSelectorSettingsArgs{...}

or:

        nil

type ChannelAudioSelectorSettingsPtrOutput

type ChannelAudioSelectorSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAudioSelectorSettingsPtrOutput) AudioHlsRenditionSelection added in v0.9.0

func (ChannelAudioSelectorSettingsPtrOutput) AudioLanguageSelection

func (ChannelAudioSelectorSettingsPtrOutput) AudioPidSelection

func (ChannelAudioSelectorSettingsPtrOutput) AudioTrackSelection

func (ChannelAudioSelectorSettingsPtrOutput) Elem

func (ChannelAudioSelectorSettingsPtrOutput) ElementType

func (ChannelAudioSelectorSettingsPtrOutput) ToChannelAudioSelectorSettingsPtrOutput

func (o ChannelAudioSelectorSettingsPtrOutput) ToChannelAudioSelectorSettingsPtrOutput() ChannelAudioSelectorSettingsPtrOutput

func (ChannelAudioSelectorSettingsPtrOutput) ToChannelAudioSelectorSettingsPtrOutputWithContext

func (o ChannelAudioSelectorSettingsPtrOutput) ToChannelAudioSelectorSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioSelectorSettingsPtrOutput

func (ChannelAudioSelectorSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelAudioSilenceFailoverSettings

type ChannelAudioSilenceFailoverSettings struct {
	AudioSelectorName         *string `pulumi:"audioSelectorName"`
	AudioSilenceThresholdMsec *int    `pulumi:"audioSilenceThresholdMsec"`
}

type ChannelAudioSilenceFailoverSettingsArgs

type ChannelAudioSilenceFailoverSettingsArgs struct {
	AudioSelectorName         pulumi.StringPtrInput `pulumi:"audioSelectorName"`
	AudioSilenceThresholdMsec pulumi.IntPtrInput    `pulumi:"audioSilenceThresholdMsec"`
}

func (ChannelAudioSilenceFailoverSettingsArgs) ElementType

func (ChannelAudioSilenceFailoverSettingsArgs) ToChannelAudioSilenceFailoverSettingsOutput

func (i ChannelAudioSilenceFailoverSettingsArgs) ToChannelAudioSilenceFailoverSettingsOutput() ChannelAudioSilenceFailoverSettingsOutput

func (ChannelAudioSilenceFailoverSettingsArgs) ToChannelAudioSilenceFailoverSettingsOutputWithContext

func (i ChannelAudioSilenceFailoverSettingsArgs) ToChannelAudioSilenceFailoverSettingsOutputWithContext(ctx context.Context) ChannelAudioSilenceFailoverSettingsOutput

func (ChannelAudioSilenceFailoverSettingsArgs) ToChannelAudioSilenceFailoverSettingsPtrOutput

func (i ChannelAudioSilenceFailoverSettingsArgs) ToChannelAudioSilenceFailoverSettingsPtrOutput() ChannelAudioSilenceFailoverSettingsPtrOutput

func (ChannelAudioSilenceFailoverSettingsArgs) ToChannelAudioSilenceFailoverSettingsPtrOutputWithContext

func (i ChannelAudioSilenceFailoverSettingsArgs) ToChannelAudioSilenceFailoverSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioSilenceFailoverSettingsPtrOutput

func (ChannelAudioSilenceFailoverSettingsArgs) ToOutput added in v0.76.0

type ChannelAudioSilenceFailoverSettingsInput

type ChannelAudioSilenceFailoverSettingsInput interface {
	pulumi.Input

	ToChannelAudioSilenceFailoverSettingsOutput() ChannelAudioSilenceFailoverSettingsOutput
	ToChannelAudioSilenceFailoverSettingsOutputWithContext(context.Context) ChannelAudioSilenceFailoverSettingsOutput
}

ChannelAudioSilenceFailoverSettingsInput is an input type that accepts ChannelAudioSilenceFailoverSettingsArgs and ChannelAudioSilenceFailoverSettingsOutput values. You can construct a concrete instance of `ChannelAudioSilenceFailoverSettingsInput` via:

ChannelAudioSilenceFailoverSettingsArgs{...}

type ChannelAudioSilenceFailoverSettingsOutput

type ChannelAudioSilenceFailoverSettingsOutput struct{ *pulumi.OutputState }

func (ChannelAudioSilenceFailoverSettingsOutput) AudioSelectorName

func (ChannelAudioSilenceFailoverSettingsOutput) AudioSilenceThresholdMsec

func (o ChannelAudioSilenceFailoverSettingsOutput) AudioSilenceThresholdMsec() pulumi.IntPtrOutput

func (ChannelAudioSilenceFailoverSettingsOutput) ElementType

func (ChannelAudioSilenceFailoverSettingsOutput) ToChannelAudioSilenceFailoverSettingsOutput

func (o ChannelAudioSilenceFailoverSettingsOutput) ToChannelAudioSilenceFailoverSettingsOutput() ChannelAudioSilenceFailoverSettingsOutput

func (ChannelAudioSilenceFailoverSettingsOutput) ToChannelAudioSilenceFailoverSettingsOutputWithContext

func (o ChannelAudioSilenceFailoverSettingsOutput) ToChannelAudioSilenceFailoverSettingsOutputWithContext(ctx context.Context) ChannelAudioSilenceFailoverSettingsOutput

func (ChannelAudioSilenceFailoverSettingsOutput) ToChannelAudioSilenceFailoverSettingsPtrOutput

func (o ChannelAudioSilenceFailoverSettingsOutput) ToChannelAudioSilenceFailoverSettingsPtrOutput() ChannelAudioSilenceFailoverSettingsPtrOutput

func (ChannelAudioSilenceFailoverSettingsOutput) ToChannelAudioSilenceFailoverSettingsPtrOutputWithContext

func (o ChannelAudioSilenceFailoverSettingsOutput) ToChannelAudioSilenceFailoverSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioSilenceFailoverSettingsPtrOutput

func (ChannelAudioSilenceFailoverSettingsOutput) ToOutput added in v0.76.0

type ChannelAudioSilenceFailoverSettingsPtrInput

type ChannelAudioSilenceFailoverSettingsPtrInput interface {
	pulumi.Input

	ToChannelAudioSilenceFailoverSettingsPtrOutput() ChannelAudioSilenceFailoverSettingsPtrOutput
	ToChannelAudioSilenceFailoverSettingsPtrOutputWithContext(context.Context) ChannelAudioSilenceFailoverSettingsPtrOutput
}

ChannelAudioSilenceFailoverSettingsPtrInput is an input type that accepts ChannelAudioSilenceFailoverSettingsArgs, ChannelAudioSilenceFailoverSettingsPtr and ChannelAudioSilenceFailoverSettingsPtrOutput values. You can construct a concrete instance of `ChannelAudioSilenceFailoverSettingsPtrInput` via:

        ChannelAudioSilenceFailoverSettingsArgs{...}

or:

        nil

type ChannelAudioSilenceFailoverSettingsPtrOutput

type ChannelAudioSilenceFailoverSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAudioSilenceFailoverSettingsPtrOutput) AudioSelectorName

func (ChannelAudioSilenceFailoverSettingsPtrOutput) AudioSilenceThresholdMsec

func (ChannelAudioSilenceFailoverSettingsPtrOutput) Elem

func (ChannelAudioSilenceFailoverSettingsPtrOutput) ElementType

func (ChannelAudioSilenceFailoverSettingsPtrOutput) ToChannelAudioSilenceFailoverSettingsPtrOutput

func (o ChannelAudioSilenceFailoverSettingsPtrOutput) ToChannelAudioSilenceFailoverSettingsPtrOutput() ChannelAudioSilenceFailoverSettingsPtrOutput

func (ChannelAudioSilenceFailoverSettingsPtrOutput) ToChannelAudioSilenceFailoverSettingsPtrOutputWithContext

func (o ChannelAudioSilenceFailoverSettingsPtrOutput) ToChannelAudioSilenceFailoverSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioSilenceFailoverSettingsPtrOutput

func (ChannelAudioSilenceFailoverSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelAudioTrack

type ChannelAudioTrack struct {
	Track *int `pulumi:"track"`
}

type ChannelAudioTrackArgs

type ChannelAudioTrackArgs struct {
	Track pulumi.IntPtrInput `pulumi:"track"`
}

func (ChannelAudioTrackArgs) ElementType

func (ChannelAudioTrackArgs) ElementType() reflect.Type

func (ChannelAudioTrackArgs) ToChannelAudioTrackOutput

func (i ChannelAudioTrackArgs) ToChannelAudioTrackOutput() ChannelAudioTrackOutput

func (ChannelAudioTrackArgs) ToChannelAudioTrackOutputWithContext

func (i ChannelAudioTrackArgs) ToChannelAudioTrackOutputWithContext(ctx context.Context) ChannelAudioTrackOutput

func (ChannelAudioTrackArgs) ToOutput added in v0.76.0

type ChannelAudioTrackArray

type ChannelAudioTrackArray []ChannelAudioTrackInput

func (ChannelAudioTrackArray) ElementType

func (ChannelAudioTrackArray) ElementType() reflect.Type

func (ChannelAudioTrackArray) ToChannelAudioTrackArrayOutput

func (i ChannelAudioTrackArray) ToChannelAudioTrackArrayOutput() ChannelAudioTrackArrayOutput

func (ChannelAudioTrackArray) ToChannelAudioTrackArrayOutputWithContext

func (i ChannelAudioTrackArray) ToChannelAudioTrackArrayOutputWithContext(ctx context.Context) ChannelAudioTrackArrayOutput

func (ChannelAudioTrackArray) ToOutput added in v0.76.0

type ChannelAudioTrackArrayInput

type ChannelAudioTrackArrayInput interface {
	pulumi.Input

	ToChannelAudioTrackArrayOutput() ChannelAudioTrackArrayOutput
	ToChannelAudioTrackArrayOutputWithContext(context.Context) ChannelAudioTrackArrayOutput
}

ChannelAudioTrackArrayInput is an input type that accepts ChannelAudioTrackArray and ChannelAudioTrackArrayOutput values. You can construct a concrete instance of `ChannelAudioTrackArrayInput` via:

ChannelAudioTrackArray{ ChannelAudioTrackArgs{...} }

type ChannelAudioTrackArrayOutput

type ChannelAudioTrackArrayOutput struct{ *pulumi.OutputState }

func (ChannelAudioTrackArrayOutput) ElementType

func (ChannelAudioTrackArrayOutput) Index

func (ChannelAudioTrackArrayOutput) ToChannelAudioTrackArrayOutput

func (o ChannelAudioTrackArrayOutput) ToChannelAudioTrackArrayOutput() ChannelAudioTrackArrayOutput

func (ChannelAudioTrackArrayOutput) ToChannelAudioTrackArrayOutputWithContext

func (o ChannelAudioTrackArrayOutput) ToChannelAudioTrackArrayOutputWithContext(ctx context.Context) ChannelAudioTrackArrayOutput

func (ChannelAudioTrackArrayOutput) ToOutput added in v0.76.0

type ChannelAudioTrackInput

type ChannelAudioTrackInput interface {
	pulumi.Input

	ToChannelAudioTrackOutput() ChannelAudioTrackOutput
	ToChannelAudioTrackOutputWithContext(context.Context) ChannelAudioTrackOutput
}

ChannelAudioTrackInput is an input type that accepts ChannelAudioTrackArgs and ChannelAudioTrackOutput values. You can construct a concrete instance of `ChannelAudioTrackInput` via:

ChannelAudioTrackArgs{...}

type ChannelAudioTrackOutput

type ChannelAudioTrackOutput struct{ *pulumi.OutputState }

func (ChannelAudioTrackOutput) ElementType

func (ChannelAudioTrackOutput) ElementType() reflect.Type

func (ChannelAudioTrackOutput) ToChannelAudioTrackOutput

func (o ChannelAudioTrackOutput) ToChannelAudioTrackOutput() ChannelAudioTrackOutput

func (ChannelAudioTrackOutput) ToChannelAudioTrackOutputWithContext

func (o ChannelAudioTrackOutput) ToChannelAudioTrackOutputWithContext(ctx context.Context) ChannelAudioTrackOutput

func (ChannelAudioTrackOutput) ToOutput added in v0.76.0

func (ChannelAudioTrackOutput) Track

type ChannelAudioTrackSelection

type ChannelAudioTrackSelection struct {
	DolbyEDecode *ChannelAudioDolbyEDecode `pulumi:"dolbyEDecode"`
	Tracks       []ChannelAudioTrack       `pulumi:"tracks"`
}

type ChannelAudioTrackSelectionArgs

type ChannelAudioTrackSelectionArgs struct {
	DolbyEDecode ChannelAudioDolbyEDecodePtrInput `pulumi:"dolbyEDecode"`
	Tracks       ChannelAudioTrackArrayInput      `pulumi:"tracks"`
}

func (ChannelAudioTrackSelectionArgs) ElementType

func (ChannelAudioTrackSelectionArgs) ToChannelAudioTrackSelectionOutput

func (i ChannelAudioTrackSelectionArgs) ToChannelAudioTrackSelectionOutput() ChannelAudioTrackSelectionOutput

func (ChannelAudioTrackSelectionArgs) ToChannelAudioTrackSelectionOutputWithContext

func (i ChannelAudioTrackSelectionArgs) ToChannelAudioTrackSelectionOutputWithContext(ctx context.Context) ChannelAudioTrackSelectionOutput

func (ChannelAudioTrackSelectionArgs) ToChannelAudioTrackSelectionPtrOutput

func (i ChannelAudioTrackSelectionArgs) ToChannelAudioTrackSelectionPtrOutput() ChannelAudioTrackSelectionPtrOutput

func (ChannelAudioTrackSelectionArgs) ToChannelAudioTrackSelectionPtrOutputWithContext

func (i ChannelAudioTrackSelectionArgs) ToChannelAudioTrackSelectionPtrOutputWithContext(ctx context.Context) ChannelAudioTrackSelectionPtrOutput

func (ChannelAudioTrackSelectionArgs) ToOutput added in v0.76.0

type ChannelAudioTrackSelectionInput

type ChannelAudioTrackSelectionInput interface {
	pulumi.Input

	ToChannelAudioTrackSelectionOutput() ChannelAudioTrackSelectionOutput
	ToChannelAudioTrackSelectionOutputWithContext(context.Context) ChannelAudioTrackSelectionOutput
}

ChannelAudioTrackSelectionInput is an input type that accepts ChannelAudioTrackSelectionArgs and ChannelAudioTrackSelectionOutput values. You can construct a concrete instance of `ChannelAudioTrackSelectionInput` via:

ChannelAudioTrackSelectionArgs{...}

type ChannelAudioTrackSelectionOutput

type ChannelAudioTrackSelectionOutput struct{ *pulumi.OutputState }

func (ChannelAudioTrackSelectionOutput) DolbyEDecode added in v0.59.0

func (ChannelAudioTrackSelectionOutput) ElementType

func (ChannelAudioTrackSelectionOutput) ToChannelAudioTrackSelectionOutput

func (o ChannelAudioTrackSelectionOutput) ToChannelAudioTrackSelectionOutput() ChannelAudioTrackSelectionOutput

func (ChannelAudioTrackSelectionOutput) ToChannelAudioTrackSelectionOutputWithContext

func (o ChannelAudioTrackSelectionOutput) ToChannelAudioTrackSelectionOutputWithContext(ctx context.Context) ChannelAudioTrackSelectionOutput

func (ChannelAudioTrackSelectionOutput) ToChannelAudioTrackSelectionPtrOutput

func (o ChannelAudioTrackSelectionOutput) ToChannelAudioTrackSelectionPtrOutput() ChannelAudioTrackSelectionPtrOutput

func (ChannelAudioTrackSelectionOutput) ToChannelAudioTrackSelectionPtrOutputWithContext

func (o ChannelAudioTrackSelectionOutput) ToChannelAudioTrackSelectionPtrOutputWithContext(ctx context.Context) ChannelAudioTrackSelectionPtrOutput

func (ChannelAudioTrackSelectionOutput) ToOutput added in v0.76.0

func (ChannelAudioTrackSelectionOutput) Tracks

type ChannelAudioTrackSelectionPtrInput

type ChannelAudioTrackSelectionPtrInput interface {
	pulumi.Input

	ToChannelAudioTrackSelectionPtrOutput() ChannelAudioTrackSelectionPtrOutput
	ToChannelAudioTrackSelectionPtrOutputWithContext(context.Context) ChannelAudioTrackSelectionPtrOutput
}

ChannelAudioTrackSelectionPtrInput is an input type that accepts ChannelAudioTrackSelectionArgs, ChannelAudioTrackSelectionPtr and ChannelAudioTrackSelectionPtrOutput values. You can construct a concrete instance of `ChannelAudioTrackSelectionPtrInput` via:

        ChannelAudioTrackSelectionArgs{...}

or:

        nil

type ChannelAudioTrackSelectionPtrOutput

type ChannelAudioTrackSelectionPtrOutput struct{ *pulumi.OutputState }

func (ChannelAudioTrackSelectionPtrOutput) DolbyEDecode added in v0.59.0

func (ChannelAudioTrackSelectionPtrOutput) Elem

func (ChannelAudioTrackSelectionPtrOutput) ElementType

func (ChannelAudioTrackSelectionPtrOutput) ToChannelAudioTrackSelectionPtrOutput

func (o ChannelAudioTrackSelectionPtrOutput) ToChannelAudioTrackSelectionPtrOutput() ChannelAudioTrackSelectionPtrOutput

func (ChannelAudioTrackSelectionPtrOutput) ToChannelAudioTrackSelectionPtrOutputWithContext

func (o ChannelAudioTrackSelectionPtrOutput) ToChannelAudioTrackSelectionPtrOutputWithContext(ctx context.Context) ChannelAudioTrackSelectionPtrOutput

func (ChannelAudioTrackSelectionPtrOutput) ToOutput added in v0.76.0

func (ChannelAudioTrackSelectionPtrOutput) Tracks

type ChannelAudioWatermarkSettings added in v0.9.0

type ChannelAudioWatermarkSettings struct {
	NielsenWatermarksSettings *ChannelNielsenWatermarksSettings `pulumi:"nielsenWatermarksSettings"`
}

type ChannelAudioWatermarkSettingsArgs added in v0.9.0

type ChannelAudioWatermarkSettingsArgs struct {
	NielsenWatermarksSettings ChannelNielsenWatermarksSettingsPtrInput `pulumi:"nielsenWatermarksSettings"`
}

func (ChannelAudioWatermarkSettingsArgs) ElementType added in v0.9.0

func (ChannelAudioWatermarkSettingsArgs) ToChannelAudioWatermarkSettingsOutput added in v0.9.0

func (i ChannelAudioWatermarkSettingsArgs) ToChannelAudioWatermarkSettingsOutput() ChannelAudioWatermarkSettingsOutput

func (ChannelAudioWatermarkSettingsArgs) ToChannelAudioWatermarkSettingsOutputWithContext added in v0.9.0

func (i ChannelAudioWatermarkSettingsArgs) ToChannelAudioWatermarkSettingsOutputWithContext(ctx context.Context) ChannelAudioWatermarkSettingsOutput

func (ChannelAudioWatermarkSettingsArgs) ToChannelAudioWatermarkSettingsPtrOutput added in v0.9.0

func (i ChannelAudioWatermarkSettingsArgs) ToChannelAudioWatermarkSettingsPtrOutput() ChannelAudioWatermarkSettingsPtrOutput

func (ChannelAudioWatermarkSettingsArgs) ToChannelAudioWatermarkSettingsPtrOutputWithContext added in v0.9.0

func (i ChannelAudioWatermarkSettingsArgs) ToChannelAudioWatermarkSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioWatermarkSettingsPtrOutput

func (ChannelAudioWatermarkSettingsArgs) ToOutput added in v0.76.0

type ChannelAudioWatermarkSettingsInput added in v0.9.0

type ChannelAudioWatermarkSettingsInput interface {
	pulumi.Input

	ToChannelAudioWatermarkSettingsOutput() ChannelAudioWatermarkSettingsOutput
	ToChannelAudioWatermarkSettingsOutputWithContext(context.Context) ChannelAudioWatermarkSettingsOutput
}

ChannelAudioWatermarkSettingsInput is an input type that accepts ChannelAudioWatermarkSettingsArgs and ChannelAudioWatermarkSettingsOutput values. You can construct a concrete instance of `ChannelAudioWatermarkSettingsInput` via:

ChannelAudioWatermarkSettingsArgs{...}

type ChannelAudioWatermarkSettingsOutput added in v0.9.0

type ChannelAudioWatermarkSettingsOutput struct{ *pulumi.OutputState }

func (ChannelAudioWatermarkSettingsOutput) ElementType added in v0.9.0

func (ChannelAudioWatermarkSettingsOutput) NielsenWatermarksSettings added in v0.9.0

func (ChannelAudioWatermarkSettingsOutput) ToChannelAudioWatermarkSettingsOutput added in v0.9.0

func (o ChannelAudioWatermarkSettingsOutput) ToChannelAudioWatermarkSettingsOutput() ChannelAudioWatermarkSettingsOutput

func (ChannelAudioWatermarkSettingsOutput) ToChannelAudioWatermarkSettingsOutputWithContext added in v0.9.0

func (o ChannelAudioWatermarkSettingsOutput) ToChannelAudioWatermarkSettingsOutputWithContext(ctx context.Context) ChannelAudioWatermarkSettingsOutput

func (ChannelAudioWatermarkSettingsOutput) ToChannelAudioWatermarkSettingsPtrOutput added in v0.9.0

func (o ChannelAudioWatermarkSettingsOutput) ToChannelAudioWatermarkSettingsPtrOutput() ChannelAudioWatermarkSettingsPtrOutput

func (ChannelAudioWatermarkSettingsOutput) ToChannelAudioWatermarkSettingsPtrOutputWithContext added in v0.9.0

func (o ChannelAudioWatermarkSettingsOutput) ToChannelAudioWatermarkSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioWatermarkSettingsPtrOutput

func (ChannelAudioWatermarkSettingsOutput) ToOutput added in v0.76.0

type ChannelAudioWatermarkSettingsPtrInput added in v0.9.0

type ChannelAudioWatermarkSettingsPtrInput interface {
	pulumi.Input

	ToChannelAudioWatermarkSettingsPtrOutput() ChannelAudioWatermarkSettingsPtrOutput
	ToChannelAudioWatermarkSettingsPtrOutputWithContext(context.Context) ChannelAudioWatermarkSettingsPtrOutput
}

ChannelAudioWatermarkSettingsPtrInput is an input type that accepts ChannelAudioWatermarkSettingsArgs, ChannelAudioWatermarkSettingsPtr and ChannelAudioWatermarkSettingsPtrOutput values. You can construct a concrete instance of `ChannelAudioWatermarkSettingsPtrInput` via:

        ChannelAudioWatermarkSettingsArgs{...}

or:

        nil

type ChannelAudioWatermarkSettingsPtrOutput added in v0.9.0

type ChannelAudioWatermarkSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAudioWatermarkSettingsPtrOutput) Elem added in v0.9.0

func (ChannelAudioWatermarkSettingsPtrOutput) ElementType added in v0.9.0

func (ChannelAudioWatermarkSettingsPtrOutput) NielsenWatermarksSettings added in v0.9.0

func (ChannelAudioWatermarkSettingsPtrOutput) ToChannelAudioWatermarkSettingsPtrOutput added in v0.9.0

func (o ChannelAudioWatermarkSettingsPtrOutput) ToChannelAudioWatermarkSettingsPtrOutput() ChannelAudioWatermarkSettingsPtrOutput

func (ChannelAudioWatermarkSettingsPtrOutput) ToChannelAudioWatermarkSettingsPtrOutputWithContext added in v0.9.0

func (o ChannelAudioWatermarkSettingsPtrOutput) ToChannelAudioWatermarkSettingsPtrOutputWithContext(ctx context.Context) ChannelAudioWatermarkSettingsPtrOutput

func (ChannelAudioWatermarkSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelAutomaticInputFailoverSettings

type ChannelAutomaticInputFailoverSettings struct {
	ErrorClearTimeMsec *int                       `pulumi:"errorClearTimeMsec"`
	FailoverConditions []ChannelFailoverCondition `pulumi:"failoverConditions"`
	InputPreference    *string                    `pulumi:"inputPreference"`
	SecondaryInputId   *string                    `pulumi:"secondaryInputId"`
}

type ChannelAutomaticInputFailoverSettingsArgs

type ChannelAutomaticInputFailoverSettingsArgs struct {
	ErrorClearTimeMsec pulumi.IntPtrInput                 `pulumi:"errorClearTimeMsec"`
	FailoverConditions ChannelFailoverConditionArrayInput `pulumi:"failoverConditions"`
	InputPreference    pulumi.StringPtrInput              `pulumi:"inputPreference"`
	SecondaryInputId   pulumi.StringPtrInput              `pulumi:"secondaryInputId"`
}

func (ChannelAutomaticInputFailoverSettingsArgs) ElementType

func (ChannelAutomaticInputFailoverSettingsArgs) ToChannelAutomaticInputFailoverSettingsOutput

func (i ChannelAutomaticInputFailoverSettingsArgs) ToChannelAutomaticInputFailoverSettingsOutput() ChannelAutomaticInputFailoverSettingsOutput

func (ChannelAutomaticInputFailoverSettingsArgs) ToChannelAutomaticInputFailoverSettingsOutputWithContext

func (i ChannelAutomaticInputFailoverSettingsArgs) ToChannelAutomaticInputFailoverSettingsOutputWithContext(ctx context.Context) ChannelAutomaticInputFailoverSettingsOutput

func (ChannelAutomaticInputFailoverSettingsArgs) ToChannelAutomaticInputFailoverSettingsPtrOutput

func (i ChannelAutomaticInputFailoverSettingsArgs) ToChannelAutomaticInputFailoverSettingsPtrOutput() ChannelAutomaticInputFailoverSettingsPtrOutput

func (ChannelAutomaticInputFailoverSettingsArgs) ToChannelAutomaticInputFailoverSettingsPtrOutputWithContext

func (i ChannelAutomaticInputFailoverSettingsArgs) ToChannelAutomaticInputFailoverSettingsPtrOutputWithContext(ctx context.Context) ChannelAutomaticInputFailoverSettingsPtrOutput

func (ChannelAutomaticInputFailoverSettingsArgs) ToOutput added in v0.76.0

type ChannelAutomaticInputFailoverSettingsInput

type ChannelAutomaticInputFailoverSettingsInput interface {
	pulumi.Input

	ToChannelAutomaticInputFailoverSettingsOutput() ChannelAutomaticInputFailoverSettingsOutput
	ToChannelAutomaticInputFailoverSettingsOutputWithContext(context.Context) ChannelAutomaticInputFailoverSettingsOutput
}

ChannelAutomaticInputFailoverSettingsInput is an input type that accepts ChannelAutomaticInputFailoverSettingsArgs and ChannelAutomaticInputFailoverSettingsOutput values. You can construct a concrete instance of `ChannelAutomaticInputFailoverSettingsInput` via:

ChannelAutomaticInputFailoverSettingsArgs{...}

type ChannelAutomaticInputFailoverSettingsOutput

type ChannelAutomaticInputFailoverSettingsOutput struct{ *pulumi.OutputState }

func (ChannelAutomaticInputFailoverSettingsOutput) ElementType

func (ChannelAutomaticInputFailoverSettingsOutput) ErrorClearTimeMsec

func (ChannelAutomaticInputFailoverSettingsOutput) FailoverConditions

func (ChannelAutomaticInputFailoverSettingsOutput) InputPreference

func (ChannelAutomaticInputFailoverSettingsOutput) SecondaryInputId

func (ChannelAutomaticInputFailoverSettingsOutput) ToChannelAutomaticInputFailoverSettingsOutput

func (o ChannelAutomaticInputFailoverSettingsOutput) ToChannelAutomaticInputFailoverSettingsOutput() ChannelAutomaticInputFailoverSettingsOutput

func (ChannelAutomaticInputFailoverSettingsOutput) ToChannelAutomaticInputFailoverSettingsOutputWithContext

func (o ChannelAutomaticInputFailoverSettingsOutput) ToChannelAutomaticInputFailoverSettingsOutputWithContext(ctx context.Context) ChannelAutomaticInputFailoverSettingsOutput

func (ChannelAutomaticInputFailoverSettingsOutput) ToChannelAutomaticInputFailoverSettingsPtrOutput

func (o ChannelAutomaticInputFailoverSettingsOutput) ToChannelAutomaticInputFailoverSettingsPtrOutput() ChannelAutomaticInputFailoverSettingsPtrOutput

func (ChannelAutomaticInputFailoverSettingsOutput) ToChannelAutomaticInputFailoverSettingsPtrOutputWithContext

func (o ChannelAutomaticInputFailoverSettingsOutput) ToChannelAutomaticInputFailoverSettingsPtrOutputWithContext(ctx context.Context) ChannelAutomaticInputFailoverSettingsPtrOutput

func (ChannelAutomaticInputFailoverSettingsOutput) ToOutput added in v0.76.0

type ChannelAutomaticInputFailoverSettingsPtrInput

type ChannelAutomaticInputFailoverSettingsPtrInput interface {
	pulumi.Input

	ToChannelAutomaticInputFailoverSettingsPtrOutput() ChannelAutomaticInputFailoverSettingsPtrOutput
	ToChannelAutomaticInputFailoverSettingsPtrOutputWithContext(context.Context) ChannelAutomaticInputFailoverSettingsPtrOutput
}

ChannelAutomaticInputFailoverSettingsPtrInput is an input type that accepts ChannelAutomaticInputFailoverSettingsArgs, ChannelAutomaticInputFailoverSettingsPtr and ChannelAutomaticInputFailoverSettingsPtrOutput values. You can construct a concrete instance of `ChannelAutomaticInputFailoverSettingsPtrInput` via:

        ChannelAutomaticInputFailoverSettingsArgs{...}

or:

        nil

type ChannelAutomaticInputFailoverSettingsPtrOutput

type ChannelAutomaticInputFailoverSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAutomaticInputFailoverSettingsPtrOutput) Elem

func (ChannelAutomaticInputFailoverSettingsPtrOutput) ElementType

func (ChannelAutomaticInputFailoverSettingsPtrOutput) ErrorClearTimeMsec

func (ChannelAutomaticInputFailoverSettingsPtrOutput) FailoverConditions

func (ChannelAutomaticInputFailoverSettingsPtrOutput) InputPreference

func (ChannelAutomaticInputFailoverSettingsPtrOutput) SecondaryInputId

func (ChannelAutomaticInputFailoverSettingsPtrOutput) ToChannelAutomaticInputFailoverSettingsPtrOutput

func (o ChannelAutomaticInputFailoverSettingsPtrOutput) ToChannelAutomaticInputFailoverSettingsPtrOutput() ChannelAutomaticInputFailoverSettingsPtrOutput

func (ChannelAutomaticInputFailoverSettingsPtrOutput) ToChannelAutomaticInputFailoverSettingsPtrOutputWithContext

func (o ChannelAutomaticInputFailoverSettingsPtrOutput) ToChannelAutomaticInputFailoverSettingsPtrOutputWithContext(ctx context.Context) ChannelAutomaticInputFailoverSettingsPtrOutput

func (ChannelAutomaticInputFailoverSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelAvailBlanking

type ChannelAvailBlanking struct {
	AvailBlankingImage *ChannelInputLocation `pulumi:"availBlankingImage"`
	State              *string               `pulumi:"state"`
}

type ChannelAvailBlankingArgs

type ChannelAvailBlankingArgs struct {
	AvailBlankingImage ChannelInputLocationPtrInput `pulumi:"availBlankingImage"`
	State              pulumi.StringPtrInput        `pulumi:"state"`
}

func (ChannelAvailBlankingArgs) ElementType

func (ChannelAvailBlankingArgs) ElementType() reflect.Type

func (ChannelAvailBlankingArgs) ToChannelAvailBlankingOutput

func (i ChannelAvailBlankingArgs) ToChannelAvailBlankingOutput() ChannelAvailBlankingOutput

func (ChannelAvailBlankingArgs) ToChannelAvailBlankingOutputWithContext

func (i ChannelAvailBlankingArgs) ToChannelAvailBlankingOutputWithContext(ctx context.Context) ChannelAvailBlankingOutput

func (ChannelAvailBlankingArgs) ToChannelAvailBlankingPtrOutput

func (i ChannelAvailBlankingArgs) ToChannelAvailBlankingPtrOutput() ChannelAvailBlankingPtrOutput

func (ChannelAvailBlankingArgs) ToChannelAvailBlankingPtrOutputWithContext

func (i ChannelAvailBlankingArgs) ToChannelAvailBlankingPtrOutputWithContext(ctx context.Context) ChannelAvailBlankingPtrOutput

func (ChannelAvailBlankingArgs) ToOutput added in v0.76.0

type ChannelAvailBlankingInput

type ChannelAvailBlankingInput interface {
	pulumi.Input

	ToChannelAvailBlankingOutput() ChannelAvailBlankingOutput
	ToChannelAvailBlankingOutputWithContext(context.Context) ChannelAvailBlankingOutput
}

ChannelAvailBlankingInput is an input type that accepts ChannelAvailBlankingArgs and ChannelAvailBlankingOutput values. You can construct a concrete instance of `ChannelAvailBlankingInput` via:

ChannelAvailBlankingArgs{...}

type ChannelAvailBlankingOutput

type ChannelAvailBlankingOutput struct{ *pulumi.OutputState }

func (ChannelAvailBlankingOutput) AvailBlankingImage

func (ChannelAvailBlankingOutput) ElementType

func (ChannelAvailBlankingOutput) ElementType() reflect.Type

func (ChannelAvailBlankingOutput) State

func (ChannelAvailBlankingOutput) ToChannelAvailBlankingOutput

func (o ChannelAvailBlankingOutput) ToChannelAvailBlankingOutput() ChannelAvailBlankingOutput

func (ChannelAvailBlankingOutput) ToChannelAvailBlankingOutputWithContext

func (o ChannelAvailBlankingOutput) ToChannelAvailBlankingOutputWithContext(ctx context.Context) ChannelAvailBlankingOutput

func (ChannelAvailBlankingOutput) ToChannelAvailBlankingPtrOutput

func (o ChannelAvailBlankingOutput) ToChannelAvailBlankingPtrOutput() ChannelAvailBlankingPtrOutput

func (ChannelAvailBlankingOutput) ToChannelAvailBlankingPtrOutputWithContext

func (o ChannelAvailBlankingOutput) ToChannelAvailBlankingPtrOutputWithContext(ctx context.Context) ChannelAvailBlankingPtrOutput

func (ChannelAvailBlankingOutput) ToOutput added in v0.76.0

type ChannelAvailBlankingPtrInput

type ChannelAvailBlankingPtrInput interface {
	pulumi.Input

	ToChannelAvailBlankingPtrOutput() ChannelAvailBlankingPtrOutput
	ToChannelAvailBlankingPtrOutputWithContext(context.Context) ChannelAvailBlankingPtrOutput
}

ChannelAvailBlankingPtrInput is an input type that accepts ChannelAvailBlankingArgs, ChannelAvailBlankingPtr and ChannelAvailBlankingPtrOutput values. You can construct a concrete instance of `ChannelAvailBlankingPtrInput` via:

        ChannelAvailBlankingArgs{...}

or:

        nil

type ChannelAvailBlankingPtrOutput

type ChannelAvailBlankingPtrOutput struct{ *pulumi.OutputState }

func (ChannelAvailBlankingPtrOutput) AvailBlankingImage

func (ChannelAvailBlankingPtrOutput) Elem

func (ChannelAvailBlankingPtrOutput) ElementType

func (ChannelAvailBlankingPtrOutput) State

func (ChannelAvailBlankingPtrOutput) ToChannelAvailBlankingPtrOutput

func (o ChannelAvailBlankingPtrOutput) ToChannelAvailBlankingPtrOutput() ChannelAvailBlankingPtrOutput

func (ChannelAvailBlankingPtrOutput) ToChannelAvailBlankingPtrOutputWithContext

func (o ChannelAvailBlankingPtrOutput) ToChannelAvailBlankingPtrOutputWithContext(ctx context.Context) ChannelAvailBlankingPtrOutput

func (ChannelAvailBlankingPtrOutput) ToOutput added in v0.76.0

type ChannelAvailConfiguration

type ChannelAvailConfiguration struct {
	AvailSettings *ChannelAvailSettings `pulumi:"availSettings"`
}

type ChannelAvailConfigurationArgs

type ChannelAvailConfigurationArgs struct {
	AvailSettings ChannelAvailSettingsPtrInput `pulumi:"availSettings"`
}

func (ChannelAvailConfigurationArgs) ElementType

func (ChannelAvailConfigurationArgs) ToChannelAvailConfigurationOutput

func (i ChannelAvailConfigurationArgs) ToChannelAvailConfigurationOutput() ChannelAvailConfigurationOutput

func (ChannelAvailConfigurationArgs) ToChannelAvailConfigurationOutputWithContext

func (i ChannelAvailConfigurationArgs) ToChannelAvailConfigurationOutputWithContext(ctx context.Context) ChannelAvailConfigurationOutput

func (ChannelAvailConfigurationArgs) ToChannelAvailConfigurationPtrOutput

func (i ChannelAvailConfigurationArgs) ToChannelAvailConfigurationPtrOutput() ChannelAvailConfigurationPtrOutput

func (ChannelAvailConfigurationArgs) ToChannelAvailConfigurationPtrOutputWithContext

func (i ChannelAvailConfigurationArgs) ToChannelAvailConfigurationPtrOutputWithContext(ctx context.Context) ChannelAvailConfigurationPtrOutput

func (ChannelAvailConfigurationArgs) ToOutput added in v0.76.0

type ChannelAvailConfigurationInput

type ChannelAvailConfigurationInput interface {
	pulumi.Input

	ToChannelAvailConfigurationOutput() ChannelAvailConfigurationOutput
	ToChannelAvailConfigurationOutputWithContext(context.Context) ChannelAvailConfigurationOutput
}

ChannelAvailConfigurationInput is an input type that accepts ChannelAvailConfigurationArgs and ChannelAvailConfigurationOutput values. You can construct a concrete instance of `ChannelAvailConfigurationInput` via:

ChannelAvailConfigurationArgs{...}

type ChannelAvailConfigurationOutput

type ChannelAvailConfigurationOutput struct{ *pulumi.OutputState }

func (ChannelAvailConfigurationOutput) AvailSettings

func (ChannelAvailConfigurationOutput) ElementType

func (ChannelAvailConfigurationOutput) ToChannelAvailConfigurationOutput

func (o ChannelAvailConfigurationOutput) ToChannelAvailConfigurationOutput() ChannelAvailConfigurationOutput

func (ChannelAvailConfigurationOutput) ToChannelAvailConfigurationOutputWithContext

func (o ChannelAvailConfigurationOutput) ToChannelAvailConfigurationOutputWithContext(ctx context.Context) ChannelAvailConfigurationOutput

func (ChannelAvailConfigurationOutput) ToChannelAvailConfigurationPtrOutput

func (o ChannelAvailConfigurationOutput) ToChannelAvailConfigurationPtrOutput() ChannelAvailConfigurationPtrOutput

func (ChannelAvailConfigurationOutput) ToChannelAvailConfigurationPtrOutputWithContext

func (o ChannelAvailConfigurationOutput) ToChannelAvailConfigurationPtrOutputWithContext(ctx context.Context) ChannelAvailConfigurationPtrOutput

func (ChannelAvailConfigurationOutput) ToOutput added in v0.76.0

type ChannelAvailConfigurationPtrInput

type ChannelAvailConfigurationPtrInput interface {
	pulumi.Input

	ToChannelAvailConfigurationPtrOutput() ChannelAvailConfigurationPtrOutput
	ToChannelAvailConfigurationPtrOutputWithContext(context.Context) ChannelAvailConfigurationPtrOutput
}

ChannelAvailConfigurationPtrInput is an input type that accepts ChannelAvailConfigurationArgs, ChannelAvailConfigurationPtr and ChannelAvailConfigurationPtrOutput values. You can construct a concrete instance of `ChannelAvailConfigurationPtrInput` via:

        ChannelAvailConfigurationArgs{...}

or:

        nil

type ChannelAvailConfigurationPtrOutput

type ChannelAvailConfigurationPtrOutput struct{ *pulumi.OutputState }

func (ChannelAvailConfigurationPtrOutput) AvailSettings

func (ChannelAvailConfigurationPtrOutput) Elem

func (ChannelAvailConfigurationPtrOutput) ElementType

func (ChannelAvailConfigurationPtrOutput) ToChannelAvailConfigurationPtrOutput

func (o ChannelAvailConfigurationPtrOutput) ToChannelAvailConfigurationPtrOutput() ChannelAvailConfigurationPtrOutput

func (ChannelAvailConfigurationPtrOutput) ToChannelAvailConfigurationPtrOutputWithContext

func (o ChannelAvailConfigurationPtrOutput) ToChannelAvailConfigurationPtrOutputWithContext(ctx context.Context) ChannelAvailConfigurationPtrOutput

func (ChannelAvailConfigurationPtrOutput) ToOutput added in v0.76.0

type ChannelAvailSettings

type ChannelAvailSettings struct {
	Esam                 *ChannelEsam                 `pulumi:"esam"`
	Scte35SpliceInsert   *ChannelScte35SpliceInsert   `pulumi:"scte35SpliceInsert"`
	Scte35TimeSignalApos *ChannelScte35TimeSignalApos `pulumi:"scte35TimeSignalApos"`
}

type ChannelAvailSettingsArgs

type ChannelAvailSettingsArgs struct {
	Esam                 ChannelEsamPtrInput                 `pulumi:"esam"`
	Scte35SpliceInsert   ChannelScte35SpliceInsertPtrInput   `pulumi:"scte35SpliceInsert"`
	Scte35TimeSignalApos ChannelScte35TimeSignalAposPtrInput `pulumi:"scte35TimeSignalApos"`
}

func (ChannelAvailSettingsArgs) ElementType

func (ChannelAvailSettingsArgs) ElementType() reflect.Type

func (ChannelAvailSettingsArgs) ToChannelAvailSettingsOutput

func (i ChannelAvailSettingsArgs) ToChannelAvailSettingsOutput() ChannelAvailSettingsOutput

func (ChannelAvailSettingsArgs) ToChannelAvailSettingsOutputWithContext

func (i ChannelAvailSettingsArgs) ToChannelAvailSettingsOutputWithContext(ctx context.Context) ChannelAvailSettingsOutput

func (ChannelAvailSettingsArgs) ToChannelAvailSettingsPtrOutput

func (i ChannelAvailSettingsArgs) ToChannelAvailSettingsPtrOutput() ChannelAvailSettingsPtrOutput

func (ChannelAvailSettingsArgs) ToChannelAvailSettingsPtrOutputWithContext

func (i ChannelAvailSettingsArgs) ToChannelAvailSettingsPtrOutputWithContext(ctx context.Context) ChannelAvailSettingsPtrOutput

func (ChannelAvailSettingsArgs) ToOutput added in v0.76.0

type ChannelAvailSettingsInput

type ChannelAvailSettingsInput interface {
	pulumi.Input

	ToChannelAvailSettingsOutput() ChannelAvailSettingsOutput
	ToChannelAvailSettingsOutputWithContext(context.Context) ChannelAvailSettingsOutput
}

ChannelAvailSettingsInput is an input type that accepts ChannelAvailSettingsArgs and ChannelAvailSettingsOutput values. You can construct a concrete instance of `ChannelAvailSettingsInput` via:

ChannelAvailSettingsArgs{...}

type ChannelAvailSettingsOutput

type ChannelAvailSettingsOutput struct{ *pulumi.OutputState }

func (ChannelAvailSettingsOutput) ElementType

func (ChannelAvailSettingsOutput) ElementType() reflect.Type

func (ChannelAvailSettingsOutput) Esam added in v0.59.0

func (ChannelAvailSettingsOutput) Scte35SpliceInsert

func (ChannelAvailSettingsOutput) Scte35TimeSignalApos

func (ChannelAvailSettingsOutput) ToChannelAvailSettingsOutput

func (o ChannelAvailSettingsOutput) ToChannelAvailSettingsOutput() ChannelAvailSettingsOutput

func (ChannelAvailSettingsOutput) ToChannelAvailSettingsOutputWithContext

func (o ChannelAvailSettingsOutput) ToChannelAvailSettingsOutputWithContext(ctx context.Context) ChannelAvailSettingsOutput

func (ChannelAvailSettingsOutput) ToChannelAvailSettingsPtrOutput

func (o ChannelAvailSettingsOutput) ToChannelAvailSettingsPtrOutput() ChannelAvailSettingsPtrOutput

func (ChannelAvailSettingsOutput) ToChannelAvailSettingsPtrOutputWithContext

func (o ChannelAvailSettingsOutput) ToChannelAvailSettingsPtrOutputWithContext(ctx context.Context) ChannelAvailSettingsPtrOutput

func (ChannelAvailSettingsOutput) ToOutput added in v0.76.0

type ChannelAvailSettingsPtrInput

type ChannelAvailSettingsPtrInput interface {
	pulumi.Input

	ToChannelAvailSettingsPtrOutput() ChannelAvailSettingsPtrOutput
	ToChannelAvailSettingsPtrOutputWithContext(context.Context) ChannelAvailSettingsPtrOutput
}

ChannelAvailSettingsPtrInput is an input type that accepts ChannelAvailSettingsArgs, ChannelAvailSettingsPtr and ChannelAvailSettingsPtrOutput values. You can construct a concrete instance of `ChannelAvailSettingsPtrInput` via:

        ChannelAvailSettingsArgs{...}

or:

        nil

type ChannelAvailSettingsPtrOutput

type ChannelAvailSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelAvailSettingsPtrOutput) Elem

func (ChannelAvailSettingsPtrOutput) ElementType

func (ChannelAvailSettingsPtrOutput) Esam added in v0.59.0

func (ChannelAvailSettingsPtrOutput) Scte35SpliceInsert

func (ChannelAvailSettingsPtrOutput) Scte35TimeSignalApos

func (ChannelAvailSettingsPtrOutput) ToChannelAvailSettingsPtrOutput

func (o ChannelAvailSettingsPtrOutput) ToChannelAvailSettingsPtrOutput() ChannelAvailSettingsPtrOutput

func (ChannelAvailSettingsPtrOutput) ToChannelAvailSettingsPtrOutputWithContext

func (o ChannelAvailSettingsPtrOutput) ToChannelAvailSettingsPtrOutputWithContext(ctx context.Context) ChannelAvailSettingsPtrOutput

func (ChannelAvailSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelBlackoutSlate

type ChannelBlackoutSlate struct {
	BlackoutSlateImage      *ChannelInputLocation `pulumi:"blackoutSlateImage"`
	NetworkEndBlackout      *string               `pulumi:"networkEndBlackout"`
	NetworkEndBlackoutImage *ChannelInputLocation `pulumi:"networkEndBlackoutImage"`
	NetworkId               *string               `pulumi:"networkId"`
	State                   *string               `pulumi:"state"`
}

type ChannelBlackoutSlateArgs

type ChannelBlackoutSlateArgs struct {
	BlackoutSlateImage      ChannelInputLocationPtrInput `pulumi:"blackoutSlateImage"`
	NetworkEndBlackout      pulumi.StringPtrInput        `pulumi:"networkEndBlackout"`
	NetworkEndBlackoutImage ChannelInputLocationPtrInput `pulumi:"networkEndBlackoutImage"`
	NetworkId               pulumi.StringPtrInput        `pulumi:"networkId"`
	State                   pulumi.StringPtrInput        `pulumi:"state"`
}

func (ChannelBlackoutSlateArgs) ElementType

func (ChannelBlackoutSlateArgs) ElementType() reflect.Type

func (ChannelBlackoutSlateArgs) ToChannelBlackoutSlateOutput

func (i ChannelBlackoutSlateArgs) ToChannelBlackoutSlateOutput() ChannelBlackoutSlateOutput

func (ChannelBlackoutSlateArgs) ToChannelBlackoutSlateOutputWithContext

func (i ChannelBlackoutSlateArgs) ToChannelBlackoutSlateOutputWithContext(ctx context.Context) ChannelBlackoutSlateOutput

func (ChannelBlackoutSlateArgs) ToChannelBlackoutSlatePtrOutput

func (i ChannelBlackoutSlateArgs) ToChannelBlackoutSlatePtrOutput() ChannelBlackoutSlatePtrOutput

func (ChannelBlackoutSlateArgs) ToChannelBlackoutSlatePtrOutputWithContext

func (i ChannelBlackoutSlateArgs) ToChannelBlackoutSlatePtrOutputWithContext(ctx context.Context) ChannelBlackoutSlatePtrOutput

func (ChannelBlackoutSlateArgs) ToOutput added in v0.76.0

type ChannelBlackoutSlateInput

type ChannelBlackoutSlateInput interface {
	pulumi.Input

	ToChannelBlackoutSlateOutput() ChannelBlackoutSlateOutput
	ToChannelBlackoutSlateOutputWithContext(context.Context) ChannelBlackoutSlateOutput
}

ChannelBlackoutSlateInput is an input type that accepts ChannelBlackoutSlateArgs and ChannelBlackoutSlateOutput values. You can construct a concrete instance of `ChannelBlackoutSlateInput` via:

ChannelBlackoutSlateArgs{...}

type ChannelBlackoutSlateOutput

type ChannelBlackoutSlateOutput struct{ *pulumi.OutputState }

func (ChannelBlackoutSlateOutput) BlackoutSlateImage

func (ChannelBlackoutSlateOutput) ElementType

func (ChannelBlackoutSlateOutput) ElementType() reflect.Type

func (ChannelBlackoutSlateOutput) NetworkEndBlackout

func (o ChannelBlackoutSlateOutput) NetworkEndBlackout() pulumi.StringPtrOutput

func (ChannelBlackoutSlateOutput) NetworkEndBlackoutImage

func (o ChannelBlackoutSlateOutput) NetworkEndBlackoutImage() ChannelInputLocationPtrOutput

func (ChannelBlackoutSlateOutput) NetworkId

func (ChannelBlackoutSlateOutput) State

func (ChannelBlackoutSlateOutput) ToChannelBlackoutSlateOutput

func (o ChannelBlackoutSlateOutput) ToChannelBlackoutSlateOutput() ChannelBlackoutSlateOutput

func (ChannelBlackoutSlateOutput) ToChannelBlackoutSlateOutputWithContext

func (o ChannelBlackoutSlateOutput) ToChannelBlackoutSlateOutputWithContext(ctx context.Context) ChannelBlackoutSlateOutput

func (ChannelBlackoutSlateOutput) ToChannelBlackoutSlatePtrOutput

func (o ChannelBlackoutSlateOutput) ToChannelBlackoutSlatePtrOutput() ChannelBlackoutSlatePtrOutput

func (ChannelBlackoutSlateOutput) ToChannelBlackoutSlatePtrOutputWithContext

func (o ChannelBlackoutSlateOutput) ToChannelBlackoutSlatePtrOutputWithContext(ctx context.Context) ChannelBlackoutSlatePtrOutput

func (ChannelBlackoutSlateOutput) ToOutput added in v0.76.0

type ChannelBlackoutSlatePtrInput

type ChannelBlackoutSlatePtrInput interface {
	pulumi.Input

	ToChannelBlackoutSlatePtrOutput() ChannelBlackoutSlatePtrOutput
	ToChannelBlackoutSlatePtrOutputWithContext(context.Context) ChannelBlackoutSlatePtrOutput
}

ChannelBlackoutSlatePtrInput is an input type that accepts ChannelBlackoutSlateArgs, ChannelBlackoutSlatePtr and ChannelBlackoutSlatePtrOutput values. You can construct a concrete instance of `ChannelBlackoutSlatePtrInput` via:

        ChannelBlackoutSlateArgs{...}

or:

        nil

type ChannelBlackoutSlatePtrOutput

type ChannelBlackoutSlatePtrOutput struct{ *pulumi.OutputState }

func (ChannelBlackoutSlatePtrOutput) BlackoutSlateImage

func (ChannelBlackoutSlatePtrOutput) Elem

func (ChannelBlackoutSlatePtrOutput) ElementType

func (ChannelBlackoutSlatePtrOutput) NetworkEndBlackout

func (o ChannelBlackoutSlatePtrOutput) NetworkEndBlackout() pulumi.StringPtrOutput

func (ChannelBlackoutSlatePtrOutput) NetworkEndBlackoutImage

func (ChannelBlackoutSlatePtrOutput) NetworkId

func (ChannelBlackoutSlatePtrOutput) State

func (ChannelBlackoutSlatePtrOutput) ToChannelBlackoutSlatePtrOutput

func (o ChannelBlackoutSlatePtrOutput) ToChannelBlackoutSlatePtrOutput() ChannelBlackoutSlatePtrOutput

func (ChannelBlackoutSlatePtrOutput) ToChannelBlackoutSlatePtrOutputWithContext

func (o ChannelBlackoutSlatePtrOutput) ToChannelBlackoutSlatePtrOutputWithContext(ctx context.Context) ChannelBlackoutSlatePtrOutput

func (ChannelBlackoutSlatePtrOutput) ToOutput added in v0.76.0

type ChannelBurnInDestinationSettings

type ChannelBurnInDestinationSettings struct {
	Alignment           *string               `pulumi:"alignment"`
	BackgroundColor     *string               `pulumi:"backgroundColor"`
	BackgroundOpacity   *int                  `pulumi:"backgroundOpacity"`
	Font                *ChannelInputLocation `pulumi:"font"`
	FontColor           *string               `pulumi:"fontColor"`
	FontOpacity         *int                  `pulumi:"fontOpacity"`
	FontResolution      *int                  `pulumi:"fontResolution"`
	FontSize            *string               `pulumi:"fontSize"`
	OutlineColor        *string               `pulumi:"outlineColor"`
	OutlineSize         *int                  `pulumi:"outlineSize"`
	ShadowColor         *string               `pulumi:"shadowColor"`
	ShadowOpacity       *int                  `pulumi:"shadowOpacity"`
	ShadowXOffset       *int                  `pulumi:"shadowXOffset"`
	ShadowYOffset       *int                  `pulumi:"shadowYOffset"`
	TeletextGridControl *string               `pulumi:"teletextGridControl"`
	XPosition           *int                  `pulumi:"xPosition"`
	YPosition           *int                  `pulumi:"yPosition"`
}

type ChannelBurnInDestinationSettingsArgs

type ChannelBurnInDestinationSettingsArgs struct {
	Alignment           pulumi.StringPtrInput        `pulumi:"alignment"`
	BackgroundColor     pulumi.StringPtrInput        `pulumi:"backgroundColor"`
	BackgroundOpacity   pulumi.IntPtrInput           `pulumi:"backgroundOpacity"`
	Font                ChannelInputLocationPtrInput `pulumi:"font"`
	FontColor           pulumi.StringPtrInput        `pulumi:"fontColor"`
	FontOpacity         pulumi.IntPtrInput           `pulumi:"fontOpacity"`
	FontResolution      pulumi.IntPtrInput           `pulumi:"fontResolution"`
	FontSize            pulumi.StringPtrInput        `pulumi:"fontSize"`
	OutlineColor        pulumi.StringPtrInput        `pulumi:"outlineColor"`
	OutlineSize         pulumi.IntPtrInput           `pulumi:"outlineSize"`
	ShadowColor         pulumi.StringPtrInput        `pulumi:"shadowColor"`
	ShadowOpacity       pulumi.IntPtrInput           `pulumi:"shadowOpacity"`
	ShadowXOffset       pulumi.IntPtrInput           `pulumi:"shadowXOffset"`
	ShadowYOffset       pulumi.IntPtrInput           `pulumi:"shadowYOffset"`
	TeletextGridControl pulumi.StringPtrInput        `pulumi:"teletextGridControl"`
	XPosition           pulumi.IntPtrInput           `pulumi:"xPosition"`
	YPosition           pulumi.IntPtrInput           `pulumi:"yPosition"`
}

func (ChannelBurnInDestinationSettingsArgs) ElementType

func (ChannelBurnInDestinationSettingsArgs) ToChannelBurnInDestinationSettingsOutput

func (i ChannelBurnInDestinationSettingsArgs) ToChannelBurnInDestinationSettingsOutput() ChannelBurnInDestinationSettingsOutput

func (ChannelBurnInDestinationSettingsArgs) ToChannelBurnInDestinationSettingsOutputWithContext

func (i ChannelBurnInDestinationSettingsArgs) ToChannelBurnInDestinationSettingsOutputWithContext(ctx context.Context) ChannelBurnInDestinationSettingsOutput

func (ChannelBurnInDestinationSettingsArgs) ToChannelBurnInDestinationSettingsPtrOutput

func (i ChannelBurnInDestinationSettingsArgs) ToChannelBurnInDestinationSettingsPtrOutput() ChannelBurnInDestinationSettingsPtrOutput

func (ChannelBurnInDestinationSettingsArgs) ToChannelBurnInDestinationSettingsPtrOutputWithContext

func (i ChannelBurnInDestinationSettingsArgs) ToChannelBurnInDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelBurnInDestinationSettingsPtrOutput

func (ChannelBurnInDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelBurnInDestinationSettingsInput

type ChannelBurnInDestinationSettingsInput interface {
	pulumi.Input

	ToChannelBurnInDestinationSettingsOutput() ChannelBurnInDestinationSettingsOutput
	ToChannelBurnInDestinationSettingsOutputWithContext(context.Context) ChannelBurnInDestinationSettingsOutput
}

ChannelBurnInDestinationSettingsInput is an input type that accepts ChannelBurnInDestinationSettingsArgs and ChannelBurnInDestinationSettingsOutput values. You can construct a concrete instance of `ChannelBurnInDestinationSettingsInput` via:

ChannelBurnInDestinationSettingsArgs{...}

type ChannelBurnInDestinationSettingsOutput

type ChannelBurnInDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelBurnInDestinationSettingsOutput) Alignment

func (ChannelBurnInDestinationSettingsOutput) BackgroundColor

func (ChannelBurnInDestinationSettingsOutput) BackgroundOpacity

func (ChannelBurnInDestinationSettingsOutput) ElementType

func (ChannelBurnInDestinationSettingsOutput) Font

func (ChannelBurnInDestinationSettingsOutput) FontColor

func (ChannelBurnInDestinationSettingsOutput) FontOpacity

func (ChannelBurnInDestinationSettingsOutput) FontResolution

func (ChannelBurnInDestinationSettingsOutput) FontSize

func (ChannelBurnInDestinationSettingsOutput) OutlineColor

func (ChannelBurnInDestinationSettingsOutput) OutlineSize

func (ChannelBurnInDestinationSettingsOutput) ShadowColor

func (ChannelBurnInDestinationSettingsOutput) ShadowOpacity

func (ChannelBurnInDestinationSettingsOutput) ShadowXOffset

func (ChannelBurnInDestinationSettingsOutput) ShadowYOffset

func (ChannelBurnInDestinationSettingsOutput) TeletextGridControl

func (ChannelBurnInDestinationSettingsOutput) ToChannelBurnInDestinationSettingsOutput

func (o ChannelBurnInDestinationSettingsOutput) ToChannelBurnInDestinationSettingsOutput() ChannelBurnInDestinationSettingsOutput

func (ChannelBurnInDestinationSettingsOutput) ToChannelBurnInDestinationSettingsOutputWithContext

func (o ChannelBurnInDestinationSettingsOutput) ToChannelBurnInDestinationSettingsOutputWithContext(ctx context.Context) ChannelBurnInDestinationSettingsOutput

func (ChannelBurnInDestinationSettingsOutput) ToChannelBurnInDestinationSettingsPtrOutput

func (o ChannelBurnInDestinationSettingsOutput) ToChannelBurnInDestinationSettingsPtrOutput() ChannelBurnInDestinationSettingsPtrOutput

func (ChannelBurnInDestinationSettingsOutput) ToChannelBurnInDestinationSettingsPtrOutputWithContext

func (o ChannelBurnInDestinationSettingsOutput) ToChannelBurnInDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelBurnInDestinationSettingsPtrOutput

func (ChannelBurnInDestinationSettingsOutput) ToOutput added in v0.76.0

func (ChannelBurnInDestinationSettingsOutput) XPosition

func (ChannelBurnInDestinationSettingsOutput) YPosition

type ChannelBurnInDestinationSettingsPtrInput

type ChannelBurnInDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelBurnInDestinationSettingsPtrOutput() ChannelBurnInDestinationSettingsPtrOutput
	ToChannelBurnInDestinationSettingsPtrOutputWithContext(context.Context) ChannelBurnInDestinationSettingsPtrOutput
}

ChannelBurnInDestinationSettingsPtrInput is an input type that accepts ChannelBurnInDestinationSettingsArgs, ChannelBurnInDestinationSettingsPtr and ChannelBurnInDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelBurnInDestinationSettingsPtrInput` via:

        ChannelBurnInDestinationSettingsArgs{...}

or:

        nil

type ChannelBurnInDestinationSettingsPtrOutput

type ChannelBurnInDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelBurnInDestinationSettingsPtrOutput) Alignment

func (ChannelBurnInDestinationSettingsPtrOutput) BackgroundColor

func (ChannelBurnInDestinationSettingsPtrOutput) BackgroundOpacity

func (ChannelBurnInDestinationSettingsPtrOutput) Elem

func (ChannelBurnInDestinationSettingsPtrOutput) ElementType

func (ChannelBurnInDestinationSettingsPtrOutput) Font

func (ChannelBurnInDestinationSettingsPtrOutput) FontColor

func (ChannelBurnInDestinationSettingsPtrOutput) FontOpacity

func (ChannelBurnInDestinationSettingsPtrOutput) FontResolution

func (ChannelBurnInDestinationSettingsPtrOutput) FontSize

func (ChannelBurnInDestinationSettingsPtrOutput) OutlineColor

func (ChannelBurnInDestinationSettingsPtrOutput) OutlineSize

func (ChannelBurnInDestinationSettingsPtrOutput) ShadowColor

func (ChannelBurnInDestinationSettingsPtrOutput) ShadowOpacity

func (ChannelBurnInDestinationSettingsPtrOutput) ShadowXOffset

func (ChannelBurnInDestinationSettingsPtrOutput) ShadowYOffset

func (ChannelBurnInDestinationSettingsPtrOutput) TeletextGridControl

func (ChannelBurnInDestinationSettingsPtrOutput) ToChannelBurnInDestinationSettingsPtrOutput

func (o ChannelBurnInDestinationSettingsPtrOutput) ToChannelBurnInDestinationSettingsPtrOutput() ChannelBurnInDestinationSettingsPtrOutput

func (ChannelBurnInDestinationSettingsPtrOutput) ToChannelBurnInDestinationSettingsPtrOutputWithContext

func (o ChannelBurnInDestinationSettingsPtrOutput) ToChannelBurnInDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelBurnInDestinationSettingsPtrOutput

func (ChannelBurnInDestinationSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelBurnInDestinationSettingsPtrOutput) XPosition

func (ChannelBurnInDestinationSettingsPtrOutput) YPosition

type ChannelCaptionDescription

type ChannelCaptionDescription struct {
	Accessibility       *string                            `pulumi:"accessibility"`
	CaptionSelectorName *string                            `pulumi:"captionSelectorName"`
	DestinationSettings *ChannelCaptionDestinationSettings `pulumi:"destinationSettings"`
	LanguageCode        *string                            `pulumi:"languageCode"`
	LanguageDescription *string                            `pulumi:"languageDescription"`
	Name                *string                            `pulumi:"name"`
}

type ChannelCaptionDescriptionArgs

type ChannelCaptionDescriptionArgs struct {
	Accessibility       pulumi.StringPtrInput                     `pulumi:"accessibility"`
	CaptionSelectorName pulumi.StringPtrInput                     `pulumi:"captionSelectorName"`
	DestinationSettings ChannelCaptionDestinationSettingsPtrInput `pulumi:"destinationSettings"`
	LanguageCode        pulumi.StringPtrInput                     `pulumi:"languageCode"`
	LanguageDescription pulumi.StringPtrInput                     `pulumi:"languageDescription"`
	Name                pulumi.StringPtrInput                     `pulumi:"name"`
}

func (ChannelCaptionDescriptionArgs) ElementType

func (ChannelCaptionDescriptionArgs) ToChannelCaptionDescriptionOutput

func (i ChannelCaptionDescriptionArgs) ToChannelCaptionDescriptionOutput() ChannelCaptionDescriptionOutput

func (ChannelCaptionDescriptionArgs) ToChannelCaptionDescriptionOutputWithContext

func (i ChannelCaptionDescriptionArgs) ToChannelCaptionDescriptionOutputWithContext(ctx context.Context) ChannelCaptionDescriptionOutput

func (ChannelCaptionDescriptionArgs) ToOutput added in v0.76.0

type ChannelCaptionDescriptionArray

type ChannelCaptionDescriptionArray []ChannelCaptionDescriptionInput

func (ChannelCaptionDescriptionArray) ElementType

func (ChannelCaptionDescriptionArray) ToChannelCaptionDescriptionArrayOutput

func (i ChannelCaptionDescriptionArray) ToChannelCaptionDescriptionArrayOutput() ChannelCaptionDescriptionArrayOutput

func (ChannelCaptionDescriptionArray) ToChannelCaptionDescriptionArrayOutputWithContext

func (i ChannelCaptionDescriptionArray) ToChannelCaptionDescriptionArrayOutputWithContext(ctx context.Context) ChannelCaptionDescriptionArrayOutput

func (ChannelCaptionDescriptionArray) ToOutput added in v0.76.0

type ChannelCaptionDescriptionArrayInput

type ChannelCaptionDescriptionArrayInput interface {
	pulumi.Input

	ToChannelCaptionDescriptionArrayOutput() ChannelCaptionDescriptionArrayOutput
	ToChannelCaptionDescriptionArrayOutputWithContext(context.Context) ChannelCaptionDescriptionArrayOutput
}

ChannelCaptionDescriptionArrayInput is an input type that accepts ChannelCaptionDescriptionArray and ChannelCaptionDescriptionArrayOutput values. You can construct a concrete instance of `ChannelCaptionDescriptionArrayInput` via:

ChannelCaptionDescriptionArray{ ChannelCaptionDescriptionArgs{...} }

type ChannelCaptionDescriptionArrayOutput

type ChannelCaptionDescriptionArrayOutput struct{ *pulumi.OutputState }

func (ChannelCaptionDescriptionArrayOutput) ElementType

func (ChannelCaptionDescriptionArrayOutput) Index

func (ChannelCaptionDescriptionArrayOutput) ToChannelCaptionDescriptionArrayOutput

func (o ChannelCaptionDescriptionArrayOutput) ToChannelCaptionDescriptionArrayOutput() ChannelCaptionDescriptionArrayOutput

func (ChannelCaptionDescriptionArrayOutput) ToChannelCaptionDescriptionArrayOutputWithContext

func (o ChannelCaptionDescriptionArrayOutput) ToChannelCaptionDescriptionArrayOutputWithContext(ctx context.Context) ChannelCaptionDescriptionArrayOutput

func (ChannelCaptionDescriptionArrayOutput) ToOutput added in v0.76.0

type ChannelCaptionDescriptionInput

type ChannelCaptionDescriptionInput interface {
	pulumi.Input

	ToChannelCaptionDescriptionOutput() ChannelCaptionDescriptionOutput
	ToChannelCaptionDescriptionOutputWithContext(context.Context) ChannelCaptionDescriptionOutput
}

ChannelCaptionDescriptionInput is an input type that accepts ChannelCaptionDescriptionArgs and ChannelCaptionDescriptionOutput values. You can construct a concrete instance of `ChannelCaptionDescriptionInput` via:

ChannelCaptionDescriptionArgs{...}

type ChannelCaptionDescriptionOutput

type ChannelCaptionDescriptionOutput struct{ *pulumi.OutputState }

func (ChannelCaptionDescriptionOutput) Accessibility added in v0.59.0

func (ChannelCaptionDescriptionOutput) CaptionSelectorName

func (o ChannelCaptionDescriptionOutput) CaptionSelectorName() pulumi.StringPtrOutput

func (ChannelCaptionDescriptionOutput) DestinationSettings

func (ChannelCaptionDescriptionOutput) ElementType

func (ChannelCaptionDescriptionOutput) LanguageCode

func (ChannelCaptionDescriptionOutput) LanguageDescription

func (o ChannelCaptionDescriptionOutput) LanguageDescription() pulumi.StringPtrOutput

func (ChannelCaptionDescriptionOutput) Name

func (ChannelCaptionDescriptionOutput) ToChannelCaptionDescriptionOutput

func (o ChannelCaptionDescriptionOutput) ToChannelCaptionDescriptionOutput() ChannelCaptionDescriptionOutput

func (ChannelCaptionDescriptionOutput) ToChannelCaptionDescriptionOutputWithContext

func (o ChannelCaptionDescriptionOutput) ToChannelCaptionDescriptionOutputWithContext(ctx context.Context) ChannelCaptionDescriptionOutput

func (ChannelCaptionDescriptionOutput) ToOutput added in v0.76.0

type ChannelCaptionDestinationSettings

type ChannelCaptionDestinationSettings struct {
	AribDestinationSettings               *ChannelAribDestinationSettings               `pulumi:"aribDestinationSettings"`
	BurnInDestinationSettings             *ChannelBurnInDestinationSettings             `pulumi:"burnInDestinationSettings"`
	DvbSubDestinationSettings             *ChannelDvbSubDestinationSettings             `pulumi:"dvbSubDestinationSettings"`
	EbuTtDDestinationSettings             *ChannelEbuTtDDestinationSettings             `pulumi:"ebuTtDDestinationSettings"`
	EmbeddedDestinationSettings           *ChannelEmbeddedDestinationSettings           `pulumi:"embeddedDestinationSettings"`
	EmbeddedPlusScte20DestinationSettings *ChannelEmbeddedPlusScte20DestinationSettings `pulumi:"embeddedPlusScte20DestinationSettings"`
	RtmpCaptionInfoDestinationSettings    *ChannelRtmpCaptionInfoDestinationSettings    `pulumi:"rtmpCaptionInfoDestinationSettings"`
	Scte20PlusEmbeddedDestinationSettings *ChannelScte20PlusEmbeddedDestinationSettings `pulumi:"scte20PlusEmbeddedDestinationSettings"`
	Scte27DestinationSettings             *ChannelScte27DestinationSettings             `pulumi:"scte27DestinationSettings"`
	SmpteTtDestinationSettings            *ChannelSmpteTtDestinationSettings            `pulumi:"smpteTtDestinationSettings"`
	TeletextDestinationSettings           *ChannelTeletextDestinationSettings           `pulumi:"teletextDestinationSettings"`
	TtmlDestinationSettings               *ChannelTtmlDestinationSettings               `pulumi:"ttmlDestinationSettings"`
	WebvttDestinationSettings             *ChannelWebvttDestinationSettings             `pulumi:"webvttDestinationSettings"`
}

type ChannelCaptionDestinationSettingsArgs

type ChannelCaptionDestinationSettingsArgs struct {
	AribDestinationSettings               ChannelAribDestinationSettingsPtrInput               `pulumi:"aribDestinationSettings"`
	BurnInDestinationSettings             ChannelBurnInDestinationSettingsPtrInput             `pulumi:"burnInDestinationSettings"`
	DvbSubDestinationSettings             ChannelDvbSubDestinationSettingsPtrInput             `pulumi:"dvbSubDestinationSettings"`
	EbuTtDDestinationSettings             ChannelEbuTtDDestinationSettingsPtrInput             `pulumi:"ebuTtDDestinationSettings"`
	EmbeddedDestinationSettings           ChannelEmbeddedDestinationSettingsPtrInput           `pulumi:"embeddedDestinationSettings"`
	EmbeddedPlusScte20DestinationSettings ChannelEmbeddedPlusScte20DestinationSettingsPtrInput `pulumi:"embeddedPlusScte20DestinationSettings"`
	RtmpCaptionInfoDestinationSettings    ChannelRtmpCaptionInfoDestinationSettingsPtrInput    `pulumi:"rtmpCaptionInfoDestinationSettings"`
	Scte20PlusEmbeddedDestinationSettings ChannelScte20PlusEmbeddedDestinationSettingsPtrInput `pulumi:"scte20PlusEmbeddedDestinationSettings"`
	Scte27DestinationSettings             ChannelScte27DestinationSettingsPtrInput             `pulumi:"scte27DestinationSettings"`
	SmpteTtDestinationSettings            ChannelSmpteTtDestinationSettingsPtrInput            `pulumi:"smpteTtDestinationSettings"`
	TeletextDestinationSettings           ChannelTeletextDestinationSettingsPtrInput           `pulumi:"teletextDestinationSettings"`
	TtmlDestinationSettings               ChannelTtmlDestinationSettingsPtrInput               `pulumi:"ttmlDestinationSettings"`
	WebvttDestinationSettings             ChannelWebvttDestinationSettingsPtrInput             `pulumi:"webvttDestinationSettings"`
}

func (ChannelCaptionDestinationSettingsArgs) ElementType

func (ChannelCaptionDestinationSettingsArgs) ToChannelCaptionDestinationSettingsOutput

func (i ChannelCaptionDestinationSettingsArgs) ToChannelCaptionDestinationSettingsOutput() ChannelCaptionDestinationSettingsOutput

func (ChannelCaptionDestinationSettingsArgs) ToChannelCaptionDestinationSettingsOutputWithContext

func (i ChannelCaptionDestinationSettingsArgs) ToChannelCaptionDestinationSettingsOutputWithContext(ctx context.Context) ChannelCaptionDestinationSettingsOutput

func (ChannelCaptionDestinationSettingsArgs) ToChannelCaptionDestinationSettingsPtrOutput

func (i ChannelCaptionDestinationSettingsArgs) ToChannelCaptionDestinationSettingsPtrOutput() ChannelCaptionDestinationSettingsPtrOutput

func (ChannelCaptionDestinationSettingsArgs) ToChannelCaptionDestinationSettingsPtrOutputWithContext

func (i ChannelCaptionDestinationSettingsArgs) ToChannelCaptionDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelCaptionDestinationSettingsPtrOutput

func (ChannelCaptionDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelCaptionDestinationSettingsInput

type ChannelCaptionDestinationSettingsInput interface {
	pulumi.Input

	ToChannelCaptionDestinationSettingsOutput() ChannelCaptionDestinationSettingsOutput
	ToChannelCaptionDestinationSettingsOutputWithContext(context.Context) ChannelCaptionDestinationSettingsOutput
}

ChannelCaptionDestinationSettingsInput is an input type that accepts ChannelCaptionDestinationSettingsArgs and ChannelCaptionDestinationSettingsOutput values. You can construct a concrete instance of `ChannelCaptionDestinationSettingsInput` via:

ChannelCaptionDestinationSettingsArgs{...}

type ChannelCaptionDestinationSettingsOutput

type ChannelCaptionDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelCaptionDestinationSettingsOutput) AribDestinationSettings

func (ChannelCaptionDestinationSettingsOutput) BurnInDestinationSettings

func (ChannelCaptionDestinationSettingsOutput) DvbSubDestinationSettings

func (ChannelCaptionDestinationSettingsOutput) EbuTtDDestinationSettings

func (ChannelCaptionDestinationSettingsOutput) ElementType

func (ChannelCaptionDestinationSettingsOutput) EmbeddedDestinationSettings

func (ChannelCaptionDestinationSettingsOutput) EmbeddedPlusScte20DestinationSettings

func (ChannelCaptionDestinationSettingsOutput) RtmpCaptionInfoDestinationSettings

func (ChannelCaptionDestinationSettingsOutput) Scte20PlusEmbeddedDestinationSettings

func (ChannelCaptionDestinationSettingsOutput) Scte27DestinationSettings

func (ChannelCaptionDestinationSettingsOutput) SmpteTtDestinationSettings

func (ChannelCaptionDestinationSettingsOutput) TeletextDestinationSettings

func (ChannelCaptionDestinationSettingsOutput) ToChannelCaptionDestinationSettingsOutput

func (o ChannelCaptionDestinationSettingsOutput) ToChannelCaptionDestinationSettingsOutput() ChannelCaptionDestinationSettingsOutput

func (ChannelCaptionDestinationSettingsOutput) ToChannelCaptionDestinationSettingsOutputWithContext

func (o ChannelCaptionDestinationSettingsOutput) ToChannelCaptionDestinationSettingsOutputWithContext(ctx context.Context) ChannelCaptionDestinationSettingsOutput

func (ChannelCaptionDestinationSettingsOutput) ToChannelCaptionDestinationSettingsPtrOutput

func (o ChannelCaptionDestinationSettingsOutput) ToChannelCaptionDestinationSettingsPtrOutput() ChannelCaptionDestinationSettingsPtrOutput

func (ChannelCaptionDestinationSettingsOutput) ToChannelCaptionDestinationSettingsPtrOutputWithContext

func (o ChannelCaptionDestinationSettingsOutput) ToChannelCaptionDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelCaptionDestinationSettingsPtrOutput

func (ChannelCaptionDestinationSettingsOutput) ToOutput added in v0.76.0

func (ChannelCaptionDestinationSettingsOutput) TtmlDestinationSettings

func (ChannelCaptionDestinationSettingsOutput) WebvttDestinationSettings

type ChannelCaptionDestinationSettingsPtrInput

type ChannelCaptionDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelCaptionDestinationSettingsPtrOutput() ChannelCaptionDestinationSettingsPtrOutput
	ToChannelCaptionDestinationSettingsPtrOutputWithContext(context.Context) ChannelCaptionDestinationSettingsPtrOutput
}

ChannelCaptionDestinationSettingsPtrInput is an input type that accepts ChannelCaptionDestinationSettingsArgs, ChannelCaptionDestinationSettingsPtr and ChannelCaptionDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelCaptionDestinationSettingsPtrInput` via:

        ChannelCaptionDestinationSettingsArgs{...}

or:

        nil

type ChannelCaptionDestinationSettingsPtrOutput

type ChannelCaptionDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelCaptionDestinationSettingsPtrOutput) AribDestinationSettings

func (ChannelCaptionDestinationSettingsPtrOutput) BurnInDestinationSettings

func (ChannelCaptionDestinationSettingsPtrOutput) DvbSubDestinationSettings

func (ChannelCaptionDestinationSettingsPtrOutput) EbuTtDDestinationSettings

func (ChannelCaptionDestinationSettingsPtrOutput) Elem

func (ChannelCaptionDestinationSettingsPtrOutput) ElementType

func (ChannelCaptionDestinationSettingsPtrOutput) EmbeddedDestinationSettings

func (ChannelCaptionDestinationSettingsPtrOutput) EmbeddedPlusScte20DestinationSettings

func (ChannelCaptionDestinationSettingsPtrOutput) RtmpCaptionInfoDestinationSettings

func (ChannelCaptionDestinationSettingsPtrOutput) Scte20PlusEmbeddedDestinationSettings

func (ChannelCaptionDestinationSettingsPtrOutput) Scte27DestinationSettings

func (ChannelCaptionDestinationSettingsPtrOutput) SmpteTtDestinationSettings

func (ChannelCaptionDestinationSettingsPtrOutput) TeletextDestinationSettings

func (ChannelCaptionDestinationSettingsPtrOutput) ToChannelCaptionDestinationSettingsPtrOutput

func (o ChannelCaptionDestinationSettingsPtrOutput) ToChannelCaptionDestinationSettingsPtrOutput() ChannelCaptionDestinationSettingsPtrOutput

func (ChannelCaptionDestinationSettingsPtrOutput) ToChannelCaptionDestinationSettingsPtrOutputWithContext

func (o ChannelCaptionDestinationSettingsPtrOutput) ToChannelCaptionDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelCaptionDestinationSettingsPtrOutput

func (ChannelCaptionDestinationSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelCaptionDestinationSettingsPtrOutput) TtmlDestinationSettings

func (ChannelCaptionDestinationSettingsPtrOutput) WebvttDestinationSettings

type ChannelCaptionLanguageMapping

type ChannelCaptionLanguageMapping struct {
	CaptionChannel      *int    `pulumi:"captionChannel"`
	LanguageCode        *string `pulumi:"languageCode"`
	LanguageDescription *string `pulumi:"languageDescription"`
}

type ChannelCaptionLanguageMappingArgs

type ChannelCaptionLanguageMappingArgs struct {
	CaptionChannel      pulumi.IntPtrInput    `pulumi:"captionChannel"`
	LanguageCode        pulumi.StringPtrInput `pulumi:"languageCode"`
	LanguageDescription pulumi.StringPtrInput `pulumi:"languageDescription"`
}

func (ChannelCaptionLanguageMappingArgs) ElementType

func (ChannelCaptionLanguageMappingArgs) ToChannelCaptionLanguageMappingOutput

func (i ChannelCaptionLanguageMappingArgs) ToChannelCaptionLanguageMappingOutput() ChannelCaptionLanguageMappingOutput

func (ChannelCaptionLanguageMappingArgs) ToChannelCaptionLanguageMappingOutputWithContext

func (i ChannelCaptionLanguageMappingArgs) ToChannelCaptionLanguageMappingOutputWithContext(ctx context.Context) ChannelCaptionLanguageMappingOutput

func (ChannelCaptionLanguageMappingArgs) ToOutput added in v0.76.0

type ChannelCaptionLanguageMappingArray

type ChannelCaptionLanguageMappingArray []ChannelCaptionLanguageMappingInput

func (ChannelCaptionLanguageMappingArray) ElementType

func (ChannelCaptionLanguageMappingArray) ToChannelCaptionLanguageMappingArrayOutput

func (i ChannelCaptionLanguageMappingArray) ToChannelCaptionLanguageMappingArrayOutput() ChannelCaptionLanguageMappingArrayOutput

func (ChannelCaptionLanguageMappingArray) ToChannelCaptionLanguageMappingArrayOutputWithContext

func (i ChannelCaptionLanguageMappingArray) ToChannelCaptionLanguageMappingArrayOutputWithContext(ctx context.Context) ChannelCaptionLanguageMappingArrayOutput

func (ChannelCaptionLanguageMappingArray) ToOutput added in v0.76.0

type ChannelCaptionLanguageMappingArrayInput

type ChannelCaptionLanguageMappingArrayInput interface {
	pulumi.Input

	ToChannelCaptionLanguageMappingArrayOutput() ChannelCaptionLanguageMappingArrayOutput
	ToChannelCaptionLanguageMappingArrayOutputWithContext(context.Context) ChannelCaptionLanguageMappingArrayOutput
}

ChannelCaptionLanguageMappingArrayInput is an input type that accepts ChannelCaptionLanguageMappingArray and ChannelCaptionLanguageMappingArrayOutput values. You can construct a concrete instance of `ChannelCaptionLanguageMappingArrayInput` via:

ChannelCaptionLanguageMappingArray{ ChannelCaptionLanguageMappingArgs{...} }

type ChannelCaptionLanguageMappingArrayOutput

type ChannelCaptionLanguageMappingArrayOutput struct{ *pulumi.OutputState }

func (ChannelCaptionLanguageMappingArrayOutput) ElementType

func (ChannelCaptionLanguageMappingArrayOutput) Index

func (ChannelCaptionLanguageMappingArrayOutput) ToChannelCaptionLanguageMappingArrayOutput

func (o ChannelCaptionLanguageMappingArrayOutput) ToChannelCaptionLanguageMappingArrayOutput() ChannelCaptionLanguageMappingArrayOutput

func (ChannelCaptionLanguageMappingArrayOutput) ToChannelCaptionLanguageMappingArrayOutputWithContext

func (o ChannelCaptionLanguageMappingArrayOutput) ToChannelCaptionLanguageMappingArrayOutputWithContext(ctx context.Context) ChannelCaptionLanguageMappingArrayOutput

func (ChannelCaptionLanguageMappingArrayOutput) ToOutput added in v0.76.0

type ChannelCaptionLanguageMappingInput

type ChannelCaptionLanguageMappingInput interface {
	pulumi.Input

	ToChannelCaptionLanguageMappingOutput() ChannelCaptionLanguageMappingOutput
	ToChannelCaptionLanguageMappingOutputWithContext(context.Context) ChannelCaptionLanguageMappingOutput
}

ChannelCaptionLanguageMappingInput is an input type that accepts ChannelCaptionLanguageMappingArgs and ChannelCaptionLanguageMappingOutput values. You can construct a concrete instance of `ChannelCaptionLanguageMappingInput` via:

ChannelCaptionLanguageMappingArgs{...}

type ChannelCaptionLanguageMappingOutput

type ChannelCaptionLanguageMappingOutput struct{ *pulumi.OutputState }

func (ChannelCaptionLanguageMappingOutput) CaptionChannel

func (ChannelCaptionLanguageMappingOutput) ElementType

func (ChannelCaptionLanguageMappingOutput) LanguageCode

func (ChannelCaptionLanguageMappingOutput) LanguageDescription

func (ChannelCaptionLanguageMappingOutput) ToChannelCaptionLanguageMappingOutput

func (o ChannelCaptionLanguageMappingOutput) ToChannelCaptionLanguageMappingOutput() ChannelCaptionLanguageMappingOutput

func (ChannelCaptionLanguageMappingOutput) ToChannelCaptionLanguageMappingOutputWithContext

func (o ChannelCaptionLanguageMappingOutput) ToChannelCaptionLanguageMappingOutputWithContext(ctx context.Context) ChannelCaptionLanguageMappingOutput

func (ChannelCaptionLanguageMappingOutput) ToOutput added in v0.76.0

type ChannelCaptionRectangle

type ChannelCaptionRectangle struct {
	Height     *float64 `pulumi:"height"`
	LeftOffset *float64 `pulumi:"leftOffset"`
	TopOffset  *float64 `pulumi:"topOffset"`
	Width      *float64 `pulumi:"width"`
}

type ChannelCaptionRectangleArgs

type ChannelCaptionRectangleArgs struct {
	Height     pulumi.Float64PtrInput `pulumi:"height"`
	LeftOffset pulumi.Float64PtrInput `pulumi:"leftOffset"`
	TopOffset  pulumi.Float64PtrInput `pulumi:"topOffset"`
	Width      pulumi.Float64PtrInput `pulumi:"width"`
}

func (ChannelCaptionRectangleArgs) ElementType

func (ChannelCaptionRectangleArgs) ToChannelCaptionRectangleOutput

func (i ChannelCaptionRectangleArgs) ToChannelCaptionRectangleOutput() ChannelCaptionRectangleOutput

func (ChannelCaptionRectangleArgs) ToChannelCaptionRectangleOutputWithContext

func (i ChannelCaptionRectangleArgs) ToChannelCaptionRectangleOutputWithContext(ctx context.Context) ChannelCaptionRectangleOutput

func (ChannelCaptionRectangleArgs) ToChannelCaptionRectanglePtrOutput

func (i ChannelCaptionRectangleArgs) ToChannelCaptionRectanglePtrOutput() ChannelCaptionRectanglePtrOutput

func (ChannelCaptionRectangleArgs) ToChannelCaptionRectanglePtrOutputWithContext

func (i ChannelCaptionRectangleArgs) ToChannelCaptionRectanglePtrOutputWithContext(ctx context.Context) ChannelCaptionRectanglePtrOutput

func (ChannelCaptionRectangleArgs) ToOutput added in v0.76.0

type ChannelCaptionRectangleInput

type ChannelCaptionRectangleInput interface {
	pulumi.Input

	ToChannelCaptionRectangleOutput() ChannelCaptionRectangleOutput
	ToChannelCaptionRectangleOutputWithContext(context.Context) ChannelCaptionRectangleOutput
}

ChannelCaptionRectangleInput is an input type that accepts ChannelCaptionRectangleArgs and ChannelCaptionRectangleOutput values. You can construct a concrete instance of `ChannelCaptionRectangleInput` via:

ChannelCaptionRectangleArgs{...}

type ChannelCaptionRectangleOutput

type ChannelCaptionRectangleOutput struct{ *pulumi.OutputState }

func (ChannelCaptionRectangleOutput) ElementType

func (ChannelCaptionRectangleOutput) Height

func (ChannelCaptionRectangleOutput) LeftOffset

func (ChannelCaptionRectangleOutput) ToChannelCaptionRectangleOutput

func (o ChannelCaptionRectangleOutput) ToChannelCaptionRectangleOutput() ChannelCaptionRectangleOutput

func (ChannelCaptionRectangleOutput) ToChannelCaptionRectangleOutputWithContext

func (o ChannelCaptionRectangleOutput) ToChannelCaptionRectangleOutputWithContext(ctx context.Context) ChannelCaptionRectangleOutput

func (ChannelCaptionRectangleOutput) ToChannelCaptionRectanglePtrOutput

func (o ChannelCaptionRectangleOutput) ToChannelCaptionRectanglePtrOutput() ChannelCaptionRectanglePtrOutput

func (ChannelCaptionRectangleOutput) ToChannelCaptionRectanglePtrOutputWithContext

func (o ChannelCaptionRectangleOutput) ToChannelCaptionRectanglePtrOutputWithContext(ctx context.Context) ChannelCaptionRectanglePtrOutput

func (ChannelCaptionRectangleOutput) ToOutput added in v0.76.0

func (ChannelCaptionRectangleOutput) TopOffset

func (ChannelCaptionRectangleOutput) Width

type ChannelCaptionRectanglePtrInput

type ChannelCaptionRectanglePtrInput interface {
	pulumi.Input

	ToChannelCaptionRectanglePtrOutput() ChannelCaptionRectanglePtrOutput
	ToChannelCaptionRectanglePtrOutputWithContext(context.Context) ChannelCaptionRectanglePtrOutput
}

ChannelCaptionRectanglePtrInput is an input type that accepts ChannelCaptionRectangleArgs, ChannelCaptionRectanglePtr and ChannelCaptionRectanglePtrOutput values. You can construct a concrete instance of `ChannelCaptionRectanglePtrInput` via:

        ChannelCaptionRectangleArgs{...}

or:

        nil

type ChannelCaptionRectanglePtrOutput

type ChannelCaptionRectanglePtrOutput struct{ *pulumi.OutputState }

func (ChannelCaptionRectanglePtrOutput) Elem

func (ChannelCaptionRectanglePtrOutput) ElementType

func (ChannelCaptionRectanglePtrOutput) Height

func (ChannelCaptionRectanglePtrOutput) LeftOffset

func (ChannelCaptionRectanglePtrOutput) ToChannelCaptionRectanglePtrOutput

func (o ChannelCaptionRectanglePtrOutput) ToChannelCaptionRectanglePtrOutput() ChannelCaptionRectanglePtrOutput

func (ChannelCaptionRectanglePtrOutput) ToChannelCaptionRectanglePtrOutputWithContext

func (o ChannelCaptionRectanglePtrOutput) ToChannelCaptionRectanglePtrOutputWithContext(ctx context.Context) ChannelCaptionRectanglePtrOutput

func (ChannelCaptionRectanglePtrOutput) ToOutput added in v0.76.0

func (ChannelCaptionRectanglePtrOutput) TopOffset

func (ChannelCaptionRectanglePtrOutput) Width

type ChannelCaptionSelector

type ChannelCaptionSelector struct {
	LanguageCode     *string                         `pulumi:"languageCode"`
	Name             *string                         `pulumi:"name"`
	SelectorSettings *ChannelCaptionSelectorSettings `pulumi:"selectorSettings"`
}

type ChannelCaptionSelectorArgs

type ChannelCaptionSelectorArgs struct {
	LanguageCode     pulumi.StringPtrInput                  `pulumi:"languageCode"`
	Name             pulumi.StringPtrInput                  `pulumi:"name"`
	SelectorSettings ChannelCaptionSelectorSettingsPtrInput `pulumi:"selectorSettings"`
}

func (ChannelCaptionSelectorArgs) ElementType

func (ChannelCaptionSelectorArgs) ElementType() reflect.Type

func (ChannelCaptionSelectorArgs) ToChannelCaptionSelectorOutput

func (i ChannelCaptionSelectorArgs) ToChannelCaptionSelectorOutput() ChannelCaptionSelectorOutput

func (ChannelCaptionSelectorArgs) ToChannelCaptionSelectorOutputWithContext

func (i ChannelCaptionSelectorArgs) ToChannelCaptionSelectorOutputWithContext(ctx context.Context) ChannelCaptionSelectorOutput

func (ChannelCaptionSelectorArgs) ToOutput added in v0.76.0

type ChannelCaptionSelectorArray

type ChannelCaptionSelectorArray []ChannelCaptionSelectorInput

func (ChannelCaptionSelectorArray) ElementType

func (ChannelCaptionSelectorArray) ToChannelCaptionSelectorArrayOutput

func (i ChannelCaptionSelectorArray) ToChannelCaptionSelectorArrayOutput() ChannelCaptionSelectorArrayOutput

func (ChannelCaptionSelectorArray) ToChannelCaptionSelectorArrayOutputWithContext

func (i ChannelCaptionSelectorArray) ToChannelCaptionSelectorArrayOutputWithContext(ctx context.Context) ChannelCaptionSelectorArrayOutput

func (ChannelCaptionSelectorArray) ToOutput added in v0.76.0

type ChannelCaptionSelectorArrayInput

type ChannelCaptionSelectorArrayInput interface {
	pulumi.Input

	ToChannelCaptionSelectorArrayOutput() ChannelCaptionSelectorArrayOutput
	ToChannelCaptionSelectorArrayOutputWithContext(context.Context) ChannelCaptionSelectorArrayOutput
}

ChannelCaptionSelectorArrayInput is an input type that accepts ChannelCaptionSelectorArray and ChannelCaptionSelectorArrayOutput values. You can construct a concrete instance of `ChannelCaptionSelectorArrayInput` via:

ChannelCaptionSelectorArray{ ChannelCaptionSelectorArgs{...} }

type ChannelCaptionSelectorArrayOutput

type ChannelCaptionSelectorArrayOutput struct{ *pulumi.OutputState }

func (ChannelCaptionSelectorArrayOutput) ElementType

func (ChannelCaptionSelectorArrayOutput) Index

func (ChannelCaptionSelectorArrayOutput) ToChannelCaptionSelectorArrayOutput

func (o ChannelCaptionSelectorArrayOutput) ToChannelCaptionSelectorArrayOutput() ChannelCaptionSelectorArrayOutput

func (ChannelCaptionSelectorArrayOutput) ToChannelCaptionSelectorArrayOutputWithContext

func (o ChannelCaptionSelectorArrayOutput) ToChannelCaptionSelectorArrayOutputWithContext(ctx context.Context) ChannelCaptionSelectorArrayOutput

func (ChannelCaptionSelectorArrayOutput) ToOutput added in v0.76.0

type ChannelCaptionSelectorInput

type ChannelCaptionSelectorInput interface {
	pulumi.Input

	ToChannelCaptionSelectorOutput() ChannelCaptionSelectorOutput
	ToChannelCaptionSelectorOutputWithContext(context.Context) ChannelCaptionSelectorOutput
}

ChannelCaptionSelectorInput is an input type that accepts ChannelCaptionSelectorArgs and ChannelCaptionSelectorOutput values. You can construct a concrete instance of `ChannelCaptionSelectorInput` via:

ChannelCaptionSelectorArgs{...}

type ChannelCaptionSelectorOutput

type ChannelCaptionSelectorOutput struct{ *pulumi.OutputState }

func (ChannelCaptionSelectorOutput) ElementType

func (ChannelCaptionSelectorOutput) LanguageCode

func (ChannelCaptionSelectorOutput) Name

func (ChannelCaptionSelectorOutput) SelectorSettings

func (ChannelCaptionSelectorOutput) ToChannelCaptionSelectorOutput

func (o ChannelCaptionSelectorOutput) ToChannelCaptionSelectorOutput() ChannelCaptionSelectorOutput

func (ChannelCaptionSelectorOutput) ToChannelCaptionSelectorOutputWithContext

func (o ChannelCaptionSelectorOutput) ToChannelCaptionSelectorOutputWithContext(ctx context.Context) ChannelCaptionSelectorOutput

func (ChannelCaptionSelectorOutput) ToOutput added in v0.76.0

type ChannelCaptionSelectorSettings

type ChannelCaptionSelectorSettings struct {
	AncillarySourceSettings *ChannelAncillarySourceSettings `pulumi:"ancillarySourceSettings"`
	AribSourceSettings      *ChannelAribSourceSettings      `pulumi:"aribSourceSettings"`
	DvbSubSourceSettings    *ChannelDvbSubSourceSettings    `pulumi:"dvbSubSourceSettings"`
	EmbeddedSourceSettings  *ChannelEmbeddedSourceSettings  `pulumi:"embeddedSourceSettings"`
	Scte20SourceSettings    *ChannelScte20SourceSettings    `pulumi:"scte20SourceSettings"`
	Scte27SourceSettings    *ChannelScte27SourceSettings    `pulumi:"scte27SourceSettings"`
	TeletextSourceSettings  *ChannelTeletextSourceSettings  `pulumi:"teletextSourceSettings"`
}

type ChannelCaptionSelectorSettingsArgs

type ChannelCaptionSelectorSettingsArgs struct {
	AncillarySourceSettings ChannelAncillarySourceSettingsPtrInput `pulumi:"ancillarySourceSettings"`
	AribSourceSettings      ChannelAribSourceSettingsPtrInput      `pulumi:"aribSourceSettings"`
	DvbSubSourceSettings    ChannelDvbSubSourceSettingsPtrInput    `pulumi:"dvbSubSourceSettings"`
	EmbeddedSourceSettings  ChannelEmbeddedSourceSettingsPtrInput  `pulumi:"embeddedSourceSettings"`
	Scte20SourceSettings    ChannelScte20SourceSettingsPtrInput    `pulumi:"scte20SourceSettings"`
	Scte27SourceSettings    ChannelScte27SourceSettingsPtrInput    `pulumi:"scte27SourceSettings"`
	TeletextSourceSettings  ChannelTeletextSourceSettingsPtrInput  `pulumi:"teletextSourceSettings"`
}

func (ChannelCaptionSelectorSettingsArgs) ElementType

func (ChannelCaptionSelectorSettingsArgs) ToChannelCaptionSelectorSettingsOutput

func (i ChannelCaptionSelectorSettingsArgs) ToChannelCaptionSelectorSettingsOutput() ChannelCaptionSelectorSettingsOutput

func (ChannelCaptionSelectorSettingsArgs) ToChannelCaptionSelectorSettingsOutputWithContext

func (i ChannelCaptionSelectorSettingsArgs) ToChannelCaptionSelectorSettingsOutputWithContext(ctx context.Context) ChannelCaptionSelectorSettingsOutput

func (ChannelCaptionSelectorSettingsArgs) ToChannelCaptionSelectorSettingsPtrOutput

func (i ChannelCaptionSelectorSettingsArgs) ToChannelCaptionSelectorSettingsPtrOutput() ChannelCaptionSelectorSettingsPtrOutput

func (ChannelCaptionSelectorSettingsArgs) ToChannelCaptionSelectorSettingsPtrOutputWithContext

func (i ChannelCaptionSelectorSettingsArgs) ToChannelCaptionSelectorSettingsPtrOutputWithContext(ctx context.Context) ChannelCaptionSelectorSettingsPtrOutput

func (ChannelCaptionSelectorSettingsArgs) ToOutput added in v0.76.0

type ChannelCaptionSelectorSettingsInput

type ChannelCaptionSelectorSettingsInput interface {
	pulumi.Input

	ToChannelCaptionSelectorSettingsOutput() ChannelCaptionSelectorSettingsOutput
	ToChannelCaptionSelectorSettingsOutputWithContext(context.Context) ChannelCaptionSelectorSettingsOutput
}

ChannelCaptionSelectorSettingsInput is an input type that accepts ChannelCaptionSelectorSettingsArgs and ChannelCaptionSelectorSettingsOutput values. You can construct a concrete instance of `ChannelCaptionSelectorSettingsInput` via:

ChannelCaptionSelectorSettingsArgs{...}

type ChannelCaptionSelectorSettingsOutput

type ChannelCaptionSelectorSettingsOutput struct{ *pulumi.OutputState }

func (ChannelCaptionSelectorSettingsOutput) AncillarySourceSettings

func (ChannelCaptionSelectorSettingsOutput) AribSourceSettings

func (ChannelCaptionSelectorSettingsOutput) DvbSubSourceSettings

func (ChannelCaptionSelectorSettingsOutput) ElementType

func (ChannelCaptionSelectorSettingsOutput) EmbeddedSourceSettings

func (ChannelCaptionSelectorSettingsOutput) Scte20SourceSettings

func (ChannelCaptionSelectorSettingsOutput) Scte27SourceSettings

func (ChannelCaptionSelectorSettingsOutput) TeletextSourceSettings

func (ChannelCaptionSelectorSettingsOutput) ToChannelCaptionSelectorSettingsOutput

func (o ChannelCaptionSelectorSettingsOutput) ToChannelCaptionSelectorSettingsOutput() ChannelCaptionSelectorSettingsOutput

func (ChannelCaptionSelectorSettingsOutput) ToChannelCaptionSelectorSettingsOutputWithContext

func (o ChannelCaptionSelectorSettingsOutput) ToChannelCaptionSelectorSettingsOutputWithContext(ctx context.Context) ChannelCaptionSelectorSettingsOutput

func (ChannelCaptionSelectorSettingsOutput) ToChannelCaptionSelectorSettingsPtrOutput

func (o ChannelCaptionSelectorSettingsOutput) ToChannelCaptionSelectorSettingsPtrOutput() ChannelCaptionSelectorSettingsPtrOutput

func (ChannelCaptionSelectorSettingsOutput) ToChannelCaptionSelectorSettingsPtrOutputWithContext

func (o ChannelCaptionSelectorSettingsOutput) ToChannelCaptionSelectorSettingsPtrOutputWithContext(ctx context.Context) ChannelCaptionSelectorSettingsPtrOutput

func (ChannelCaptionSelectorSettingsOutput) ToOutput added in v0.76.0

type ChannelCaptionSelectorSettingsPtrInput

type ChannelCaptionSelectorSettingsPtrInput interface {
	pulumi.Input

	ToChannelCaptionSelectorSettingsPtrOutput() ChannelCaptionSelectorSettingsPtrOutput
	ToChannelCaptionSelectorSettingsPtrOutputWithContext(context.Context) ChannelCaptionSelectorSettingsPtrOutput
}

ChannelCaptionSelectorSettingsPtrInput is an input type that accepts ChannelCaptionSelectorSettingsArgs, ChannelCaptionSelectorSettingsPtr and ChannelCaptionSelectorSettingsPtrOutput values. You can construct a concrete instance of `ChannelCaptionSelectorSettingsPtrInput` via:

        ChannelCaptionSelectorSettingsArgs{...}

or:

        nil

type ChannelCaptionSelectorSettingsPtrOutput

type ChannelCaptionSelectorSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelCaptionSelectorSettingsPtrOutput) AncillarySourceSettings

func (ChannelCaptionSelectorSettingsPtrOutput) AribSourceSettings

func (ChannelCaptionSelectorSettingsPtrOutput) DvbSubSourceSettings

func (ChannelCaptionSelectorSettingsPtrOutput) Elem

func (ChannelCaptionSelectorSettingsPtrOutput) ElementType

func (ChannelCaptionSelectorSettingsPtrOutput) EmbeddedSourceSettings

func (ChannelCaptionSelectorSettingsPtrOutput) Scte20SourceSettings

func (ChannelCaptionSelectorSettingsPtrOutput) Scte27SourceSettings

func (ChannelCaptionSelectorSettingsPtrOutput) TeletextSourceSettings

func (ChannelCaptionSelectorSettingsPtrOutput) ToChannelCaptionSelectorSettingsPtrOutput

func (o ChannelCaptionSelectorSettingsPtrOutput) ToChannelCaptionSelectorSettingsPtrOutput() ChannelCaptionSelectorSettingsPtrOutput

func (ChannelCaptionSelectorSettingsPtrOutput) ToChannelCaptionSelectorSettingsPtrOutputWithContext

func (o ChannelCaptionSelectorSettingsPtrOutput) ToChannelCaptionSelectorSettingsPtrOutputWithContext(ctx context.Context) ChannelCaptionSelectorSettingsPtrOutput

func (ChannelCaptionSelectorSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelCdiInputSpecification

type ChannelCdiInputSpecification struct {
	Resolution *string `pulumi:"resolution"`
}

type ChannelCdiInputSpecificationArgs

type ChannelCdiInputSpecificationArgs struct {
	Resolution pulumi.StringPtrInput `pulumi:"resolution"`
}

func (ChannelCdiInputSpecificationArgs) ElementType

func (ChannelCdiInputSpecificationArgs) ToChannelCdiInputSpecificationOutput

func (i ChannelCdiInputSpecificationArgs) ToChannelCdiInputSpecificationOutput() ChannelCdiInputSpecificationOutput

func (ChannelCdiInputSpecificationArgs) ToChannelCdiInputSpecificationOutputWithContext

func (i ChannelCdiInputSpecificationArgs) ToChannelCdiInputSpecificationOutputWithContext(ctx context.Context) ChannelCdiInputSpecificationOutput

func (ChannelCdiInputSpecificationArgs) ToChannelCdiInputSpecificationPtrOutput

func (i ChannelCdiInputSpecificationArgs) ToChannelCdiInputSpecificationPtrOutput() ChannelCdiInputSpecificationPtrOutput

func (ChannelCdiInputSpecificationArgs) ToChannelCdiInputSpecificationPtrOutputWithContext

func (i ChannelCdiInputSpecificationArgs) ToChannelCdiInputSpecificationPtrOutputWithContext(ctx context.Context) ChannelCdiInputSpecificationPtrOutput

func (ChannelCdiInputSpecificationArgs) ToOutput added in v0.76.0

type ChannelCdiInputSpecificationInput

type ChannelCdiInputSpecificationInput interface {
	pulumi.Input

	ToChannelCdiInputSpecificationOutput() ChannelCdiInputSpecificationOutput
	ToChannelCdiInputSpecificationOutputWithContext(context.Context) ChannelCdiInputSpecificationOutput
}

ChannelCdiInputSpecificationInput is an input type that accepts ChannelCdiInputSpecificationArgs and ChannelCdiInputSpecificationOutput values. You can construct a concrete instance of `ChannelCdiInputSpecificationInput` via:

ChannelCdiInputSpecificationArgs{...}

type ChannelCdiInputSpecificationOutput

type ChannelCdiInputSpecificationOutput struct{ *pulumi.OutputState }

func (ChannelCdiInputSpecificationOutput) ElementType

func (ChannelCdiInputSpecificationOutput) Resolution

func (ChannelCdiInputSpecificationOutput) ToChannelCdiInputSpecificationOutput

func (o ChannelCdiInputSpecificationOutput) ToChannelCdiInputSpecificationOutput() ChannelCdiInputSpecificationOutput

func (ChannelCdiInputSpecificationOutput) ToChannelCdiInputSpecificationOutputWithContext

func (o ChannelCdiInputSpecificationOutput) ToChannelCdiInputSpecificationOutputWithContext(ctx context.Context) ChannelCdiInputSpecificationOutput

func (ChannelCdiInputSpecificationOutput) ToChannelCdiInputSpecificationPtrOutput

func (o ChannelCdiInputSpecificationOutput) ToChannelCdiInputSpecificationPtrOutput() ChannelCdiInputSpecificationPtrOutput

func (ChannelCdiInputSpecificationOutput) ToChannelCdiInputSpecificationPtrOutputWithContext

func (o ChannelCdiInputSpecificationOutput) ToChannelCdiInputSpecificationPtrOutputWithContext(ctx context.Context) ChannelCdiInputSpecificationPtrOutput

func (ChannelCdiInputSpecificationOutput) ToOutput added in v0.76.0

type ChannelCdiInputSpecificationPtrInput

type ChannelCdiInputSpecificationPtrInput interface {
	pulumi.Input

	ToChannelCdiInputSpecificationPtrOutput() ChannelCdiInputSpecificationPtrOutput
	ToChannelCdiInputSpecificationPtrOutputWithContext(context.Context) ChannelCdiInputSpecificationPtrOutput
}

ChannelCdiInputSpecificationPtrInput is an input type that accepts ChannelCdiInputSpecificationArgs, ChannelCdiInputSpecificationPtr and ChannelCdiInputSpecificationPtrOutput values. You can construct a concrete instance of `ChannelCdiInputSpecificationPtrInput` via:

        ChannelCdiInputSpecificationArgs{...}

or:

        nil

type ChannelCdiInputSpecificationPtrOutput

type ChannelCdiInputSpecificationPtrOutput struct{ *pulumi.OutputState }

func (ChannelCdiInputSpecificationPtrOutput) Elem

func (ChannelCdiInputSpecificationPtrOutput) ElementType

func (ChannelCdiInputSpecificationPtrOutput) Resolution

func (ChannelCdiInputSpecificationPtrOutput) ToChannelCdiInputSpecificationPtrOutput

func (o ChannelCdiInputSpecificationPtrOutput) ToChannelCdiInputSpecificationPtrOutput() ChannelCdiInputSpecificationPtrOutput

func (ChannelCdiInputSpecificationPtrOutput) ToChannelCdiInputSpecificationPtrOutputWithContext

func (o ChannelCdiInputSpecificationPtrOutput) ToChannelCdiInputSpecificationPtrOutputWithContext(ctx context.Context) ChannelCdiInputSpecificationPtrOutput

func (ChannelCdiInputSpecificationPtrOutput) ToOutput added in v0.76.0

type ChannelColorSpacePassthroughSettings

type ChannelColorSpacePassthroughSettings struct {
}

type ChannelColorSpacePassthroughSettingsArgs

type ChannelColorSpacePassthroughSettingsArgs struct {
}

func (ChannelColorSpacePassthroughSettingsArgs) ElementType

func (ChannelColorSpacePassthroughSettingsArgs) ToChannelColorSpacePassthroughSettingsOutput

func (i ChannelColorSpacePassthroughSettingsArgs) ToChannelColorSpacePassthroughSettingsOutput() ChannelColorSpacePassthroughSettingsOutput

func (ChannelColorSpacePassthroughSettingsArgs) ToChannelColorSpacePassthroughSettingsOutputWithContext

func (i ChannelColorSpacePassthroughSettingsArgs) ToChannelColorSpacePassthroughSettingsOutputWithContext(ctx context.Context) ChannelColorSpacePassthroughSettingsOutput

func (ChannelColorSpacePassthroughSettingsArgs) ToChannelColorSpacePassthroughSettingsPtrOutput

func (i ChannelColorSpacePassthroughSettingsArgs) ToChannelColorSpacePassthroughSettingsPtrOutput() ChannelColorSpacePassthroughSettingsPtrOutput

func (ChannelColorSpacePassthroughSettingsArgs) ToChannelColorSpacePassthroughSettingsPtrOutputWithContext

func (i ChannelColorSpacePassthroughSettingsArgs) ToChannelColorSpacePassthroughSettingsPtrOutputWithContext(ctx context.Context) ChannelColorSpacePassthroughSettingsPtrOutput

func (ChannelColorSpacePassthroughSettingsArgs) ToOutput added in v0.76.0

type ChannelColorSpacePassthroughSettingsInput

type ChannelColorSpacePassthroughSettingsInput interface {
	pulumi.Input

	ToChannelColorSpacePassthroughSettingsOutput() ChannelColorSpacePassthroughSettingsOutput
	ToChannelColorSpacePassthroughSettingsOutputWithContext(context.Context) ChannelColorSpacePassthroughSettingsOutput
}

ChannelColorSpacePassthroughSettingsInput is an input type that accepts ChannelColorSpacePassthroughSettingsArgs and ChannelColorSpacePassthroughSettingsOutput values. You can construct a concrete instance of `ChannelColorSpacePassthroughSettingsInput` via:

ChannelColorSpacePassthroughSettingsArgs{...}

type ChannelColorSpacePassthroughSettingsOutput

type ChannelColorSpacePassthroughSettingsOutput struct{ *pulumi.OutputState }

func (ChannelColorSpacePassthroughSettingsOutput) ElementType

func (ChannelColorSpacePassthroughSettingsOutput) ToChannelColorSpacePassthroughSettingsOutput

func (o ChannelColorSpacePassthroughSettingsOutput) ToChannelColorSpacePassthroughSettingsOutput() ChannelColorSpacePassthroughSettingsOutput

func (ChannelColorSpacePassthroughSettingsOutput) ToChannelColorSpacePassthroughSettingsOutputWithContext

func (o ChannelColorSpacePassthroughSettingsOutput) ToChannelColorSpacePassthroughSettingsOutputWithContext(ctx context.Context) ChannelColorSpacePassthroughSettingsOutput

func (ChannelColorSpacePassthroughSettingsOutput) ToChannelColorSpacePassthroughSettingsPtrOutput

func (o ChannelColorSpacePassthroughSettingsOutput) ToChannelColorSpacePassthroughSettingsPtrOutput() ChannelColorSpacePassthroughSettingsPtrOutput

func (ChannelColorSpacePassthroughSettingsOutput) ToChannelColorSpacePassthroughSettingsPtrOutputWithContext

func (o ChannelColorSpacePassthroughSettingsOutput) ToChannelColorSpacePassthroughSettingsPtrOutputWithContext(ctx context.Context) ChannelColorSpacePassthroughSettingsPtrOutput

func (ChannelColorSpacePassthroughSettingsOutput) ToOutput added in v0.76.0

type ChannelColorSpacePassthroughSettingsPtrInput

type ChannelColorSpacePassthroughSettingsPtrInput interface {
	pulumi.Input

	ToChannelColorSpacePassthroughSettingsPtrOutput() ChannelColorSpacePassthroughSettingsPtrOutput
	ToChannelColorSpacePassthroughSettingsPtrOutputWithContext(context.Context) ChannelColorSpacePassthroughSettingsPtrOutput
}

ChannelColorSpacePassthroughSettingsPtrInput is an input type that accepts ChannelColorSpacePassthroughSettingsArgs, ChannelColorSpacePassthroughSettingsPtr and ChannelColorSpacePassthroughSettingsPtrOutput values. You can construct a concrete instance of `ChannelColorSpacePassthroughSettingsPtrInput` via:

        ChannelColorSpacePassthroughSettingsArgs{...}

or:

        nil

type ChannelColorSpacePassthroughSettingsPtrOutput

type ChannelColorSpacePassthroughSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelColorSpacePassthroughSettingsPtrOutput) Elem

func (ChannelColorSpacePassthroughSettingsPtrOutput) ElementType

func (ChannelColorSpacePassthroughSettingsPtrOutput) ToChannelColorSpacePassthroughSettingsPtrOutput

func (o ChannelColorSpacePassthroughSettingsPtrOutput) ToChannelColorSpacePassthroughSettingsPtrOutput() ChannelColorSpacePassthroughSettingsPtrOutput

func (ChannelColorSpacePassthroughSettingsPtrOutput) ToChannelColorSpacePassthroughSettingsPtrOutputWithContext

func (o ChannelColorSpacePassthroughSettingsPtrOutput) ToChannelColorSpacePassthroughSettingsPtrOutputWithContext(ctx context.Context) ChannelColorSpacePassthroughSettingsPtrOutput

func (ChannelColorSpacePassthroughSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelDolbyVision81Settings added in v0.59.0

type ChannelDolbyVision81Settings struct {
}

type ChannelDolbyVision81SettingsArgs added in v0.59.0

type ChannelDolbyVision81SettingsArgs struct {
}

func (ChannelDolbyVision81SettingsArgs) ElementType added in v0.59.0

func (ChannelDolbyVision81SettingsArgs) ToChannelDolbyVision81SettingsOutput added in v0.59.0

func (i ChannelDolbyVision81SettingsArgs) ToChannelDolbyVision81SettingsOutput() ChannelDolbyVision81SettingsOutput

func (ChannelDolbyVision81SettingsArgs) ToChannelDolbyVision81SettingsOutputWithContext added in v0.59.0

func (i ChannelDolbyVision81SettingsArgs) ToChannelDolbyVision81SettingsOutputWithContext(ctx context.Context) ChannelDolbyVision81SettingsOutput

func (ChannelDolbyVision81SettingsArgs) ToChannelDolbyVision81SettingsPtrOutput added in v0.59.0

func (i ChannelDolbyVision81SettingsArgs) ToChannelDolbyVision81SettingsPtrOutput() ChannelDolbyVision81SettingsPtrOutput

func (ChannelDolbyVision81SettingsArgs) ToChannelDolbyVision81SettingsPtrOutputWithContext added in v0.59.0

func (i ChannelDolbyVision81SettingsArgs) ToChannelDolbyVision81SettingsPtrOutputWithContext(ctx context.Context) ChannelDolbyVision81SettingsPtrOutput

func (ChannelDolbyVision81SettingsArgs) ToOutput added in v0.76.0

type ChannelDolbyVision81SettingsInput added in v0.59.0

type ChannelDolbyVision81SettingsInput interface {
	pulumi.Input

	ToChannelDolbyVision81SettingsOutput() ChannelDolbyVision81SettingsOutput
	ToChannelDolbyVision81SettingsOutputWithContext(context.Context) ChannelDolbyVision81SettingsOutput
}

ChannelDolbyVision81SettingsInput is an input type that accepts ChannelDolbyVision81SettingsArgs and ChannelDolbyVision81SettingsOutput values. You can construct a concrete instance of `ChannelDolbyVision81SettingsInput` via:

ChannelDolbyVision81SettingsArgs{...}

type ChannelDolbyVision81SettingsOutput added in v0.59.0

type ChannelDolbyVision81SettingsOutput struct{ *pulumi.OutputState }

func (ChannelDolbyVision81SettingsOutput) ElementType added in v0.59.0

func (ChannelDolbyVision81SettingsOutput) ToChannelDolbyVision81SettingsOutput added in v0.59.0

func (o ChannelDolbyVision81SettingsOutput) ToChannelDolbyVision81SettingsOutput() ChannelDolbyVision81SettingsOutput

func (ChannelDolbyVision81SettingsOutput) ToChannelDolbyVision81SettingsOutputWithContext added in v0.59.0

func (o ChannelDolbyVision81SettingsOutput) ToChannelDolbyVision81SettingsOutputWithContext(ctx context.Context) ChannelDolbyVision81SettingsOutput

func (ChannelDolbyVision81SettingsOutput) ToChannelDolbyVision81SettingsPtrOutput added in v0.59.0

func (o ChannelDolbyVision81SettingsOutput) ToChannelDolbyVision81SettingsPtrOutput() ChannelDolbyVision81SettingsPtrOutput

func (ChannelDolbyVision81SettingsOutput) ToChannelDolbyVision81SettingsPtrOutputWithContext added in v0.59.0

func (o ChannelDolbyVision81SettingsOutput) ToChannelDolbyVision81SettingsPtrOutputWithContext(ctx context.Context) ChannelDolbyVision81SettingsPtrOutput

func (ChannelDolbyVision81SettingsOutput) ToOutput added in v0.76.0

type ChannelDolbyVision81SettingsPtrInput added in v0.59.0

type ChannelDolbyVision81SettingsPtrInput interface {
	pulumi.Input

	ToChannelDolbyVision81SettingsPtrOutput() ChannelDolbyVision81SettingsPtrOutput
	ToChannelDolbyVision81SettingsPtrOutputWithContext(context.Context) ChannelDolbyVision81SettingsPtrOutput
}

ChannelDolbyVision81SettingsPtrInput is an input type that accepts ChannelDolbyVision81SettingsArgs, ChannelDolbyVision81SettingsPtr and ChannelDolbyVision81SettingsPtrOutput values. You can construct a concrete instance of `ChannelDolbyVision81SettingsPtrInput` via:

        ChannelDolbyVision81SettingsArgs{...}

or:

        nil

func ChannelDolbyVision81SettingsPtr added in v0.59.0

type ChannelDolbyVision81SettingsPtrOutput added in v0.59.0

type ChannelDolbyVision81SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelDolbyVision81SettingsPtrOutput) Elem added in v0.59.0

func (ChannelDolbyVision81SettingsPtrOutput) ElementType added in v0.59.0

func (ChannelDolbyVision81SettingsPtrOutput) ToChannelDolbyVision81SettingsPtrOutput added in v0.59.0

func (o ChannelDolbyVision81SettingsPtrOutput) ToChannelDolbyVision81SettingsPtrOutput() ChannelDolbyVision81SettingsPtrOutput

func (ChannelDolbyVision81SettingsPtrOutput) ToChannelDolbyVision81SettingsPtrOutputWithContext added in v0.59.0

func (o ChannelDolbyVision81SettingsPtrOutput) ToChannelDolbyVision81SettingsPtrOutputWithContext(ctx context.Context) ChannelDolbyVision81SettingsPtrOutput

func (ChannelDolbyVision81SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelDvbNitSettings

type ChannelDvbNitSettings struct {
	NetworkId   *int    `pulumi:"networkId"`
	NetworkName *string `pulumi:"networkName"`
	RepInterval *int    `pulumi:"repInterval"`
}

type ChannelDvbNitSettingsArgs

type ChannelDvbNitSettingsArgs struct {
	NetworkId   pulumi.IntPtrInput    `pulumi:"networkId"`
	NetworkName pulumi.StringPtrInput `pulumi:"networkName"`
	RepInterval pulumi.IntPtrInput    `pulumi:"repInterval"`
}

func (ChannelDvbNitSettingsArgs) ElementType

func (ChannelDvbNitSettingsArgs) ElementType() reflect.Type

func (ChannelDvbNitSettingsArgs) ToChannelDvbNitSettingsOutput

func (i ChannelDvbNitSettingsArgs) ToChannelDvbNitSettingsOutput() ChannelDvbNitSettingsOutput

func (ChannelDvbNitSettingsArgs) ToChannelDvbNitSettingsOutputWithContext

func (i ChannelDvbNitSettingsArgs) ToChannelDvbNitSettingsOutputWithContext(ctx context.Context) ChannelDvbNitSettingsOutput

func (ChannelDvbNitSettingsArgs) ToChannelDvbNitSettingsPtrOutput

func (i ChannelDvbNitSettingsArgs) ToChannelDvbNitSettingsPtrOutput() ChannelDvbNitSettingsPtrOutput

func (ChannelDvbNitSettingsArgs) ToChannelDvbNitSettingsPtrOutputWithContext

func (i ChannelDvbNitSettingsArgs) ToChannelDvbNitSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbNitSettingsPtrOutput

func (ChannelDvbNitSettingsArgs) ToOutput added in v0.76.0

type ChannelDvbNitSettingsInput

type ChannelDvbNitSettingsInput interface {
	pulumi.Input

	ToChannelDvbNitSettingsOutput() ChannelDvbNitSettingsOutput
	ToChannelDvbNitSettingsOutputWithContext(context.Context) ChannelDvbNitSettingsOutput
}

ChannelDvbNitSettingsInput is an input type that accepts ChannelDvbNitSettingsArgs and ChannelDvbNitSettingsOutput values. You can construct a concrete instance of `ChannelDvbNitSettingsInput` via:

ChannelDvbNitSettingsArgs{...}

type ChannelDvbNitSettingsOutput

type ChannelDvbNitSettingsOutput struct{ *pulumi.OutputState }

func (ChannelDvbNitSettingsOutput) ElementType

func (ChannelDvbNitSettingsOutput) NetworkId

func (ChannelDvbNitSettingsOutput) NetworkName

func (ChannelDvbNitSettingsOutput) RepInterval

func (ChannelDvbNitSettingsOutput) ToChannelDvbNitSettingsOutput

func (o ChannelDvbNitSettingsOutput) ToChannelDvbNitSettingsOutput() ChannelDvbNitSettingsOutput

func (ChannelDvbNitSettingsOutput) ToChannelDvbNitSettingsOutputWithContext

func (o ChannelDvbNitSettingsOutput) ToChannelDvbNitSettingsOutputWithContext(ctx context.Context) ChannelDvbNitSettingsOutput

func (ChannelDvbNitSettingsOutput) ToChannelDvbNitSettingsPtrOutput

func (o ChannelDvbNitSettingsOutput) ToChannelDvbNitSettingsPtrOutput() ChannelDvbNitSettingsPtrOutput

func (ChannelDvbNitSettingsOutput) ToChannelDvbNitSettingsPtrOutputWithContext

func (o ChannelDvbNitSettingsOutput) ToChannelDvbNitSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbNitSettingsPtrOutput

func (ChannelDvbNitSettingsOutput) ToOutput added in v0.76.0

type ChannelDvbNitSettingsPtrInput

type ChannelDvbNitSettingsPtrInput interface {
	pulumi.Input

	ToChannelDvbNitSettingsPtrOutput() ChannelDvbNitSettingsPtrOutput
	ToChannelDvbNitSettingsPtrOutputWithContext(context.Context) ChannelDvbNitSettingsPtrOutput
}

ChannelDvbNitSettingsPtrInput is an input type that accepts ChannelDvbNitSettingsArgs, ChannelDvbNitSettingsPtr and ChannelDvbNitSettingsPtrOutput values. You can construct a concrete instance of `ChannelDvbNitSettingsPtrInput` via:

        ChannelDvbNitSettingsArgs{...}

or:

        nil

type ChannelDvbNitSettingsPtrOutput

type ChannelDvbNitSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelDvbNitSettingsPtrOutput) Elem

func (ChannelDvbNitSettingsPtrOutput) ElementType

func (ChannelDvbNitSettingsPtrOutput) NetworkId

func (ChannelDvbNitSettingsPtrOutput) NetworkName

func (ChannelDvbNitSettingsPtrOutput) RepInterval

func (ChannelDvbNitSettingsPtrOutput) ToChannelDvbNitSettingsPtrOutput

func (o ChannelDvbNitSettingsPtrOutput) ToChannelDvbNitSettingsPtrOutput() ChannelDvbNitSettingsPtrOutput

func (ChannelDvbNitSettingsPtrOutput) ToChannelDvbNitSettingsPtrOutputWithContext

func (o ChannelDvbNitSettingsPtrOutput) ToChannelDvbNitSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbNitSettingsPtrOutput

func (ChannelDvbNitSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelDvbSdtSettings

type ChannelDvbSdtSettings struct {
	OutputSdt           *string `pulumi:"outputSdt"`
	RepInterval         *int    `pulumi:"repInterval"`
	ServiceName         *string `pulumi:"serviceName"`
	ServiceProviderName *string `pulumi:"serviceProviderName"`
}

type ChannelDvbSdtSettingsArgs

type ChannelDvbSdtSettingsArgs struct {
	OutputSdt           pulumi.StringPtrInput `pulumi:"outputSdt"`
	RepInterval         pulumi.IntPtrInput    `pulumi:"repInterval"`
	ServiceName         pulumi.StringPtrInput `pulumi:"serviceName"`
	ServiceProviderName pulumi.StringPtrInput `pulumi:"serviceProviderName"`
}

func (ChannelDvbSdtSettingsArgs) ElementType

func (ChannelDvbSdtSettingsArgs) ElementType() reflect.Type

func (ChannelDvbSdtSettingsArgs) ToChannelDvbSdtSettingsOutput

func (i ChannelDvbSdtSettingsArgs) ToChannelDvbSdtSettingsOutput() ChannelDvbSdtSettingsOutput

func (ChannelDvbSdtSettingsArgs) ToChannelDvbSdtSettingsOutputWithContext

func (i ChannelDvbSdtSettingsArgs) ToChannelDvbSdtSettingsOutputWithContext(ctx context.Context) ChannelDvbSdtSettingsOutput

func (ChannelDvbSdtSettingsArgs) ToChannelDvbSdtSettingsPtrOutput

func (i ChannelDvbSdtSettingsArgs) ToChannelDvbSdtSettingsPtrOutput() ChannelDvbSdtSettingsPtrOutput

func (ChannelDvbSdtSettingsArgs) ToChannelDvbSdtSettingsPtrOutputWithContext

func (i ChannelDvbSdtSettingsArgs) ToChannelDvbSdtSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbSdtSettingsPtrOutput

func (ChannelDvbSdtSettingsArgs) ToOutput added in v0.76.0

type ChannelDvbSdtSettingsInput

type ChannelDvbSdtSettingsInput interface {
	pulumi.Input

	ToChannelDvbSdtSettingsOutput() ChannelDvbSdtSettingsOutput
	ToChannelDvbSdtSettingsOutputWithContext(context.Context) ChannelDvbSdtSettingsOutput
}

ChannelDvbSdtSettingsInput is an input type that accepts ChannelDvbSdtSettingsArgs and ChannelDvbSdtSettingsOutput values. You can construct a concrete instance of `ChannelDvbSdtSettingsInput` via:

ChannelDvbSdtSettingsArgs{...}

type ChannelDvbSdtSettingsOutput

type ChannelDvbSdtSettingsOutput struct{ *pulumi.OutputState }

func (ChannelDvbSdtSettingsOutput) ElementType

func (ChannelDvbSdtSettingsOutput) OutputSdt

func (ChannelDvbSdtSettingsOutput) RepInterval

func (ChannelDvbSdtSettingsOutput) ServiceName

func (ChannelDvbSdtSettingsOutput) ServiceProviderName

func (o ChannelDvbSdtSettingsOutput) ServiceProviderName() pulumi.StringPtrOutput

func (ChannelDvbSdtSettingsOutput) ToChannelDvbSdtSettingsOutput

func (o ChannelDvbSdtSettingsOutput) ToChannelDvbSdtSettingsOutput() ChannelDvbSdtSettingsOutput

func (ChannelDvbSdtSettingsOutput) ToChannelDvbSdtSettingsOutputWithContext

func (o ChannelDvbSdtSettingsOutput) ToChannelDvbSdtSettingsOutputWithContext(ctx context.Context) ChannelDvbSdtSettingsOutput

func (ChannelDvbSdtSettingsOutput) ToChannelDvbSdtSettingsPtrOutput

func (o ChannelDvbSdtSettingsOutput) ToChannelDvbSdtSettingsPtrOutput() ChannelDvbSdtSettingsPtrOutput

func (ChannelDvbSdtSettingsOutput) ToChannelDvbSdtSettingsPtrOutputWithContext

func (o ChannelDvbSdtSettingsOutput) ToChannelDvbSdtSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbSdtSettingsPtrOutput

func (ChannelDvbSdtSettingsOutput) ToOutput added in v0.76.0

type ChannelDvbSdtSettingsPtrInput

type ChannelDvbSdtSettingsPtrInput interface {
	pulumi.Input

	ToChannelDvbSdtSettingsPtrOutput() ChannelDvbSdtSettingsPtrOutput
	ToChannelDvbSdtSettingsPtrOutputWithContext(context.Context) ChannelDvbSdtSettingsPtrOutput
}

ChannelDvbSdtSettingsPtrInput is an input type that accepts ChannelDvbSdtSettingsArgs, ChannelDvbSdtSettingsPtr and ChannelDvbSdtSettingsPtrOutput values. You can construct a concrete instance of `ChannelDvbSdtSettingsPtrInput` via:

        ChannelDvbSdtSettingsArgs{...}

or:

        nil

type ChannelDvbSdtSettingsPtrOutput

type ChannelDvbSdtSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelDvbSdtSettingsPtrOutput) Elem

func (ChannelDvbSdtSettingsPtrOutput) ElementType

func (ChannelDvbSdtSettingsPtrOutput) OutputSdt

func (ChannelDvbSdtSettingsPtrOutput) RepInterval

func (ChannelDvbSdtSettingsPtrOutput) ServiceName

func (ChannelDvbSdtSettingsPtrOutput) ServiceProviderName

func (o ChannelDvbSdtSettingsPtrOutput) ServiceProviderName() pulumi.StringPtrOutput

func (ChannelDvbSdtSettingsPtrOutput) ToChannelDvbSdtSettingsPtrOutput

func (o ChannelDvbSdtSettingsPtrOutput) ToChannelDvbSdtSettingsPtrOutput() ChannelDvbSdtSettingsPtrOutput

func (ChannelDvbSdtSettingsPtrOutput) ToChannelDvbSdtSettingsPtrOutputWithContext

func (o ChannelDvbSdtSettingsPtrOutput) ToChannelDvbSdtSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbSdtSettingsPtrOutput

func (ChannelDvbSdtSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelDvbSubDestinationSettings

type ChannelDvbSubDestinationSettings struct {
	Alignment           *string               `pulumi:"alignment"`
	BackgroundColor     *string               `pulumi:"backgroundColor"`
	BackgroundOpacity   *int                  `pulumi:"backgroundOpacity"`
	Font                *ChannelInputLocation `pulumi:"font"`
	FontColor           *string               `pulumi:"fontColor"`
	FontOpacity         *int                  `pulumi:"fontOpacity"`
	FontResolution      *int                  `pulumi:"fontResolution"`
	FontSize            *string               `pulumi:"fontSize"`
	OutlineColor        *string               `pulumi:"outlineColor"`
	OutlineSize         *int                  `pulumi:"outlineSize"`
	ShadowColor         *string               `pulumi:"shadowColor"`
	ShadowOpacity       *int                  `pulumi:"shadowOpacity"`
	ShadowXOffset       *int                  `pulumi:"shadowXOffset"`
	ShadowYOffset       *int                  `pulumi:"shadowYOffset"`
	TeletextGridControl *string               `pulumi:"teletextGridControl"`
	XPosition           *int                  `pulumi:"xPosition"`
	YPosition           *int                  `pulumi:"yPosition"`
}

type ChannelDvbSubDestinationSettingsArgs

type ChannelDvbSubDestinationSettingsArgs struct {
	Alignment           pulumi.StringPtrInput        `pulumi:"alignment"`
	BackgroundColor     pulumi.StringPtrInput        `pulumi:"backgroundColor"`
	BackgroundOpacity   pulumi.IntPtrInput           `pulumi:"backgroundOpacity"`
	Font                ChannelInputLocationPtrInput `pulumi:"font"`
	FontColor           pulumi.StringPtrInput        `pulumi:"fontColor"`
	FontOpacity         pulumi.IntPtrInput           `pulumi:"fontOpacity"`
	FontResolution      pulumi.IntPtrInput           `pulumi:"fontResolution"`
	FontSize            pulumi.StringPtrInput        `pulumi:"fontSize"`
	OutlineColor        pulumi.StringPtrInput        `pulumi:"outlineColor"`
	OutlineSize         pulumi.IntPtrInput           `pulumi:"outlineSize"`
	ShadowColor         pulumi.StringPtrInput        `pulumi:"shadowColor"`
	ShadowOpacity       pulumi.IntPtrInput           `pulumi:"shadowOpacity"`
	ShadowXOffset       pulumi.IntPtrInput           `pulumi:"shadowXOffset"`
	ShadowYOffset       pulumi.IntPtrInput           `pulumi:"shadowYOffset"`
	TeletextGridControl pulumi.StringPtrInput        `pulumi:"teletextGridControl"`
	XPosition           pulumi.IntPtrInput           `pulumi:"xPosition"`
	YPosition           pulumi.IntPtrInput           `pulumi:"yPosition"`
}

func (ChannelDvbSubDestinationSettingsArgs) ElementType

func (ChannelDvbSubDestinationSettingsArgs) ToChannelDvbSubDestinationSettingsOutput

func (i ChannelDvbSubDestinationSettingsArgs) ToChannelDvbSubDestinationSettingsOutput() ChannelDvbSubDestinationSettingsOutput

func (ChannelDvbSubDestinationSettingsArgs) ToChannelDvbSubDestinationSettingsOutputWithContext

func (i ChannelDvbSubDestinationSettingsArgs) ToChannelDvbSubDestinationSettingsOutputWithContext(ctx context.Context) ChannelDvbSubDestinationSettingsOutput

func (ChannelDvbSubDestinationSettingsArgs) ToChannelDvbSubDestinationSettingsPtrOutput

func (i ChannelDvbSubDestinationSettingsArgs) ToChannelDvbSubDestinationSettingsPtrOutput() ChannelDvbSubDestinationSettingsPtrOutput

func (ChannelDvbSubDestinationSettingsArgs) ToChannelDvbSubDestinationSettingsPtrOutputWithContext

func (i ChannelDvbSubDestinationSettingsArgs) ToChannelDvbSubDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbSubDestinationSettingsPtrOutput

func (ChannelDvbSubDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelDvbSubDestinationSettingsInput

type ChannelDvbSubDestinationSettingsInput interface {
	pulumi.Input

	ToChannelDvbSubDestinationSettingsOutput() ChannelDvbSubDestinationSettingsOutput
	ToChannelDvbSubDestinationSettingsOutputWithContext(context.Context) ChannelDvbSubDestinationSettingsOutput
}

ChannelDvbSubDestinationSettingsInput is an input type that accepts ChannelDvbSubDestinationSettingsArgs and ChannelDvbSubDestinationSettingsOutput values. You can construct a concrete instance of `ChannelDvbSubDestinationSettingsInput` via:

ChannelDvbSubDestinationSettingsArgs{...}

type ChannelDvbSubDestinationSettingsOutput

type ChannelDvbSubDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelDvbSubDestinationSettingsOutput) Alignment

func (ChannelDvbSubDestinationSettingsOutput) BackgroundColor

func (ChannelDvbSubDestinationSettingsOutput) BackgroundOpacity

func (ChannelDvbSubDestinationSettingsOutput) ElementType

func (ChannelDvbSubDestinationSettingsOutput) Font

func (ChannelDvbSubDestinationSettingsOutput) FontColor

func (ChannelDvbSubDestinationSettingsOutput) FontOpacity

func (ChannelDvbSubDestinationSettingsOutput) FontResolution

func (ChannelDvbSubDestinationSettingsOutput) FontSize

func (ChannelDvbSubDestinationSettingsOutput) OutlineColor

func (ChannelDvbSubDestinationSettingsOutput) OutlineSize

func (ChannelDvbSubDestinationSettingsOutput) ShadowColor

func (ChannelDvbSubDestinationSettingsOutput) ShadowOpacity

func (ChannelDvbSubDestinationSettingsOutput) ShadowXOffset

func (ChannelDvbSubDestinationSettingsOutput) ShadowYOffset

func (ChannelDvbSubDestinationSettingsOutput) TeletextGridControl

func (ChannelDvbSubDestinationSettingsOutput) ToChannelDvbSubDestinationSettingsOutput

func (o ChannelDvbSubDestinationSettingsOutput) ToChannelDvbSubDestinationSettingsOutput() ChannelDvbSubDestinationSettingsOutput

func (ChannelDvbSubDestinationSettingsOutput) ToChannelDvbSubDestinationSettingsOutputWithContext

func (o ChannelDvbSubDestinationSettingsOutput) ToChannelDvbSubDestinationSettingsOutputWithContext(ctx context.Context) ChannelDvbSubDestinationSettingsOutput

func (ChannelDvbSubDestinationSettingsOutput) ToChannelDvbSubDestinationSettingsPtrOutput

func (o ChannelDvbSubDestinationSettingsOutput) ToChannelDvbSubDestinationSettingsPtrOutput() ChannelDvbSubDestinationSettingsPtrOutput

func (ChannelDvbSubDestinationSettingsOutput) ToChannelDvbSubDestinationSettingsPtrOutputWithContext

func (o ChannelDvbSubDestinationSettingsOutput) ToChannelDvbSubDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbSubDestinationSettingsPtrOutput

func (ChannelDvbSubDestinationSettingsOutput) ToOutput added in v0.76.0

func (ChannelDvbSubDestinationSettingsOutput) XPosition

func (ChannelDvbSubDestinationSettingsOutput) YPosition

type ChannelDvbSubDestinationSettingsPtrInput

type ChannelDvbSubDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelDvbSubDestinationSettingsPtrOutput() ChannelDvbSubDestinationSettingsPtrOutput
	ToChannelDvbSubDestinationSettingsPtrOutputWithContext(context.Context) ChannelDvbSubDestinationSettingsPtrOutput
}

ChannelDvbSubDestinationSettingsPtrInput is an input type that accepts ChannelDvbSubDestinationSettingsArgs, ChannelDvbSubDestinationSettingsPtr and ChannelDvbSubDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelDvbSubDestinationSettingsPtrInput` via:

        ChannelDvbSubDestinationSettingsArgs{...}

or:

        nil

type ChannelDvbSubDestinationSettingsPtrOutput

type ChannelDvbSubDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelDvbSubDestinationSettingsPtrOutput) Alignment

func (ChannelDvbSubDestinationSettingsPtrOutput) BackgroundColor

func (ChannelDvbSubDestinationSettingsPtrOutput) BackgroundOpacity

func (ChannelDvbSubDestinationSettingsPtrOutput) Elem

func (ChannelDvbSubDestinationSettingsPtrOutput) ElementType

func (ChannelDvbSubDestinationSettingsPtrOutput) Font

func (ChannelDvbSubDestinationSettingsPtrOutput) FontColor

func (ChannelDvbSubDestinationSettingsPtrOutput) FontOpacity

func (ChannelDvbSubDestinationSettingsPtrOutput) FontResolution

func (ChannelDvbSubDestinationSettingsPtrOutput) FontSize

func (ChannelDvbSubDestinationSettingsPtrOutput) OutlineColor

func (ChannelDvbSubDestinationSettingsPtrOutput) OutlineSize

func (ChannelDvbSubDestinationSettingsPtrOutput) ShadowColor

func (ChannelDvbSubDestinationSettingsPtrOutput) ShadowOpacity

func (ChannelDvbSubDestinationSettingsPtrOutput) ShadowXOffset

func (ChannelDvbSubDestinationSettingsPtrOutput) ShadowYOffset

func (ChannelDvbSubDestinationSettingsPtrOutput) TeletextGridControl

func (ChannelDvbSubDestinationSettingsPtrOutput) ToChannelDvbSubDestinationSettingsPtrOutput

func (o ChannelDvbSubDestinationSettingsPtrOutput) ToChannelDvbSubDestinationSettingsPtrOutput() ChannelDvbSubDestinationSettingsPtrOutput

func (ChannelDvbSubDestinationSettingsPtrOutput) ToChannelDvbSubDestinationSettingsPtrOutputWithContext

func (o ChannelDvbSubDestinationSettingsPtrOutput) ToChannelDvbSubDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbSubDestinationSettingsPtrOutput

func (ChannelDvbSubDestinationSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelDvbSubDestinationSettingsPtrOutput) XPosition

func (ChannelDvbSubDestinationSettingsPtrOutput) YPosition

type ChannelDvbSubSourceSettings

type ChannelDvbSubSourceSettings struct {
	OcrLanguage *string `pulumi:"ocrLanguage"`
	Pid         *int    `pulumi:"pid"`
}

type ChannelDvbSubSourceSettingsArgs

type ChannelDvbSubSourceSettingsArgs struct {
	OcrLanguage pulumi.StringPtrInput `pulumi:"ocrLanguage"`
	Pid         pulumi.IntPtrInput    `pulumi:"pid"`
}

func (ChannelDvbSubSourceSettingsArgs) ElementType

func (ChannelDvbSubSourceSettingsArgs) ToChannelDvbSubSourceSettingsOutput

func (i ChannelDvbSubSourceSettingsArgs) ToChannelDvbSubSourceSettingsOutput() ChannelDvbSubSourceSettingsOutput

func (ChannelDvbSubSourceSettingsArgs) ToChannelDvbSubSourceSettingsOutputWithContext

func (i ChannelDvbSubSourceSettingsArgs) ToChannelDvbSubSourceSettingsOutputWithContext(ctx context.Context) ChannelDvbSubSourceSettingsOutput

func (ChannelDvbSubSourceSettingsArgs) ToChannelDvbSubSourceSettingsPtrOutput

func (i ChannelDvbSubSourceSettingsArgs) ToChannelDvbSubSourceSettingsPtrOutput() ChannelDvbSubSourceSettingsPtrOutput

func (ChannelDvbSubSourceSettingsArgs) ToChannelDvbSubSourceSettingsPtrOutputWithContext

func (i ChannelDvbSubSourceSettingsArgs) ToChannelDvbSubSourceSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbSubSourceSettingsPtrOutput

func (ChannelDvbSubSourceSettingsArgs) ToOutput added in v0.76.0

type ChannelDvbSubSourceSettingsInput

type ChannelDvbSubSourceSettingsInput interface {
	pulumi.Input

	ToChannelDvbSubSourceSettingsOutput() ChannelDvbSubSourceSettingsOutput
	ToChannelDvbSubSourceSettingsOutputWithContext(context.Context) ChannelDvbSubSourceSettingsOutput
}

ChannelDvbSubSourceSettingsInput is an input type that accepts ChannelDvbSubSourceSettingsArgs and ChannelDvbSubSourceSettingsOutput values. You can construct a concrete instance of `ChannelDvbSubSourceSettingsInput` via:

ChannelDvbSubSourceSettingsArgs{...}

type ChannelDvbSubSourceSettingsOutput

type ChannelDvbSubSourceSettingsOutput struct{ *pulumi.OutputState }

func (ChannelDvbSubSourceSettingsOutput) ElementType

func (ChannelDvbSubSourceSettingsOutput) OcrLanguage added in v0.9.0

func (ChannelDvbSubSourceSettingsOutput) Pid

func (ChannelDvbSubSourceSettingsOutput) ToChannelDvbSubSourceSettingsOutput

func (o ChannelDvbSubSourceSettingsOutput) ToChannelDvbSubSourceSettingsOutput() ChannelDvbSubSourceSettingsOutput

func (ChannelDvbSubSourceSettingsOutput) ToChannelDvbSubSourceSettingsOutputWithContext

func (o ChannelDvbSubSourceSettingsOutput) ToChannelDvbSubSourceSettingsOutputWithContext(ctx context.Context) ChannelDvbSubSourceSettingsOutput

func (ChannelDvbSubSourceSettingsOutput) ToChannelDvbSubSourceSettingsPtrOutput

func (o ChannelDvbSubSourceSettingsOutput) ToChannelDvbSubSourceSettingsPtrOutput() ChannelDvbSubSourceSettingsPtrOutput

func (ChannelDvbSubSourceSettingsOutput) ToChannelDvbSubSourceSettingsPtrOutputWithContext

func (o ChannelDvbSubSourceSettingsOutput) ToChannelDvbSubSourceSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbSubSourceSettingsPtrOutput

func (ChannelDvbSubSourceSettingsOutput) ToOutput added in v0.76.0

type ChannelDvbSubSourceSettingsPtrInput

type ChannelDvbSubSourceSettingsPtrInput interface {
	pulumi.Input

	ToChannelDvbSubSourceSettingsPtrOutput() ChannelDvbSubSourceSettingsPtrOutput
	ToChannelDvbSubSourceSettingsPtrOutputWithContext(context.Context) ChannelDvbSubSourceSettingsPtrOutput
}

ChannelDvbSubSourceSettingsPtrInput is an input type that accepts ChannelDvbSubSourceSettingsArgs, ChannelDvbSubSourceSettingsPtr and ChannelDvbSubSourceSettingsPtrOutput values. You can construct a concrete instance of `ChannelDvbSubSourceSettingsPtrInput` via:

        ChannelDvbSubSourceSettingsArgs{...}

or:

        nil

type ChannelDvbSubSourceSettingsPtrOutput

type ChannelDvbSubSourceSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelDvbSubSourceSettingsPtrOutput) Elem

func (ChannelDvbSubSourceSettingsPtrOutput) ElementType

func (ChannelDvbSubSourceSettingsPtrOutput) OcrLanguage added in v0.9.0

func (ChannelDvbSubSourceSettingsPtrOutput) Pid

func (ChannelDvbSubSourceSettingsPtrOutput) ToChannelDvbSubSourceSettingsPtrOutput

func (o ChannelDvbSubSourceSettingsPtrOutput) ToChannelDvbSubSourceSettingsPtrOutput() ChannelDvbSubSourceSettingsPtrOutput

func (ChannelDvbSubSourceSettingsPtrOutput) ToChannelDvbSubSourceSettingsPtrOutputWithContext

func (o ChannelDvbSubSourceSettingsPtrOutput) ToChannelDvbSubSourceSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbSubSourceSettingsPtrOutput

func (ChannelDvbSubSourceSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelDvbTdtSettings

type ChannelDvbTdtSettings struct {
	RepInterval *int `pulumi:"repInterval"`
}

type ChannelDvbTdtSettingsArgs

type ChannelDvbTdtSettingsArgs struct {
	RepInterval pulumi.IntPtrInput `pulumi:"repInterval"`
}

func (ChannelDvbTdtSettingsArgs) ElementType

func (ChannelDvbTdtSettingsArgs) ElementType() reflect.Type

func (ChannelDvbTdtSettingsArgs) ToChannelDvbTdtSettingsOutput

func (i ChannelDvbTdtSettingsArgs) ToChannelDvbTdtSettingsOutput() ChannelDvbTdtSettingsOutput

func (ChannelDvbTdtSettingsArgs) ToChannelDvbTdtSettingsOutputWithContext

func (i ChannelDvbTdtSettingsArgs) ToChannelDvbTdtSettingsOutputWithContext(ctx context.Context) ChannelDvbTdtSettingsOutput

func (ChannelDvbTdtSettingsArgs) ToChannelDvbTdtSettingsPtrOutput

func (i ChannelDvbTdtSettingsArgs) ToChannelDvbTdtSettingsPtrOutput() ChannelDvbTdtSettingsPtrOutput

func (ChannelDvbTdtSettingsArgs) ToChannelDvbTdtSettingsPtrOutputWithContext

func (i ChannelDvbTdtSettingsArgs) ToChannelDvbTdtSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbTdtSettingsPtrOutput

func (ChannelDvbTdtSettingsArgs) ToOutput added in v0.76.0

type ChannelDvbTdtSettingsInput

type ChannelDvbTdtSettingsInput interface {
	pulumi.Input

	ToChannelDvbTdtSettingsOutput() ChannelDvbTdtSettingsOutput
	ToChannelDvbTdtSettingsOutputWithContext(context.Context) ChannelDvbTdtSettingsOutput
}

ChannelDvbTdtSettingsInput is an input type that accepts ChannelDvbTdtSettingsArgs and ChannelDvbTdtSettingsOutput values. You can construct a concrete instance of `ChannelDvbTdtSettingsInput` via:

ChannelDvbTdtSettingsArgs{...}

type ChannelDvbTdtSettingsOutput

type ChannelDvbTdtSettingsOutput struct{ *pulumi.OutputState }

func (ChannelDvbTdtSettingsOutput) ElementType

func (ChannelDvbTdtSettingsOutput) RepInterval

func (ChannelDvbTdtSettingsOutput) ToChannelDvbTdtSettingsOutput

func (o ChannelDvbTdtSettingsOutput) ToChannelDvbTdtSettingsOutput() ChannelDvbTdtSettingsOutput

func (ChannelDvbTdtSettingsOutput) ToChannelDvbTdtSettingsOutputWithContext

func (o ChannelDvbTdtSettingsOutput) ToChannelDvbTdtSettingsOutputWithContext(ctx context.Context) ChannelDvbTdtSettingsOutput

func (ChannelDvbTdtSettingsOutput) ToChannelDvbTdtSettingsPtrOutput

func (o ChannelDvbTdtSettingsOutput) ToChannelDvbTdtSettingsPtrOutput() ChannelDvbTdtSettingsPtrOutput

func (ChannelDvbTdtSettingsOutput) ToChannelDvbTdtSettingsPtrOutputWithContext

func (o ChannelDvbTdtSettingsOutput) ToChannelDvbTdtSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbTdtSettingsPtrOutput

func (ChannelDvbTdtSettingsOutput) ToOutput added in v0.76.0

type ChannelDvbTdtSettingsPtrInput

type ChannelDvbTdtSettingsPtrInput interface {
	pulumi.Input

	ToChannelDvbTdtSettingsPtrOutput() ChannelDvbTdtSettingsPtrOutput
	ToChannelDvbTdtSettingsPtrOutputWithContext(context.Context) ChannelDvbTdtSettingsPtrOutput
}

ChannelDvbTdtSettingsPtrInput is an input type that accepts ChannelDvbTdtSettingsArgs, ChannelDvbTdtSettingsPtr and ChannelDvbTdtSettingsPtrOutput values. You can construct a concrete instance of `ChannelDvbTdtSettingsPtrInput` via:

        ChannelDvbTdtSettingsArgs{...}

or:

        nil

type ChannelDvbTdtSettingsPtrOutput

type ChannelDvbTdtSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelDvbTdtSettingsPtrOutput) Elem

func (ChannelDvbTdtSettingsPtrOutput) ElementType

func (ChannelDvbTdtSettingsPtrOutput) RepInterval

func (ChannelDvbTdtSettingsPtrOutput) ToChannelDvbTdtSettingsPtrOutput

func (o ChannelDvbTdtSettingsPtrOutput) ToChannelDvbTdtSettingsPtrOutput() ChannelDvbTdtSettingsPtrOutput

func (ChannelDvbTdtSettingsPtrOutput) ToChannelDvbTdtSettingsPtrOutputWithContext

func (o ChannelDvbTdtSettingsPtrOutput) ToChannelDvbTdtSettingsPtrOutputWithContext(ctx context.Context) ChannelDvbTdtSettingsPtrOutput

func (ChannelDvbTdtSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelEac3AtmosSettings added in v0.59.0

type ChannelEac3AtmosSettings struct {
	Bitrate      *float64 `pulumi:"bitrate"`
	CodingMode   *string  `pulumi:"codingMode"`
	Dialnorm     *int     `pulumi:"dialnorm"`
	DrcLine      *string  `pulumi:"drcLine"`
	DrcRf        *string  `pulumi:"drcRf"`
	HeightTrim   *float64 `pulumi:"heightTrim"`
	SurroundTrim *float64 `pulumi:"surroundTrim"`
}

type ChannelEac3AtmosSettingsArgs added in v0.59.0

type ChannelEac3AtmosSettingsArgs struct {
	Bitrate      pulumi.Float64PtrInput `pulumi:"bitrate"`
	CodingMode   pulumi.StringPtrInput  `pulumi:"codingMode"`
	Dialnorm     pulumi.IntPtrInput     `pulumi:"dialnorm"`
	DrcLine      pulumi.StringPtrInput  `pulumi:"drcLine"`
	DrcRf        pulumi.StringPtrInput  `pulumi:"drcRf"`
	HeightTrim   pulumi.Float64PtrInput `pulumi:"heightTrim"`
	SurroundTrim pulumi.Float64PtrInput `pulumi:"surroundTrim"`
}

func (ChannelEac3AtmosSettingsArgs) ElementType added in v0.59.0

func (ChannelEac3AtmosSettingsArgs) ToChannelEac3AtmosSettingsOutput added in v0.59.0

func (i ChannelEac3AtmosSettingsArgs) ToChannelEac3AtmosSettingsOutput() ChannelEac3AtmosSettingsOutput

func (ChannelEac3AtmosSettingsArgs) ToChannelEac3AtmosSettingsOutputWithContext added in v0.59.0

func (i ChannelEac3AtmosSettingsArgs) ToChannelEac3AtmosSettingsOutputWithContext(ctx context.Context) ChannelEac3AtmosSettingsOutput

func (ChannelEac3AtmosSettingsArgs) ToChannelEac3AtmosSettingsPtrOutput added in v0.59.0

func (i ChannelEac3AtmosSettingsArgs) ToChannelEac3AtmosSettingsPtrOutput() ChannelEac3AtmosSettingsPtrOutput

func (ChannelEac3AtmosSettingsArgs) ToChannelEac3AtmosSettingsPtrOutputWithContext added in v0.59.0

func (i ChannelEac3AtmosSettingsArgs) ToChannelEac3AtmosSettingsPtrOutputWithContext(ctx context.Context) ChannelEac3AtmosSettingsPtrOutput

func (ChannelEac3AtmosSettingsArgs) ToOutput added in v0.76.0

type ChannelEac3AtmosSettingsInput added in v0.59.0

type ChannelEac3AtmosSettingsInput interface {
	pulumi.Input

	ToChannelEac3AtmosSettingsOutput() ChannelEac3AtmosSettingsOutput
	ToChannelEac3AtmosSettingsOutputWithContext(context.Context) ChannelEac3AtmosSettingsOutput
}

ChannelEac3AtmosSettingsInput is an input type that accepts ChannelEac3AtmosSettingsArgs and ChannelEac3AtmosSettingsOutput values. You can construct a concrete instance of `ChannelEac3AtmosSettingsInput` via:

ChannelEac3AtmosSettingsArgs{...}

type ChannelEac3AtmosSettingsOutput added in v0.59.0

type ChannelEac3AtmosSettingsOutput struct{ *pulumi.OutputState }

func (ChannelEac3AtmosSettingsOutput) Bitrate added in v0.59.0

func (ChannelEac3AtmosSettingsOutput) CodingMode added in v0.59.0

func (ChannelEac3AtmosSettingsOutput) Dialnorm added in v0.59.0

func (ChannelEac3AtmosSettingsOutput) DrcLine added in v0.59.0

func (ChannelEac3AtmosSettingsOutput) DrcRf added in v0.59.0

func (ChannelEac3AtmosSettingsOutput) ElementType added in v0.59.0

func (ChannelEac3AtmosSettingsOutput) HeightTrim added in v0.59.0

func (ChannelEac3AtmosSettingsOutput) SurroundTrim added in v0.59.0

func (ChannelEac3AtmosSettingsOutput) ToChannelEac3AtmosSettingsOutput added in v0.59.0

func (o ChannelEac3AtmosSettingsOutput) ToChannelEac3AtmosSettingsOutput() ChannelEac3AtmosSettingsOutput

func (ChannelEac3AtmosSettingsOutput) ToChannelEac3AtmosSettingsOutputWithContext added in v0.59.0

func (o ChannelEac3AtmosSettingsOutput) ToChannelEac3AtmosSettingsOutputWithContext(ctx context.Context) ChannelEac3AtmosSettingsOutput

func (ChannelEac3AtmosSettingsOutput) ToChannelEac3AtmosSettingsPtrOutput added in v0.59.0

func (o ChannelEac3AtmosSettingsOutput) ToChannelEac3AtmosSettingsPtrOutput() ChannelEac3AtmosSettingsPtrOutput

func (ChannelEac3AtmosSettingsOutput) ToChannelEac3AtmosSettingsPtrOutputWithContext added in v0.59.0

func (o ChannelEac3AtmosSettingsOutput) ToChannelEac3AtmosSettingsPtrOutputWithContext(ctx context.Context) ChannelEac3AtmosSettingsPtrOutput

func (ChannelEac3AtmosSettingsOutput) ToOutput added in v0.76.0

type ChannelEac3AtmosSettingsPtrInput added in v0.59.0

type ChannelEac3AtmosSettingsPtrInput interface {
	pulumi.Input

	ToChannelEac3AtmosSettingsPtrOutput() ChannelEac3AtmosSettingsPtrOutput
	ToChannelEac3AtmosSettingsPtrOutputWithContext(context.Context) ChannelEac3AtmosSettingsPtrOutput
}

ChannelEac3AtmosSettingsPtrInput is an input type that accepts ChannelEac3AtmosSettingsArgs, ChannelEac3AtmosSettingsPtr and ChannelEac3AtmosSettingsPtrOutput values. You can construct a concrete instance of `ChannelEac3AtmosSettingsPtrInput` via:

        ChannelEac3AtmosSettingsArgs{...}

or:

        nil

func ChannelEac3AtmosSettingsPtr added in v0.59.0

func ChannelEac3AtmosSettingsPtr(v *ChannelEac3AtmosSettingsArgs) ChannelEac3AtmosSettingsPtrInput

type ChannelEac3AtmosSettingsPtrOutput added in v0.59.0

type ChannelEac3AtmosSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelEac3AtmosSettingsPtrOutput) Bitrate added in v0.59.0

func (ChannelEac3AtmosSettingsPtrOutput) CodingMode added in v0.59.0

func (ChannelEac3AtmosSettingsPtrOutput) Dialnorm added in v0.59.0

func (ChannelEac3AtmosSettingsPtrOutput) DrcLine added in v0.59.0

func (ChannelEac3AtmosSettingsPtrOutput) DrcRf added in v0.59.0

func (ChannelEac3AtmosSettingsPtrOutput) Elem added in v0.59.0

func (ChannelEac3AtmosSettingsPtrOutput) ElementType added in v0.59.0

func (ChannelEac3AtmosSettingsPtrOutput) HeightTrim added in v0.59.0

func (ChannelEac3AtmosSettingsPtrOutput) SurroundTrim added in v0.59.0

func (ChannelEac3AtmosSettingsPtrOutput) ToChannelEac3AtmosSettingsPtrOutput added in v0.59.0

func (o ChannelEac3AtmosSettingsPtrOutput) ToChannelEac3AtmosSettingsPtrOutput() ChannelEac3AtmosSettingsPtrOutput

func (ChannelEac3AtmosSettingsPtrOutput) ToChannelEac3AtmosSettingsPtrOutputWithContext added in v0.59.0

func (o ChannelEac3AtmosSettingsPtrOutput) ToChannelEac3AtmosSettingsPtrOutputWithContext(ctx context.Context) ChannelEac3AtmosSettingsPtrOutput

func (ChannelEac3AtmosSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelEac3Settings

type ChannelEac3Settings struct {
	AttenuationControl   *string  `pulumi:"attenuationControl"`
	Bitrate              *float64 `pulumi:"bitrate"`
	BitstreamMode        *string  `pulumi:"bitstreamMode"`
	CodingMode           *string  `pulumi:"codingMode"`
	DcFilter             *string  `pulumi:"dcFilter"`
	Dialnorm             *int     `pulumi:"dialnorm"`
	DrcLine              *string  `pulumi:"drcLine"`
	DrcRf                *string  `pulumi:"drcRf"`
	LfeControl           *string  `pulumi:"lfeControl"`
	LfeFilter            *string  `pulumi:"lfeFilter"`
	LoRoCenterMixLevel   *float64 `pulumi:"loRoCenterMixLevel"`
	LoRoSurroundMixLevel *float64 `pulumi:"loRoSurroundMixLevel"`
	LtRtCenterMixLevel   *float64 `pulumi:"ltRtCenterMixLevel"`
	LtRtSurroundMixLevel *float64 `pulumi:"ltRtSurroundMixLevel"`
	MetadataControl      *string  `pulumi:"metadataControl"`
	PassthroughControl   *string  `pulumi:"passthroughControl"`
	PhaseControl         *string  `pulumi:"phaseControl"`
	StereoDownmix        *string  `pulumi:"stereoDownmix"`
	SurroundExMode       *string  `pulumi:"surroundExMode"`
	SurroundMode         *string  `pulumi:"surroundMode"`
}

type ChannelEac3SettingsArgs

type ChannelEac3SettingsArgs struct {
	AttenuationControl   pulumi.StringPtrInput  `pulumi:"attenuationControl"`
	Bitrate              pulumi.Float64PtrInput `pulumi:"bitrate"`
	BitstreamMode        pulumi.StringPtrInput  `pulumi:"bitstreamMode"`
	CodingMode           pulumi.StringPtrInput  `pulumi:"codingMode"`
	DcFilter             pulumi.StringPtrInput  `pulumi:"dcFilter"`
	Dialnorm             pulumi.IntPtrInput     `pulumi:"dialnorm"`
	DrcLine              pulumi.StringPtrInput  `pulumi:"drcLine"`
	DrcRf                pulumi.StringPtrInput  `pulumi:"drcRf"`
	LfeControl           pulumi.StringPtrInput  `pulumi:"lfeControl"`
	LfeFilter            pulumi.StringPtrInput  `pulumi:"lfeFilter"`
	LoRoCenterMixLevel   pulumi.Float64PtrInput `pulumi:"loRoCenterMixLevel"`
	LoRoSurroundMixLevel pulumi.Float64PtrInput `pulumi:"loRoSurroundMixLevel"`
	LtRtCenterMixLevel   pulumi.Float64PtrInput `pulumi:"ltRtCenterMixLevel"`
	LtRtSurroundMixLevel pulumi.Float64PtrInput `pulumi:"ltRtSurroundMixLevel"`
	MetadataControl      pulumi.StringPtrInput  `pulumi:"metadataControl"`
	PassthroughControl   pulumi.StringPtrInput  `pulumi:"passthroughControl"`
	PhaseControl         pulumi.StringPtrInput  `pulumi:"phaseControl"`
	StereoDownmix        pulumi.StringPtrInput  `pulumi:"stereoDownmix"`
	SurroundExMode       pulumi.StringPtrInput  `pulumi:"surroundExMode"`
	SurroundMode         pulumi.StringPtrInput  `pulumi:"surroundMode"`
}

func (ChannelEac3SettingsArgs) ElementType

func (ChannelEac3SettingsArgs) ElementType() reflect.Type

func (ChannelEac3SettingsArgs) ToChannelEac3SettingsOutput

func (i ChannelEac3SettingsArgs) ToChannelEac3SettingsOutput() ChannelEac3SettingsOutput

func (ChannelEac3SettingsArgs) ToChannelEac3SettingsOutputWithContext

func (i ChannelEac3SettingsArgs) ToChannelEac3SettingsOutputWithContext(ctx context.Context) ChannelEac3SettingsOutput

func (ChannelEac3SettingsArgs) ToChannelEac3SettingsPtrOutput

func (i ChannelEac3SettingsArgs) ToChannelEac3SettingsPtrOutput() ChannelEac3SettingsPtrOutput

func (ChannelEac3SettingsArgs) ToChannelEac3SettingsPtrOutputWithContext

func (i ChannelEac3SettingsArgs) ToChannelEac3SettingsPtrOutputWithContext(ctx context.Context) ChannelEac3SettingsPtrOutput

func (ChannelEac3SettingsArgs) ToOutput added in v0.76.0

type ChannelEac3SettingsInput

type ChannelEac3SettingsInput interface {
	pulumi.Input

	ToChannelEac3SettingsOutput() ChannelEac3SettingsOutput
	ToChannelEac3SettingsOutputWithContext(context.Context) ChannelEac3SettingsOutput
}

ChannelEac3SettingsInput is an input type that accepts ChannelEac3SettingsArgs and ChannelEac3SettingsOutput values. You can construct a concrete instance of `ChannelEac3SettingsInput` via:

ChannelEac3SettingsArgs{...}

type ChannelEac3SettingsOutput

type ChannelEac3SettingsOutput struct{ *pulumi.OutputState }

func (ChannelEac3SettingsOutput) AttenuationControl

func (o ChannelEac3SettingsOutput) AttenuationControl() pulumi.StringPtrOutput

func (ChannelEac3SettingsOutput) Bitrate

func (ChannelEac3SettingsOutput) BitstreamMode

func (ChannelEac3SettingsOutput) CodingMode

func (ChannelEac3SettingsOutput) DcFilter

func (ChannelEac3SettingsOutput) Dialnorm

func (ChannelEac3SettingsOutput) DrcLine

func (ChannelEac3SettingsOutput) DrcRf

func (ChannelEac3SettingsOutput) ElementType

func (ChannelEac3SettingsOutput) ElementType() reflect.Type

func (ChannelEac3SettingsOutput) LfeControl

func (ChannelEac3SettingsOutput) LfeFilter

func (ChannelEac3SettingsOutput) LoRoCenterMixLevel

func (o ChannelEac3SettingsOutput) LoRoCenterMixLevel() pulumi.Float64PtrOutput

func (ChannelEac3SettingsOutput) LoRoSurroundMixLevel

func (o ChannelEac3SettingsOutput) LoRoSurroundMixLevel() pulumi.Float64PtrOutput

func (ChannelEac3SettingsOutput) LtRtCenterMixLevel

func (o ChannelEac3SettingsOutput) LtRtCenterMixLevel() pulumi.Float64PtrOutput

func (ChannelEac3SettingsOutput) LtRtSurroundMixLevel

func (o ChannelEac3SettingsOutput) LtRtSurroundMixLevel() pulumi.Float64PtrOutput

func (ChannelEac3SettingsOutput) MetadataControl

func (o ChannelEac3SettingsOutput) MetadataControl() pulumi.StringPtrOutput

func (ChannelEac3SettingsOutput) PassthroughControl

func (o ChannelEac3SettingsOutput) PassthroughControl() pulumi.StringPtrOutput

func (ChannelEac3SettingsOutput) PhaseControl

func (ChannelEac3SettingsOutput) StereoDownmix

func (ChannelEac3SettingsOutput) SurroundExMode

func (ChannelEac3SettingsOutput) SurroundMode

func (ChannelEac3SettingsOutput) ToChannelEac3SettingsOutput

func (o ChannelEac3SettingsOutput) ToChannelEac3SettingsOutput() ChannelEac3SettingsOutput

func (ChannelEac3SettingsOutput) ToChannelEac3SettingsOutputWithContext

func (o ChannelEac3SettingsOutput) ToChannelEac3SettingsOutputWithContext(ctx context.Context) ChannelEac3SettingsOutput

func (ChannelEac3SettingsOutput) ToChannelEac3SettingsPtrOutput

func (o ChannelEac3SettingsOutput) ToChannelEac3SettingsPtrOutput() ChannelEac3SettingsPtrOutput

func (ChannelEac3SettingsOutput) ToChannelEac3SettingsPtrOutputWithContext

func (o ChannelEac3SettingsOutput) ToChannelEac3SettingsPtrOutputWithContext(ctx context.Context) ChannelEac3SettingsPtrOutput

func (ChannelEac3SettingsOutput) ToOutput added in v0.76.0

type ChannelEac3SettingsPtrInput

type ChannelEac3SettingsPtrInput interface {
	pulumi.Input

	ToChannelEac3SettingsPtrOutput() ChannelEac3SettingsPtrOutput
	ToChannelEac3SettingsPtrOutputWithContext(context.Context) ChannelEac3SettingsPtrOutput
}

ChannelEac3SettingsPtrInput is an input type that accepts ChannelEac3SettingsArgs, ChannelEac3SettingsPtr and ChannelEac3SettingsPtrOutput values. You can construct a concrete instance of `ChannelEac3SettingsPtrInput` via:

        ChannelEac3SettingsArgs{...}

or:

        nil

type ChannelEac3SettingsPtrOutput

type ChannelEac3SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelEac3SettingsPtrOutput) AttenuationControl

func (o ChannelEac3SettingsPtrOutput) AttenuationControl() pulumi.StringPtrOutput

func (ChannelEac3SettingsPtrOutput) Bitrate

func (ChannelEac3SettingsPtrOutput) BitstreamMode

func (ChannelEac3SettingsPtrOutput) CodingMode

func (ChannelEac3SettingsPtrOutput) DcFilter

func (ChannelEac3SettingsPtrOutput) Dialnorm

func (ChannelEac3SettingsPtrOutput) DrcLine

func (ChannelEac3SettingsPtrOutput) DrcRf

func (ChannelEac3SettingsPtrOutput) Elem

func (ChannelEac3SettingsPtrOutput) ElementType

func (ChannelEac3SettingsPtrOutput) LfeControl

func (ChannelEac3SettingsPtrOutput) LfeFilter

func (ChannelEac3SettingsPtrOutput) LoRoCenterMixLevel

func (o ChannelEac3SettingsPtrOutput) LoRoCenterMixLevel() pulumi.Float64PtrOutput

func (ChannelEac3SettingsPtrOutput) LoRoSurroundMixLevel

func (o ChannelEac3SettingsPtrOutput) LoRoSurroundMixLevel() pulumi.Float64PtrOutput

func (ChannelEac3SettingsPtrOutput) LtRtCenterMixLevel

func (o ChannelEac3SettingsPtrOutput) LtRtCenterMixLevel() pulumi.Float64PtrOutput

func (ChannelEac3SettingsPtrOutput) LtRtSurroundMixLevel

func (o ChannelEac3SettingsPtrOutput) LtRtSurroundMixLevel() pulumi.Float64PtrOutput

func (ChannelEac3SettingsPtrOutput) MetadataControl

func (ChannelEac3SettingsPtrOutput) PassthroughControl

func (o ChannelEac3SettingsPtrOutput) PassthroughControl() pulumi.StringPtrOutput

func (ChannelEac3SettingsPtrOutput) PhaseControl

func (ChannelEac3SettingsPtrOutput) StereoDownmix

func (ChannelEac3SettingsPtrOutput) SurroundExMode

func (ChannelEac3SettingsPtrOutput) SurroundMode

func (ChannelEac3SettingsPtrOutput) ToChannelEac3SettingsPtrOutput

func (o ChannelEac3SettingsPtrOutput) ToChannelEac3SettingsPtrOutput() ChannelEac3SettingsPtrOutput

func (ChannelEac3SettingsPtrOutput) ToChannelEac3SettingsPtrOutputWithContext

func (o ChannelEac3SettingsPtrOutput) ToChannelEac3SettingsPtrOutputWithContext(ctx context.Context) ChannelEac3SettingsPtrOutput

func (ChannelEac3SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelEbuTtDDestinationSettings

type ChannelEbuTtDDestinationSettings struct {
	CopyrightHolder *string `pulumi:"copyrightHolder"`
	FillLineGap     *string `pulumi:"fillLineGap"`
	FontFamily      *string `pulumi:"fontFamily"`
	StyleControl    *string `pulumi:"styleControl"`
}

type ChannelEbuTtDDestinationSettingsArgs

type ChannelEbuTtDDestinationSettingsArgs struct {
	CopyrightHolder pulumi.StringPtrInput `pulumi:"copyrightHolder"`
	FillLineGap     pulumi.StringPtrInput `pulumi:"fillLineGap"`
	FontFamily      pulumi.StringPtrInput `pulumi:"fontFamily"`
	StyleControl    pulumi.StringPtrInput `pulumi:"styleControl"`
}

func (ChannelEbuTtDDestinationSettingsArgs) ElementType

func (ChannelEbuTtDDestinationSettingsArgs) ToChannelEbuTtDDestinationSettingsOutput

func (i ChannelEbuTtDDestinationSettingsArgs) ToChannelEbuTtDDestinationSettingsOutput() ChannelEbuTtDDestinationSettingsOutput

func (ChannelEbuTtDDestinationSettingsArgs) ToChannelEbuTtDDestinationSettingsOutputWithContext

func (i ChannelEbuTtDDestinationSettingsArgs) ToChannelEbuTtDDestinationSettingsOutputWithContext(ctx context.Context) ChannelEbuTtDDestinationSettingsOutput

func (ChannelEbuTtDDestinationSettingsArgs) ToChannelEbuTtDDestinationSettingsPtrOutput

func (i ChannelEbuTtDDestinationSettingsArgs) ToChannelEbuTtDDestinationSettingsPtrOutput() ChannelEbuTtDDestinationSettingsPtrOutput

func (ChannelEbuTtDDestinationSettingsArgs) ToChannelEbuTtDDestinationSettingsPtrOutputWithContext

func (i ChannelEbuTtDDestinationSettingsArgs) ToChannelEbuTtDDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelEbuTtDDestinationSettingsPtrOutput

func (ChannelEbuTtDDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelEbuTtDDestinationSettingsInput

type ChannelEbuTtDDestinationSettingsInput interface {
	pulumi.Input

	ToChannelEbuTtDDestinationSettingsOutput() ChannelEbuTtDDestinationSettingsOutput
	ToChannelEbuTtDDestinationSettingsOutputWithContext(context.Context) ChannelEbuTtDDestinationSettingsOutput
}

ChannelEbuTtDDestinationSettingsInput is an input type that accepts ChannelEbuTtDDestinationSettingsArgs and ChannelEbuTtDDestinationSettingsOutput values. You can construct a concrete instance of `ChannelEbuTtDDestinationSettingsInput` via:

ChannelEbuTtDDestinationSettingsArgs{...}

type ChannelEbuTtDDestinationSettingsOutput

type ChannelEbuTtDDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelEbuTtDDestinationSettingsOutput) CopyrightHolder

func (ChannelEbuTtDDestinationSettingsOutput) ElementType

func (ChannelEbuTtDDestinationSettingsOutput) FillLineGap

func (ChannelEbuTtDDestinationSettingsOutput) FontFamily

func (ChannelEbuTtDDestinationSettingsOutput) StyleControl

func (ChannelEbuTtDDestinationSettingsOutput) ToChannelEbuTtDDestinationSettingsOutput

func (o ChannelEbuTtDDestinationSettingsOutput) ToChannelEbuTtDDestinationSettingsOutput() ChannelEbuTtDDestinationSettingsOutput

func (ChannelEbuTtDDestinationSettingsOutput) ToChannelEbuTtDDestinationSettingsOutputWithContext

func (o ChannelEbuTtDDestinationSettingsOutput) ToChannelEbuTtDDestinationSettingsOutputWithContext(ctx context.Context) ChannelEbuTtDDestinationSettingsOutput

func (ChannelEbuTtDDestinationSettingsOutput) ToChannelEbuTtDDestinationSettingsPtrOutput

func (o ChannelEbuTtDDestinationSettingsOutput) ToChannelEbuTtDDestinationSettingsPtrOutput() ChannelEbuTtDDestinationSettingsPtrOutput

func (ChannelEbuTtDDestinationSettingsOutput) ToChannelEbuTtDDestinationSettingsPtrOutputWithContext

func (o ChannelEbuTtDDestinationSettingsOutput) ToChannelEbuTtDDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelEbuTtDDestinationSettingsPtrOutput

func (ChannelEbuTtDDestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelEbuTtDDestinationSettingsPtrInput

type ChannelEbuTtDDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelEbuTtDDestinationSettingsPtrOutput() ChannelEbuTtDDestinationSettingsPtrOutput
	ToChannelEbuTtDDestinationSettingsPtrOutputWithContext(context.Context) ChannelEbuTtDDestinationSettingsPtrOutput
}

ChannelEbuTtDDestinationSettingsPtrInput is an input type that accepts ChannelEbuTtDDestinationSettingsArgs, ChannelEbuTtDDestinationSettingsPtr and ChannelEbuTtDDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelEbuTtDDestinationSettingsPtrInput` via:

        ChannelEbuTtDDestinationSettingsArgs{...}

or:

        nil

type ChannelEbuTtDDestinationSettingsPtrOutput

type ChannelEbuTtDDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelEbuTtDDestinationSettingsPtrOutput) CopyrightHolder

func (ChannelEbuTtDDestinationSettingsPtrOutput) Elem

func (ChannelEbuTtDDestinationSettingsPtrOutput) ElementType

func (ChannelEbuTtDDestinationSettingsPtrOutput) FillLineGap

func (ChannelEbuTtDDestinationSettingsPtrOutput) FontFamily

func (ChannelEbuTtDDestinationSettingsPtrOutput) StyleControl

func (ChannelEbuTtDDestinationSettingsPtrOutput) ToChannelEbuTtDDestinationSettingsPtrOutput

func (o ChannelEbuTtDDestinationSettingsPtrOutput) ToChannelEbuTtDDestinationSettingsPtrOutput() ChannelEbuTtDDestinationSettingsPtrOutput

func (ChannelEbuTtDDestinationSettingsPtrOutput) ToChannelEbuTtDDestinationSettingsPtrOutputWithContext

func (o ChannelEbuTtDDestinationSettingsPtrOutput) ToChannelEbuTtDDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelEbuTtDDestinationSettingsPtrOutput

func (ChannelEbuTtDDestinationSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelEmbeddedDestinationSettings

type ChannelEmbeddedDestinationSettings struct {
}

type ChannelEmbeddedDestinationSettingsArgs

type ChannelEmbeddedDestinationSettingsArgs struct {
}

func (ChannelEmbeddedDestinationSettingsArgs) ElementType

func (ChannelEmbeddedDestinationSettingsArgs) ToChannelEmbeddedDestinationSettingsOutput

func (i ChannelEmbeddedDestinationSettingsArgs) ToChannelEmbeddedDestinationSettingsOutput() ChannelEmbeddedDestinationSettingsOutput

func (ChannelEmbeddedDestinationSettingsArgs) ToChannelEmbeddedDestinationSettingsOutputWithContext

func (i ChannelEmbeddedDestinationSettingsArgs) ToChannelEmbeddedDestinationSettingsOutputWithContext(ctx context.Context) ChannelEmbeddedDestinationSettingsOutput

func (ChannelEmbeddedDestinationSettingsArgs) ToChannelEmbeddedDestinationSettingsPtrOutput

func (i ChannelEmbeddedDestinationSettingsArgs) ToChannelEmbeddedDestinationSettingsPtrOutput() ChannelEmbeddedDestinationSettingsPtrOutput

func (ChannelEmbeddedDestinationSettingsArgs) ToChannelEmbeddedDestinationSettingsPtrOutputWithContext

func (i ChannelEmbeddedDestinationSettingsArgs) ToChannelEmbeddedDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelEmbeddedDestinationSettingsPtrOutput

func (ChannelEmbeddedDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelEmbeddedDestinationSettingsInput

type ChannelEmbeddedDestinationSettingsInput interface {
	pulumi.Input

	ToChannelEmbeddedDestinationSettingsOutput() ChannelEmbeddedDestinationSettingsOutput
	ToChannelEmbeddedDestinationSettingsOutputWithContext(context.Context) ChannelEmbeddedDestinationSettingsOutput
}

ChannelEmbeddedDestinationSettingsInput is an input type that accepts ChannelEmbeddedDestinationSettingsArgs and ChannelEmbeddedDestinationSettingsOutput values. You can construct a concrete instance of `ChannelEmbeddedDestinationSettingsInput` via:

ChannelEmbeddedDestinationSettingsArgs{...}

type ChannelEmbeddedDestinationSettingsOutput

type ChannelEmbeddedDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelEmbeddedDestinationSettingsOutput) ElementType

func (ChannelEmbeddedDestinationSettingsOutput) ToChannelEmbeddedDestinationSettingsOutput

func (o ChannelEmbeddedDestinationSettingsOutput) ToChannelEmbeddedDestinationSettingsOutput() ChannelEmbeddedDestinationSettingsOutput

func (ChannelEmbeddedDestinationSettingsOutput) ToChannelEmbeddedDestinationSettingsOutputWithContext

func (o ChannelEmbeddedDestinationSettingsOutput) ToChannelEmbeddedDestinationSettingsOutputWithContext(ctx context.Context) ChannelEmbeddedDestinationSettingsOutput

func (ChannelEmbeddedDestinationSettingsOutput) ToChannelEmbeddedDestinationSettingsPtrOutput

func (o ChannelEmbeddedDestinationSettingsOutput) ToChannelEmbeddedDestinationSettingsPtrOutput() ChannelEmbeddedDestinationSettingsPtrOutput

func (ChannelEmbeddedDestinationSettingsOutput) ToChannelEmbeddedDestinationSettingsPtrOutputWithContext

func (o ChannelEmbeddedDestinationSettingsOutput) ToChannelEmbeddedDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelEmbeddedDestinationSettingsPtrOutput

func (ChannelEmbeddedDestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelEmbeddedDestinationSettingsPtrInput

type ChannelEmbeddedDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelEmbeddedDestinationSettingsPtrOutput() ChannelEmbeddedDestinationSettingsPtrOutput
	ToChannelEmbeddedDestinationSettingsPtrOutputWithContext(context.Context) ChannelEmbeddedDestinationSettingsPtrOutput
}

ChannelEmbeddedDestinationSettingsPtrInput is an input type that accepts ChannelEmbeddedDestinationSettingsArgs, ChannelEmbeddedDestinationSettingsPtr and ChannelEmbeddedDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelEmbeddedDestinationSettingsPtrInput` via:

        ChannelEmbeddedDestinationSettingsArgs{...}

or:

        nil

type ChannelEmbeddedDestinationSettingsPtrOutput

type ChannelEmbeddedDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelEmbeddedDestinationSettingsPtrOutput) Elem

func (ChannelEmbeddedDestinationSettingsPtrOutput) ElementType

func (ChannelEmbeddedDestinationSettingsPtrOutput) ToChannelEmbeddedDestinationSettingsPtrOutput

func (o ChannelEmbeddedDestinationSettingsPtrOutput) ToChannelEmbeddedDestinationSettingsPtrOutput() ChannelEmbeddedDestinationSettingsPtrOutput

func (ChannelEmbeddedDestinationSettingsPtrOutput) ToChannelEmbeddedDestinationSettingsPtrOutputWithContext

func (o ChannelEmbeddedDestinationSettingsPtrOutput) ToChannelEmbeddedDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelEmbeddedDestinationSettingsPtrOutput

func (ChannelEmbeddedDestinationSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelEmbeddedPlusScte20DestinationSettings

type ChannelEmbeddedPlusScte20DestinationSettings struct {
}

type ChannelEmbeddedPlusScte20DestinationSettingsArgs

type ChannelEmbeddedPlusScte20DestinationSettingsArgs struct {
}

func (ChannelEmbeddedPlusScte20DestinationSettingsArgs) ElementType

func (ChannelEmbeddedPlusScte20DestinationSettingsArgs) ToChannelEmbeddedPlusScte20DestinationSettingsOutput

func (i ChannelEmbeddedPlusScte20DestinationSettingsArgs) ToChannelEmbeddedPlusScte20DestinationSettingsOutput() ChannelEmbeddedPlusScte20DestinationSettingsOutput

func (ChannelEmbeddedPlusScte20DestinationSettingsArgs) ToChannelEmbeddedPlusScte20DestinationSettingsOutputWithContext

func (i ChannelEmbeddedPlusScte20DestinationSettingsArgs) ToChannelEmbeddedPlusScte20DestinationSettingsOutputWithContext(ctx context.Context) ChannelEmbeddedPlusScte20DestinationSettingsOutput

func (ChannelEmbeddedPlusScte20DestinationSettingsArgs) ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutput

func (i ChannelEmbeddedPlusScte20DestinationSettingsArgs) ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutput() ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput

func (ChannelEmbeddedPlusScte20DestinationSettingsArgs) ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutputWithContext

func (i ChannelEmbeddedPlusScte20DestinationSettingsArgs) ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput

func (ChannelEmbeddedPlusScte20DestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelEmbeddedPlusScte20DestinationSettingsInput

type ChannelEmbeddedPlusScte20DestinationSettingsInput interface {
	pulumi.Input

	ToChannelEmbeddedPlusScte20DestinationSettingsOutput() ChannelEmbeddedPlusScte20DestinationSettingsOutput
	ToChannelEmbeddedPlusScte20DestinationSettingsOutputWithContext(context.Context) ChannelEmbeddedPlusScte20DestinationSettingsOutput
}

ChannelEmbeddedPlusScte20DestinationSettingsInput is an input type that accepts ChannelEmbeddedPlusScte20DestinationSettingsArgs and ChannelEmbeddedPlusScte20DestinationSettingsOutput values. You can construct a concrete instance of `ChannelEmbeddedPlusScte20DestinationSettingsInput` via:

ChannelEmbeddedPlusScte20DestinationSettingsArgs{...}

type ChannelEmbeddedPlusScte20DestinationSettingsOutput

type ChannelEmbeddedPlusScte20DestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelEmbeddedPlusScte20DestinationSettingsOutput) ElementType

func (ChannelEmbeddedPlusScte20DestinationSettingsOutput) ToChannelEmbeddedPlusScte20DestinationSettingsOutput

func (o ChannelEmbeddedPlusScte20DestinationSettingsOutput) ToChannelEmbeddedPlusScte20DestinationSettingsOutput() ChannelEmbeddedPlusScte20DestinationSettingsOutput

func (ChannelEmbeddedPlusScte20DestinationSettingsOutput) ToChannelEmbeddedPlusScte20DestinationSettingsOutputWithContext

func (o ChannelEmbeddedPlusScte20DestinationSettingsOutput) ToChannelEmbeddedPlusScte20DestinationSettingsOutputWithContext(ctx context.Context) ChannelEmbeddedPlusScte20DestinationSettingsOutput

func (ChannelEmbeddedPlusScte20DestinationSettingsOutput) ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutput

func (o ChannelEmbeddedPlusScte20DestinationSettingsOutput) ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutput() ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput

func (ChannelEmbeddedPlusScte20DestinationSettingsOutput) ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutputWithContext

func (o ChannelEmbeddedPlusScte20DestinationSettingsOutput) ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput

func (ChannelEmbeddedPlusScte20DestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelEmbeddedPlusScte20DestinationSettingsPtrInput

type ChannelEmbeddedPlusScte20DestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutput() ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput
	ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutputWithContext(context.Context) ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput
}

ChannelEmbeddedPlusScte20DestinationSettingsPtrInput is an input type that accepts ChannelEmbeddedPlusScte20DestinationSettingsArgs, ChannelEmbeddedPlusScte20DestinationSettingsPtr and ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelEmbeddedPlusScte20DestinationSettingsPtrInput` via:

        ChannelEmbeddedPlusScte20DestinationSettingsArgs{...}

or:

        nil

type ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput

type ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput) Elem

func (ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput) ElementType

func (ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput) ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutput

func (ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput) ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutputWithContext

func (o ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput) ToChannelEmbeddedPlusScte20DestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput

func (ChannelEmbeddedPlusScte20DestinationSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelEmbeddedSourceSettings

type ChannelEmbeddedSourceSettings struct {
	Convert608To708        *string `pulumi:"convert608To708"`
	Scte20Detection        *string `pulumi:"scte20Detection"`
	Source608ChannelNumber *int    `pulumi:"source608ChannelNumber"`
	Source608TrackNumber   *int    `pulumi:"source608TrackNumber"`
}

type ChannelEmbeddedSourceSettingsArgs

type ChannelEmbeddedSourceSettingsArgs struct {
	Convert608To708        pulumi.StringPtrInput `pulumi:"convert608To708"`
	Scte20Detection        pulumi.StringPtrInput `pulumi:"scte20Detection"`
	Source608ChannelNumber pulumi.IntPtrInput    `pulumi:"source608ChannelNumber"`
	Source608TrackNumber   pulumi.IntPtrInput    `pulumi:"source608TrackNumber"`
}

func (ChannelEmbeddedSourceSettingsArgs) ElementType

func (ChannelEmbeddedSourceSettingsArgs) ToChannelEmbeddedSourceSettingsOutput

func (i ChannelEmbeddedSourceSettingsArgs) ToChannelEmbeddedSourceSettingsOutput() ChannelEmbeddedSourceSettingsOutput

func (ChannelEmbeddedSourceSettingsArgs) ToChannelEmbeddedSourceSettingsOutputWithContext

func (i ChannelEmbeddedSourceSettingsArgs) ToChannelEmbeddedSourceSettingsOutputWithContext(ctx context.Context) ChannelEmbeddedSourceSettingsOutput

func (ChannelEmbeddedSourceSettingsArgs) ToChannelEmbeddedSourceSettingsPtrOutput

func (i ChannelEmbeddedSourceSettingsArgs) ToChannelEmbeddedSourceSettingsPtrOutput() ChannelEmbeddedSourceSettingsPtrOutput

func (ChannelEmbeddedSourceSettingsArgs) ToChannelEmbeddedSourceSettingsPtrOutputWithContext

func (i ChannelEmbeddedSourceSettingsArgs) ToChannelEmbeddedSourceSettingsPtrOutputWithContext(ctx context.Context) ChannelEmbeddedSourceSettingsPtrOutput

func (ChannelEmbeddedSourceSettingsArgs) ToOutput added in v0.76.0

type ChannelEmbeddedSourceSettingsInput

type ChannelEmbeddedSourceSettingsInput interface {
	pulumi.Input

	ToChannelEmbeddedSourceSettingsOutput() ChannelEmbeddedSourceSettingsOutput
	ToChannelEmbeddedSourceSettingsOutputWithContext(context.Context) ChannelEmbeddedSourceSettingsOutput
}

ChannelEmbeddedSourceSettingsInput is an input type that accepts ChannelEmbeddedSourceSettingsArgs and ChannelEmbeddedSourceSettingsOutput values. You can construct a concrete instance of `ChannelEmbeddedSourceSettingsInput` via:

ChannelEmbeddedSourceSettingsArgs{...}

type ChannelEmbeddedSourceSettingsOutput

type ChannelEmbeddedSourceSettingsOutput struct{ *pulumi.OutputState }

func (ChannelEmbeddedSourceSettingsOutput) Convert608To708

func (ChannelEmbeddedSourceSettingsOutput) ElementType

func (ChannelEmbeddedSourceSettingsOutput) Scte20Detection

func (ChannelEmbeddedSourceSettingsOutput) Source608ChannelNumber

func (o ChannelEmbeddedSourceSettingsOutput) Source608ChannelNumber() pulumi.IntPtrOutput

func (ChannelEmbeddedSourceSettingsOutput) Source608TrackNumber

func (o ChannelEmbeddedSourceSettingsOutput) Source608TrackNumber() pulumi.IntPtrOutput

func (ChannelEmbeddedSourceSettingsOutput) ToChannelEmbeddedSourceSettingsOutput

func (o ChannelEmbeddedSourceSettingsOutput) ToChannelEmbeddedSourceSettingsOutput() ChannelEmbeddedSourceSettingsOutput

func (ChannelEmbeddedSourceSettingsOutput) ToChannelEmbeddedSourceSettingsOutputWithContext

func (o ChannelEmbeddedSourceSettingsOutput) ToChannelEmbeddedSourceSettingsOutputWithContext(ctx context.Context) ChannelEmbeddedSourceSettingsOutput

func (ChannelEmbeddedSourceSettingsOutput) ToChannelEmbeddedSourceSettingsPtrOutput

func (o ChannelEmbeddedSourceSettingsOutput) ToChannelEmbeddedSourceSettingsPtrOutput() ChannelEmbeddedSourceSettingsPtrOutput

func (ChannelEmbeddedSourceSettingsOutput) ToChannelEmbeddedSourceSettingsPtrOutputWithContext

func (o ChannelEmbeddedSourceSettingsOutput) ToChannelEmbeddedSourceSettingsPtrOutputWithContext(ctx context.Context) ChannelEmbeddedSourceSettingsPtrOutput

func (ChannelEmbeddedSourceSettingsOutput) ToOutput added in v0.76.0

type ChannelEmbeddedSourceSettingsPtrInput

type ChannelEmbeddedSourceSettingsPtrInput interface {
	pulumi.Input

	ToChannelEmbeddedSourceSettingsPtrOutput() ChannelEmbeddedSourceSettingsPtrOutput
	ToChannelEmbeddedSourceSettingsPtrOutputWithContext(context.Context) ChannelEmbeddedSourceSettingsPtrOutput
}

ChannelEmbeddedSourceSettingsPtrInput is an input type that accepts ChannelEmbeddedSourceSettingsArgs, ChannelEmbeddedSourceSettingsPtr and ChannelEmbeddedSourceSettingsPtrOutput values. You can construct a concrete instance of `ChannelEmbeddedSourceSettingsPtrInput` via:

        ChannelEmbeddedSourceSettingsArgs{...}

or:

        nil

type ChannelEmbeddedSourceSettingsPtrOutput

type ChannelEmbeddedSourceSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelEmbeddedSourceSettingsPtrOutput) Convert608To708

func (ChannelEmbeddedSourceSettingsPtrOutput) Elem

func (ChannelEmbeddedSourceSettingsPtrOutput) ElementType

func (ChannelEmbeddedSourceSettingsPtrOutput) Scte20Detection

func (ChannelEmbeddedSourceSettingsPtrOutput) Source608ChannelNumber

func (o ChannelEmbeddedSourceSettingsPtrOutput) Source608ChannelNumber() pulumi.IntPtrOutput

func (ChannelEmbeddedSourceSettingsPtrOutput) Source608TrackNumber

func (ChannelEmbeddedSourceSettingsPtrOutput) ToChannelEmbeddedSourceSettingsPtrOutput

func (o ChannelEmbeddedSourceSettingsPtrOutput) ToChannelEmbeddedSourceSettingsPtrOutput() ChannelEmbeddedSourceSettingsPtrOutput

func (ChannelEmbeddedSourceSettingsPtrOutput) ToChannelEmbeddedSourceSettingsPtrOutputWithContext

func (o ChannelEmbeddedSourceSettingsPtrOutput) ToChannelEmbeddedSourceSettingsPtrOutputWithContext(ctx context.Context) ChannelEmbeddedSourceSettingsPtrOutput

func (ChannelEmbeddedSourceSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelEncoderSettings

type ChannelEncoderSettings struct {
	AudioDescriptions           []ChannelAudioDescription           `pulumi:"audioDescriptions"`
	AvailBlanking               *ChannelAvailBlanking               `pulumi:"availBlanking"`
	AvailConfiguration          *ChannelAvailConfiguration          `pulumi:"availConfiguration"`
	BlackoutSlate               *ChannelBlackoutSlate               `pulumi:"blackoutSlate"`
	CaptionDescriptions         []ChannelCaptionDescription         `pulumi:"captionDescriptions"`
	FeatureActivations          *ChannelFeatureActivations          `pulumi:"featureActivations"`
	GlobalConfiguration         *ChannelGlobalConfiguration         `pulumi:"globalConfiguration"`
	MotionGraphicsConfiguration *ChannelMotionGraphicsConfiguration `pulumi:"motionGraphicsConfiguration"`
	NielsenConfiguration        *ChannelNielsenConfiguration        `pulumi:"nielsenConfiguration"`
	OutputGroups                []ChannelOutputGroup                `pulumi:"outputGroups"`
	ThumbnailConfiguration      *ChannelThumbnailConfiguration      `pulumi:"thumbnailConfiguration"`
	TimecodeConfig              *ChannelTimecodeConfig              `pulumi:"timecodeConfig"`
	VideoDescriptions           []ChannelVideoDescription           `pulumi:"videoDescriptions"`
}

type ChannelEncoderSettingsArgs

type ChannelEncoderSettingsArgs struct {
	AudioDescriptions           ChannelAudioDescriptionArrayInput          `pulumi:"audioDescriptions"`
	AvailBlanking               ChannelAvailBlankingPtrInput               `pulumi:"availBlanking"`
	AvailConfiguration          ChannelAvailConfigurationPtrInput          `pulumi:"availConfiguration"`
	BlackoutSlate               ChannelBlackoutSlatePtrInput               `pulumi:"blackoutSlate"`
	CaptionDescriptions         ChannelCaptionDescriptionArrayInput        `pulumi:"captionDescriptions"`
	FeatureActivations          ChannelFeatureActivationsPtrInput          `pulumi:"featureActivations"`
	GlobalConfiguration         ChannelGlobalConfigurationPtrInput         `pulumi:"globalConfiguration"`
	MotionGraphicsConfiguration ChannelMotionGraphicsConfigurationPtrInput `pulumi:"motionGraphicsConfiguration"`
	NielsenConfiguration        ChannelNielsenConfigurationPtrInput        `pulumi:"nielsenConfiguration"`
	OutputGroups                ChannelOutputGroupArrayInput               `pulumi:"outputGroups"`
	ThumbnailConfiguration      ChannelThumbnailConfigurationPtrInput      `pulumi:"thumbnailConfiguration"`
	TimecodeConfig              ChannelTimecodeConfigPtrInput              `pulumi:"timecodeConfig"`
	VideoDescriptions           ChannelVideoDescriptionArrayInput          `pulumi:"videoDescriptions"`
}

func (ChannelEncoderSettingsArgs) ElementType

func (ChannelEncoderSettingsArgs) ElementType() reflect.Type

func (ChannelEncoderSettingsArgs) ToChannelEncoderSettingsOutput

func (i ChannelEncoderSettingsArgs) ToChannelEncoderSettingsOutput() ChannelEncoderSettingsOutput

func (ChannelEncoderSettingsArgs) ToChannelEncoderSettingsOutputWithContext

func (i ChannelEncoderSettingsArgs) ToChannelEncoderSettingsOutputWithContext(ctx context.Context) ChannelEncoderSettingsOutput

func (ChannelEncoderSettingsArgs) ToChannelEncoderSettingsPtrOutput

func (i ChannelEncoderSettingsArgs) ToChannelEncoderSettingsPtrOutput() ChannelEncoderSettingsPtrOutput

func (ChannelEncoderSettingsArgs) ToChannelEncoderSettingsPtrOutputWithContext

func (i ChannelEncoderSettingsArgs) ToChannelEncoderSettingsPtrOutputWithContext(ctx context.Context) ChannelEncoderSettingsPtrOutput

func (ChannelEncoderSettingsArgs) ToOutput added in v0.76.0

type ChannelEncoderSettingsInput

type ChannelEncoderSettingsInput interface {
	pulumi.Input

	ToChannelEncoderSettingsOutput() ChannelEncoderSettingsOutput
	ToChannelEncoderSettingsOutputWithContext(context.Context) ChannelEncoderSettingsOutput
}

ChannelEncoderSettingsInput is an input type that accepts ChannelEncoderSettingsArgs and ChannelEncoderSettingsOutput values. You can construct a concrete instance of `ChannelEncoderSettingsInput` via:

ChannelEncoderSettingsArgs{...}

type ChannelEncoderSettingsOutput

type ChannelEncoderSettingsOutput struct{ *pulumi.OutputState }

func (ChannelEncoderSettingsOutput) AudioDescriptions

func (ChannelEncoderSettingsOutput) AvailBlanking

func (ChannelEncoderSettingsOutput) AvailConfiguration

func (ChannelEncoderSettingsOutput) BlackoutSlate

func (ChannelEncoderSettingsOutput) CaptionDescriptions

func (ChannelEncoderSettingsOutput) ElementType

func (ChannelEncoderSettingsOutput) FeatureActivations

func (ChannelEncoderSettingsOutput) GlobalConfiguration

func (ChannelEncoderSettingsOutput) MotionGraphicsConfiguration

func (ChannelEncoderSettingsOutput) NielsenConfiguration

func (ChannelEncoderSettingsOutput) OutputGroups

func (ChannelEncoderSettingsOutput) ThumbnailConfiguration added in v0.76.0

func (ChannelEncoderSettingsOutput) TimecodeConfig

func (ChannelEncoderSettingsOutput) ToChannelEncoderSettingsOutput

func (o ChannelEncoderSettingsOutput) ToChannelEncoderSettingsOutput() ChannelEncoderSettingsOutput

func (ChannelEncoderSettingsOutput) ToChannelEncoderSettingsOutputWithContext

func (o ChannelEncoderSettingsOutput) ToChannelEncoderSettingsOutputWithContext(ctx context.Context) ChannelEncoderSettingsOutput

func (ChannelEncoderSettingsOutput) ToChannelEncoderSettingsPtrOutput

func (o ChannelEncoderSettingsOutput) ToChannelEncoderSettingsPtrOutput() ChannelEncoderSettingsPtrOutput

func (ChannelEncoderSettingsOutput) ToChannelEncoderSettingsPtrOutputWithContext

func (o ChannelEncoderSettingsOutput) ToChannelEncoderSettingsPtrOutputWithContext(ctx context.Context) ChannelEncoderSettingsPtrOutput

func (ChannelEncoderSettingsOutput) ToOutput added in v0.76.0

func (ChannelEncoderSettingsOutput) VideoDescriptions

type ChannelEncoderSettingsPtrInput

type ChannelEncoderSettingsPtrInput interface {
	pulumi.Input

	ToChannelEncoderSettingsPtrOutput() ChannelEncoderSettingsPtrOutput
	ToChannelEncoderSettingsPtrOutputWithContext(context.Context) ChannelEncoderSettingsPtrOutput
}

ChannelEncoderSettingsPtrInput is an input type that accepts ChannelEncoderSettingsArgs, ChannelEncoderSettingsPtr and ChannelEncoderSettingsPtrOutput values. You can construct a concrete instance of `ChannelEncoderSettingsPtrInput` via:

        ChannelEncoderSettingsArgs{...}

or:

        nil

type ChannelEncoderSettingsPtrOutput

type ChannelEncoderSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelEncoderSettingsPtrOutput) AudioDescriptions

func (ChannelEncoderSettingsPtrOutput) AvailBlanking

func (ChannelEncoderSettingsPtrOutput) AvailConfiguration

func (ChannelEncoderSettingsPtrOutput) BlackoutSlate

func (ChannelEncoderSettingsPtrOutput) CaptionDescriptions

func (ChannelEncoderSettingsPtrOutput) Elem

func (ChannelEncoderSettingsPtrOutput) ElementType

func (ChannelEncoderSettingsPtrOutput) FeatureActivations

func (ChannelEncoderSettingsPtrOutput) GlobalConfiguration

func (ChannelEncoderSettingsPtrOutput) MotionGraphicsConfiguration

func (ChannelEncoderSettingsPtrOutput) NielsenConfiguration

func (ChannelEncoderSettingsPtrOutput) OutputGroups

func (ChannelEncoderSettingsPtrOutput) ThumbnailConfiguration added in v0.76.0

func (ChannelEncoderSettingsPtrOutput) TimecodeConfig

func (ChannelEncoderSettingsPtrOutput) ToChannelEncoderSettingsPtrOutput

func (o ChannelEncoderSettingsPtrOutput) ToChannelEncoderSettingsPtrOutput() ChannelEncoderSettingsPtrOutput

func (ChannelEncoderSettingsPtrOutput) ToChannelEncoderSettingsPtrOutputWithContext

func (o ChannelEncoderSettingsPtrOutput) ToChannelEncoderSettingsPtrOutputWithContext(ctx context.Context) ChannelEncoderSettingsPtrOutput

func (ChannelEncoderSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelEncoderSettingsPtrOutput) VideoDescriptions

type ChannelEsam added in v0.59.0

type ChannelEsam struct {
	AcquisitionPointId *string `pulumi:"acquisitionPointId"`
	AdAvailOffset      *int    `pulumi:"adAvailOffset"`
	PasswordParam      *string `pulumi:"passwordParam"`
	PoisEndpoint       *string `pulumi:"poisEndpoint"`
	Username           *string `pulumi:"username"`
	ZoneIdentity       *string `pulumi:"zoneIdentity"`
}

type ChannelEsamArgs added in v0.59.0

type ChannelEsamArgs struct {
	AcquisitionPointId pulumi.StringPtrInput `pulumi:"acquisitionPointId"`
	AdAvailOffset      pulumi.IntPtrInput    `pulumi:"adAvailOffset"`
	PasswordParam      pulumi.StringPtrInput `pulumi:"passwordParam"`
	PoisEndpoint       pulumi.StringPtrInput `pulumi:"poisEndpoint"`
	Username           pulumi.StringPtrInput `pulumi:"username"`
	ZoneIdentity       pulumi.StringPtrInput `pulumi:"zoneIdentity"`
}

func (ChannelEsamArgs) ElementType added in v0.59.0

func (ChannelEsamArgs) ElementType() reflect.Type

func (ChannelEsamArgs) ToChannelEsamOutput added in v0.59.0

func (i ChannelEsamArgs) ToChannelEsamOutput() ChannelEsamOutput

func (ChannelEsamArgs) ToChannelEsamOutputWithContext added in v0.59.0

func (i ChannelEsamArgs) ToChannelEsamOutputWithContext(ctx context.Context) ChannelEsamOutput

func (ChannelEsamArgs) ToChannelEsamPtrOutput added in v0.59.0

func (i ChannelEsamArgs) ToChannelEsamPtrOutput() ChannelEsamPtrOutput

func (ChannelEsamArgs) ToChannelEsamPtrOutputWithContext added in v0.59.0

func (i ChannelEsamArgs) ToChannelEsamPtrOutputWithContext(ctx context.Context) ChannelEsamPtrOutput

func (ChannelEsamArgs) ToOutput added in v0.76.0

type ChannelEsamInput added in v0.59.0

type ChannelEsamInput interface {
	pulumi.Input

	ToChannelEsamOutput() ChannelEsamOutput
	ToChannelEsamOutputWithContext(context.Context) ChannelEsamOutput
}

ChannelEsamInput is an input type that accepts ChannelEsamArgs and ChannelEsamOutput values. You can construct a concrete instance of `ChannelEsamInput` via:

ChannelEsamArgs{...}

type ChannelEsamOutput added in v0.59.0

type ChannelEsamOutput struct{ *pulumi.OutputState }

func (ChannelEsamOutput) AcquisitionPointId added in v0.59.0

func (o ChannelEsamOutput) AcquisitionPointId() pulumi.StringPtrOutput

func (ChannelEsamOutput) AdAvailOffset added in v0.59.0

func (o ChannelEsamOutput) AdAvailOffset() pulumi.IntPtrOutput

func (ChannelEsamOutput) ElementType added in v0.59.0

func (ChannelEsamOutput) ElementType() reflect.Type

func (ChannelEsamOutput) PasswordParam added in v0.59.0

func (o ChannelEsamOutput) PasswordParam() pulumi.StringPtrOutput

func (ChannelEsamOutput) PoisEndpoint added in v0.59.0

func (o ChannelEsamOutput) PoisEndpoint() pulumi.StringPtrOutput

func (ChannelEsamOutput) ToChannelEsamOutput added in v0.59.0

func (o ChannelEsamOutput) ToChannelEsamOutput() ChannelEsamOutput

func (ChannelEsamOutput) ToChannelEsamOutputWithContext added in v0.59.0

func (o ChannelEsamOutput) ToChannelEsamOutputWithContext(ctx context.Context) ChannelEsamOutput

func (ChannelEsamOutput) ToChannelEsamPtrOutput added in v0.59.0

func (o ChannelEsamOutput) ToChannelEsamPtrOutput() ChannelEsamPtrOutput

func (ChannelEsamOutput) ToChannelEsamPtrOutputWithContext added in v0.59.0

func (o ChannelEsamOutput) ToChannelEsamPtrOutputWithContext(ctx context.Context) ChannelEsamPtrOutput

func (ChannelEsamOutput) ToOutput added in v0.76.0

func (ChannelEsamOutput) Username added in v0.59.0

func (ChannelEsamOutput) ZoneIdentity added in v0.59.0

func (o ChannelEsamOutput) ZoneIdentity() pulumi.StringPtrOutput

type ChannelEsamPtrInput added in v0.59.0

type ChannelEsamPtrInput interface {
	pulumi.Input

	ToChannelEsamPtrOutput() ChannelEsamPtrOutput
	ToChannelEsamPtrOutputWithContext(context.Context) ChannelEsamPtrOutput
}

ChannelEsamPtrInput is an input type that accepts ChannelEsamArgs, ChannelEsamPtr and ChannelEsamPtrOutput values. You can construct a concrete instance of `ChannelEsamPtrInput` via:

        ChannelEsamArgs{...}

or:

        nil

func ChannelEsamPtr added in v0.59.0

func ChannelEsamPtr(v *ChannelEsamArgs) ChannelEsamPtrInput

type ChannelEsamPtrOutput added in v0.59.0

type ChannelEsamPtrOutput struct{ *pulumi.OutputState }

func (ChannelEsamPtrOutput) AcquisitionPointId added in v0.59.0

func (o ChannelEsamPtrOutput) AcquisitionPointId() pulumi.StringPtrOutput

func (ChannelEsamPtrOutput) AdAvailOffset added in v0.59.0

func (o ChannelEsamPtrOutput) AdAvailOffset() pulumi.IntPtrOutput

func (ChannelEsamPtrOutput) Elem added in v0.59.0

func (ChannelEsamPtrOutput) ElementType added in v0.59.0

func (ChannelEsamPtrOutput) ElementType() reflect.Type

func (ChannelEsamPtrOutput) PasswordParam added in v0.59.0

func (o ChannelEsamPtrOutput) PasswordParam() pulumi.StringPtrOutput

func (ChannelEsamPtrOutput) PoisEndpoint added in v0.59.0

func (o ChannelEsamPtrOutput) PoisEndpoint() pulumi.StringPtrOutput

func (ChannelEsamPtrOutput) ToChannelEsamPtrOutput added in v0.59.0

func (o ChannelEsamPtrOutput) ToChannelEsamPtrOutput() ChannelEsamPtrOutput

func (ChannelEsamPtrOutput) ToChannelEsamPtrOutputWithContext added in v0.59.0

func (o ChannelEsamPtrOutput) ToChannelEsamPtrOutputWithContext(ctx context.Context) ChannelEsamPtrOutput

func (ChannelEsamPtrOutput) ToOutput added in v0.76.0

func (ChannelEsamPtrOutput) Username added in v0.59.0

func (ChannelEsamPtrOutput) ZoneIdentity added in v0.59.0

func (o ChannelEsamPtrOutput) ZoneIdentity() pulumi.StringPtrOutput

type ChannelFailoverCondition

type ChannelFailoverCondition struct {
	FailoverConditionSettings *ChannelFailoverConditionSettings `pulumi:"failoverConditionSettings"`
}

type ChannelFailoverConditionArgs

type ChannelFailoverConditionArgs struct {
	FailoverConditionSettings ChannelFailoverConditionSettingsPtrInput `pulumi:"failoverConditionSettings"`
}

func (ChannelFailoverConditionArgs) ElementType

func (ChannelFailoverConditionArgs) ToChannelFailoverConditionOutput

func (i ChannelFailoverConditionArgs) ToChannelFailoverConditionOutput() ChannelFailoverConditionOutput

func (ChannelFailoverConditionArgs) ToChannelFailoverConditionOutputWithContext

func (i ChannelFailoverConditionArgs) ToChannelFailoverConditionOutputWithContext(ctx context.Context) ChannelFailoverConditionOutput

func (ChannelFailoverConditionArgs) ToOutput added in v0.76.0

type ChannelFailoverConditionArray

type ChannelFailoverConditionArray []ChannelFailoverConditionInput

func (ChannelFailoverConditionArray) ElementType

func (ChannelFailoverConditionArray) ToChannelFailoverConditionArrayOutput

func (i ChannelFailoverConditionArray) ToChannelFailoverConditionArrayOutput() ChannelFailoverConditionArrayOutput

func (ChannelFailoverConditionArray) ToChannelFailoverConditionArrayOutputWithContext

func (i ChannelFailoverConditionArray) ToChannelFailoverConditionArrayOutputWithContext(ctx context.Context) ChannelFailoverConditionArrayOutput

func (ChannelFailoverConditionArray) ToOutput added in v0.76.0

type ChannelFailoverConditionArrayInput

type ChannelFailoverConditionArrayInput interface {
	pulumi.Input

	ToChannelFailoverConditionArrayOutput() ChannelFailoverConditionArrayOutput
	ToChannelFailoverConditionArrayOutputWithContext(context.Context) ChannelFailoverConditionArrayOutput
}

ChannelFailoverConditionArrayInput is an input type that accepts ChannelFailoverConditionArray and ChannelFailoverConditionArrayOutput values. You can construct a concrete instance of `ChannelFailoverConditionArrayInput` via:

ChannelFailoverConditionArray{ ChannelFailoverConditionArgs{...} }

type ChannelFailoverConditionArrayOutput

type ChannelFailoverConditionArrayOutput struct{ *pulumi.OutputState }

func (ChannelFailoverConditionArrayOutput) ElementType

func (ChannelFailoverConditionArrayOutput) Index

func (ChannelFailoverConditionArrayOutput) ToChannelFailoverConditionArrayOutput

func (o ChannelFailoverConditionArrayOutput) ToChannelFailoverConditionArrayOutput() ChannelFailoverConditionArrayOutput

func (ChannelFailoverConditionArrayOutput) ToChannelFailoverConditionArrayOutputWithContext

func (o ChannelFailoverConditionArrayOutput) ToChannelFailoverConditionArrayOutputWithContext(ctx context.Context) ChannelFailoverConditionArrayOutput

func (ChannelFailoverConditionArrayOutput) ToOutput added in v0.76.0

type ChannelFailoverConditionInput

type ChannelFailoverConditionInput interface {
	pulumi.Input

	ToChannelFailoverConditionOutput() ChannelFailoverConditionOutput
	ToChannelFailoverConditionOutputWithContext(context.Context) ChannelFailoverConditionOutput
}

ChannelFailoverConditionInput is an input type that accepts ChannelFailoverConditionArgs and ChannelFailoverConditionOutput values. You can construct a concrete instance of `ChannelFailoverConditionInput` via:

ChannelFailoverConditionArgs{...}

type ChannelFailoverConditionOutput

type ChannelFailoverConditionOutput struct{ *pulumi.OutputState }

func (ChannelFailoverConditionOutput) ElementType

func (ChannelFailoverConditionOutput) FailoverConditionSettings

func (ChannelFailoverConditionOutput) ToChannelFailoverConditionOutput

func (o ChannelFailoverConditionOutput) ToChannelFailoverConditionOutput() ChannelFailoverConditionOutput

func (ChannelFailoverConditionOutput) ToChannelFailoverConditionOutputWithContext

func (o ChannelFailoverConditionOutput) ToChannelFailoverConditionOutputWithContext(ctx context.Context) ChannelFailoverConditionOutput

func (ChannelFailoverConditionOutput) ToOutput added in v0.76.0

type ChannelFailoverConditionSettings

type ChannelFailoverConditionSettings struct {
	AudioSilenceSettings *ChannelAudioSilenceFailoverSettings `pulumi:"audioSilenceSettings"`
	InputLossSettings    *ChannelInputLossFailoverSettings    `pulumi:"inputLossSettings"`
	VideoBlackSettings   *ChannelVideoBlackFailoverSettings   `pulumi:"videoBlackSettings"`
}

type ChannelFailoverConditionSettingsArgs

type ChannelFailoverConditionSettingsArgs struct {
	AudioSilenceSettings ChannelAudioSilenceFailoverSettingsPtrInput `pulumi:"audioSilenceSettings"`
	InputLossSettings    ChannelInputLossFailoverSettingsPtrInput    `pulumi:"inputLossSettings"`
	VideoBlackSettings   ChannelVideoBlackFailoverSettingsPtrInput   `pulumi:"videoBlackSettings"`
}

func (ChannelFailoverConditionSettingsArgs) ElementType

func (ChannelFailoverConditionSettingsArgs) ToChannelFailoverConditionSettingsOutput

func (i ChannelFailoverConditionSettingsArgs) ToChannelFailoverConditionSettingsOutput() ChannelFailoverConditionSettingsOutput

func (ChannelFailoverConditionSettingsArgs) ToChannelFailoverConditionSettingsOutputWithContext

func (i ChannelFailoverConditionSettingsArgs) ToChannelFailoverConditionSettingsOutputWithContext(ctx context.Context) ChannelFailoverConditionSettingsOutput

func (ChannelFailoverConditionSettingsArgs) ToChannelFailoverConditionSettingsPtrOutput

func (i ChannelFailoverConditionSettingsArgs) ToChannelFailoverConditionSettingsPtrOutput() ChannelFailoverConditionSettingsPtrOutput

func (ChannelFailoverConditionSettingsArgs) ToChannelFailoverConditionSettingsPtrOutputWithContext

func (i ChannelFailoverConditionSettingsArgs) ToChannelFailoverConditionSettingsPtrOutputWithContext(ctx context.Context) ChannelFailoverConditionSettingsPtrOutput

func (ChannelFailoverConditionSettingsArgs) ToOutput added in v0.76.0

type ChannelFailoverConditionSettingsInput

type ChannelFailoverConditionSettingsInput interface {
	pulumi.Input

	ToChannelFailoverConditionSettingsOutput() ChannelFailoverConditionSettingsOutput
	ToChannelFailoverConditionSettingsOutputWithContext(context.Context) ChannelFailoverConditionSettingsOutput
}

ChannelFailoverConditionSettingsInput is an input type that accepts ChannelFailoverConditionSettingsArgs and ChannelFailoverConditionSettingsOutput values. You can construct a concrete instance of `ChannelFailoverConditionSettingsInput` via:

ChannelFailoverConditionSettingsArgs{...}

type ChannelFailoverConditionSettingsOutput

type ChannelFailoverConditionSettingsOutput struct{ *pulumi.OutputState }

func (ChannelFailoverConditionSettingsOutput) AudioSilenceSettings

func (ChannelFailoverConditionSettingsOutput) ElementType

func (ChannelFailoverConditionSettingsOutput) InputLossSettings

func (ChannelFailoverConditionSettingsOutput) ToChannelFailoverConditionSettingsOutput

func (o ChannelFailoverConditionSettingsOutput) ToChannelFailoverConditionSettingsOutput() ChannelFailoverConditionSettingsOutput

func (ChannelFailoverConditionSettingsOutput) ToChannelFailoverConditionSettingsOutputWithContext

func (o ChannelFailoverConditionSettingsOutput) ToChannelFailoverConditionSettingsOutputWithContext(ctx context.Context) ChannelFailoverConditionSettingsOutput

func (ChannelFailoverConditionSettingsOutput) ToChannelFailoverConditionSettingsPtrOutput

func (o ChannelFailoverConditionSettingsOutput) ToChannelFailoverConditionSettingsPtrOutput() ChannelFailoverConditionSettingsPtrOutput

func (ChannelFailoverConditionSettingsOutput) ToChannelFailoverConditionSettingsPtrOutputWithContext

func (o ChannelFailoverConditionSettingsOutput) ToChannelFailoverConditionSettingsPtrOutputWithContext(ctx context.Context) ChannelFailoverConditionSettingsPtrOutput

func (ChannelFailoverConditionSettingsOutput) ToOutput added in v0.76.0

func (ChannelFailoverConditionSettingsOutput) VideoBlackSettings

type ChannelFailoverConditionSettingsPtrInput

type ChannelFailoverConditionSettingsPtrInput interface {
	pulumi.Input

	ToChannelFailoverConditionSettingsPtrOutput() ChannelFailoverConditionSettingsPtrOutput
	ToChannelFailoverConditionSettingsPtrOutputWithContext(context.Context) ChannelFailoverConditionSettingsPtrOutput
}

ChannelFailoverConditionSettingsPtrInput is an input type that accepts ChannelFailoverConditionSettingsArgs, ChannelFailoverConditionSettingsPtr and ChannelFailoverConditionSettingsPtrOutput values. You can construct a concrete instance of `ChannelFailoverConditionSettingsPtrInput` via:

        ChannelFailoverConditionSettingsArgs{...}

or:

        nil

type ChannelFailoverConditionSettingsPtrOutput

type ChannelFailoverConditionSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelFailoverConditionSettingsPtrOutput) AudioSilenceSettings

func (ChannelFailoverConditionSettingsPtrOutput) Elem

func (ChannelFailoverConditionSettingsPtrOutput) ElementType

func (ChannelFailoverConditionSettingsPtrOutput) InputLossSettings

func (ChannelFailoverConditionSettingsPtrOutput) ToChannelFailoverConditionSettingsPtrOutput

func (o ChannelFailoverConditionSettingsPtrOutput) ToChannelFailoverConditionSettingsPtrOutput() ChannelFailoverConditionSettingsPtrOutput

func (ChannelFailoverConditionSettingsPtrOutput) ToChannelFailoverConditionSettingsPtrOutputWithContext

func (o ChannelFailoverConditionSettingsPtrOutput) ToChannelFailoverConditionSettingsPtrOutputWithContext(ctx context.Context) ChannelFailoverConditionSettingsPtrOutput

func (ChannelFailoverConditionSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelFailoverConditionSettingsPtrOutput) VideoBlackSettings

type ChannelFeatureActivations

type ChannelFeatureActivations struct {
	InputPrepareScheduleActions *string `pulumi:"inputPrepareScheduleActions"`
}

type ChannelFeatureActivationsArgs

type ChannelFeatureActivationsArgs struct {
	InputPrepareScheduleActions pulumi.StringPtrInput `pulumi:"inputPrepareScheduleActions"`
}

func (ChannelFeatureActivationsArgs) ElementType

func (ChannelFeatureActivationsArgs) ToChannelFeatureActivationsOutput

func (i ChannelFeatureActivationsArgs) ToChannelFeatureActivationsOutput() ChannelFeatureActivationsOutput

func (ChannelFeatureActivationsArgs) ToChannelFeatureActivationsOutputWithContext

func (i ChannelFeatureActivationsArgs) ToChannelFeatureActivationsOutputWithContext(ctx context.Context) ChannelFeatureActivationsOutput

func (ChannelFeatureActivationsArgs) ToChannelFeatureActivationsPtrOutput

func (i ChannelFeatureActivationsArgs) ToChannelFeatureActivationsPtrOutput() ChannelFeatureActivationsPtrOutput

func (ChannelFeatureActivationsArgs) ToChannelFeatureActivationsPtrOutputWithContext

func (i ChannelFeatureActivationsArgs) ToChannelFeatureActivationsPtrOutputWithContext(ctx context.Context) ChannelFeatureActivationsPtrOutput

func (ChannelFeatureActivationsArgs) ToOutput added in v0.76.0

type ChannelFeatureActivationsInput

type ChannelFeatureActivationsInput interface {
	pulumi.Input

	ToChannelFeatureActivationsOutput() ChannelFeatureActivationsOutput
	ToChannelFeatureActivationsOutputWithContext(context.Context) ChannelFeatureActivationsOutput
}

ChannelFeatureActivationsInput is an input type that accepts ChannelFeatureActivationsArgs and ChannelFeatureActivationsOutput values. You can construct a concrete instance of `ChannelFeatureActivationsInput` via:

ChannelFeatureActivationsArgs{...}

type ChannelFeatureActivationsOutput

type ChannelFeatureActivationsOutput struct{ *pulumi.OutputState }

func (ChannelFeatureActivationsOutput) ElementType

func (ChannelFeatureActivationsOutput) InputPrepareScheduleActions

func (o ChannelFeatureActivationsOutput) InputPrepareScheduleActions() pulumi.StringPtrOutput

func (ChannelFeatureActivationsOutput) ToChannelFeatureActivationsOutput

func (o ChannelFeatureActivationsOutput) ToChannelFeatureActivationsOutput() ChannelFeatureActivationsOutput

func (ChannelFeatureActivationsOutput) ToChannelFeatureActivationsOutputWithContext

func (o ChannelFeatureActivationsOutput) ToChannelFeatureActivationsOutputWithContext(ctx context.Context) ChannelFeatureActivationsOutput

func (ChannelFeatureActivationsOutput) ToChannelFeatureActivationsPtrOutput

func (o ChannelFeatureActivationsOutput) ToChannelFeatureActivationsPtrOutput() ChannelFeatureActivationsPtrOutput

func (ChannelFeatureActivationsOutput) ToChannelFeatureActivationsPtrOutputWithContext

func (o ChannelFeatureActivationsOutput) ToChannelFeatureActivationsPtrOutputWithContext(ctx context.Context) ChannelFeatureActivationsPtrOutput

func (ChannelFeatureActivationsOutput) ToOutput added in v0.76.0

type ChannelFeatureActivationsPtrInput

type ChannelFeatureActivationsPtrInput interface {
	pulumi.Input

	ToChannelFeatureActivationsPtrOutput() ChannelFeatureActivationsPtrOutput
	ToChannelFeatureActivationsPtrOutputWithContext(context.Context) ChannelFeatureActivationsPtrOutput
}

ChannelFeatureActivationsPtrInput is an input type that accepts ChannelFeatureActivationsArgs, ChannelFeatureActivationsPtr and ChannelFeatureActivationsPtrOutput values. You can construct a concrete instance of `ChannelFeatureActivationsPtrInput` via:

        ChannelFeatureActivationsArgs{...}

or:

        nil

type ChannelFeatureActivationsPtrOutput

type ChannelFeatureActivationsPtrOutput struct{ *pulumi.OutputState }

func (ChannelFeatureActivationsPtrOutput) Elem

func (ChannelFeatureActivationsPtrOutput) ElementType

func (ChannelFeatureActivationsPtrOutput) InputPrepareScheduleActions

func (o ChannelFeatureActivationsPtrOutput) InputPrepareScheduleActions() pulumi.StringPtrOutput

func (ChannelFeatureActivationsPtrOutput) ToChannelFeatureActivationsPtrOutput

func (o ChannelFeatureActivationsPtrOutput) ToChannelFeatureActivationsPtrOutput() ChannelFeatureActivationsPtrOutput

func (ChannelFeatureActivationsPtrOutput) ToChannelFeatureActivationsPtrOutputWithContext

func (o ChannelFeatureActivationsPtrOutput) ToChannelFeatureActivationsPtrOutputWithContext(ctx context.Context) ChannelFeatureActivationsPtrOutput

func (ChannelFeatureActivationsPtrOutput) ToOutput added in v0.76.0

type ChannelFecOutputSettings

type ChannelFecOutputSettings struct {
	ColumnDepth *int    `pulumi:"columnDepth"`
	IncludeFec  *string `pulumi:"includeFec"`
	RowLength   *int    `pulumi:"rowLength"`
}

type ChannelFecOutputSettingsArgs

type ChannelFecOutputSettingsArgs struct {
	ColumnDepth pulumi.IntPtrInput    `pulumi:"columnDepth"`
	IncludeFec  pulumi.StringPtrInput `pulumi:"includeFec"`
	RowLength   pulumi.IntPtrInput    `pulumi:"rowLength"`
}

func (ChannelFecOutputSettingsArgs) ElementType

func (ChannelFecOutputSettingsArgs) ToChannelFecOutputSettingsOutput

func (i ChannelFecOutputSettingsArgs) ToChannelFecOutputSettingsOutput() ChannelFecOutputSettingsOutput

func (ChannelFecOutputSettingsArgs) ToChannelFecOutputSettingsOutputWithContext

func (i ChannelFecOutputSettingsArgs) ToChannelFecOutputSettingsOutputWithContext(ctx context.Context) ChannelFecOutputSettingsOutput

func (ChannelFecOutputSettingsArgs) ToChannelFecOutputSettingsPtrOutput

func (i ChannelFecOutputSettingsArgs) ToChannelFecOutputSettingsPtrOutput() ChannelFecOutputSettingsPtrOutput

func (ChannelFecOutputSettingsArgs) ToChannelFecOutputSettingsPtrOutputWithContext

func (i ChannelFecOutputSettingsArgs) ToChannelFecOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelFecOutputSettingsPtrOutput

func (ChannelFecOutputSettingsArgs) ToOutput added in v0.76.0

type ChannelFecOutputSettingsInput

type ChannelFecOutputSettingsInput interface {
	pulumi.Input

	ToChannelFecOutputSettingsOutput() ChannelFecOutputSettingsOutput
	ToChannelFecOutputSettingsOutputWithContext(context.Context) ChannelFecOutputSettingsOutput
}

ChannelFecOutputSettingsInput is an input type that accepts ChannelFecOutputSettingsArgs and ChannelFecOutputSettingsOutput values. You can construct a concrete instance of `ChannelFecOutputSettingsInput` via:

ChannelFecOutputSettingsArgs{...}

type ChannelFecOutputSettingsOutput

type ChannelFecOutputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelFecOutputSettingsOutput) ColumnDepth

func (ChannelFecOutputSettingsOutput) ElementType

func (ChannelFecOutputSettingsOutput) IncludeFec

func (ChannelFecOutputSettingsOutput) RowLength

func (ChannelFecOutputSettingsOutput) ToChannelFecOutputSettingsOutput

func (o ChannelFecOutputSettingsOutput) ToChannelFecOutputSettingsOutput() ChannelFecOutputSettingsOutput

func (ChannelFecOutputSettingsOutput) ToChannelFecOutputSettingsOutputWithContext

func (o ChannelFecOutputSettingsOutput) ToChannelFecOutputSettingsOutputWithContext(ctx context.Context) ChannelFecOutputSettingsOutput

func (ChannelFecOutputSettingsOutput) ToChannelFecOutputSettingsPtrOutput

func (o ChannelFecOutputSettingsOutput) ToChannelFecOutputSettingsPtrOutput() ChannelFecOutputSettingsPtrOutput

func (ChannelFecOutputSettingsOutput) ToChannelFecOutputSettingsPtrOutputWithContext

func (o ChannelFecOutputSettingsOutput) ToChannelFecOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelFecOutputSettingsPtrOutput

func (ChannelFecOutputSettingsOutput) ToOutput added in v0.76.0

type ChannelFecOutputSettingsPtrInput

type ChannelFecOutputSettingsPtrInput interface {
	pulumi.Input

	ToChannelFecOutputSettingsPtrOutput() ChannelFecOutputSettingsPtrOutput
	ToChannelFecOutputSettingsPtrOutputWithContext(context.Context) ChannelFecOutputSettingsPtrOutput
}

ChannelFecOutputSettingsPtrInput is an input type that accepts ChannelFecOutputSettingsArgs, ChannelFecOutputSettingsPtr and ChannelFecOutputSettingsPtrOutput values. You can construct a concrete instance of `ChannelFecOutputSettingsPtrInput` via:

        ChannelFecOutputSettingsArgs{...}

or:

        nil

type ChannelFecOutputSettingsPtrOutput

type ChannelFecOutputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelFecOutputSettingsPtrOutput) ColumnDepth

func (ChannelFecOutputSettingsPtrOutput) Elem

func (ChannelFecOutputSettingsPtrOutput) ElementType

func (ChannelFecOutputSettingsPtrOutput) IncludeFec

func (ChannelFecOutputSettingsPtrOutput) RowLength

func (ChannelFecOutputSettingsPtrOutput) ToChannelFecOutputSettingsPtrOutput

func (o ChannelFecOutputSettingsPtrOutput) ToChannelFecOutputSettingsPtrOutput() ChannelFecOutputSettingsPtrOutput

func (ChannelFecOutputSettingsPtrOutput) ToChannelFecOutputSettingsPtrOutputWithContext

func (o ChannelFecOutputSettingsPtrOutput) ToChannelFecOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelFecOutputSettingsPtrOutput

func (ChannelFecOutputSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelFmp4HlsSettings

type ChannelFmp4HlsSettings struct {
	AudioRenditionSets    *string `pulumi:"audioRenditionSets"`
	NielsenId3Behavior    *string `pulumi:"nielsenId3Behavior"`
	TimedMetadataBehavior *string `pulumi:"timedMetadataBehavior"`
}

type ChannelFmp4HlsSettingsArgs

type ChannelFmp4HlsSettingsArgs struct {
	AudioRenditionSets    pulumi.StringPtrInput `pulumi:"audioRenditionSets"`
	NielsenId3Behavior    pulumi.StringPtrInput `pulumi:"nielsenId3Behavior"`
	TimedMetadataBehavior pulumi.StringPtrInput `pulumi:"timedMetadataBehavior"`
}

func (ChannelFmp4HlsSettingsArgs) ElementType

func (ChannelFmp4HlsSettingsArgs) ElementType() reflect.Type

func (ChannelFmp4HlsSettingsArgs) ToChannelFmp4HlsSettingsOutput

func (i ChannelFmp4HlsSettingsArgs) ToChannelFmp4HlsSettingsOutput() ChannelFmp4HlsSettingsOutput

func (ChannelFmp4HlsSettingsArgs) ToChannelFmp4HlsSettingsOutputWithContext

func (i ChannelFmp4HlsSettingsArgs) ToChannelFmp4HlsSettingsOutputWithContext(ctx context.Context) ChannelFmp4HlsSettingsOutput

func (ChannelFmp4HlsSettingsArgs) ToChannelFmp4HlsSettingsPtrOutput

func (i ChannelFmp4HlsSettingsArgs) ToChannelFmp4HlsSettingsPtrOutput() ChannelFmp4HlsSettingsPtrOutput

func (ChannelFmp4HlsSettingsArgs) ToChannelFmp4HlsSettingsPtrOutputWithContext

func (i ChannelFmp4HlsSettingsArgs) ToChannelFmp4HlsSettingsPtrOutputWithContext(ctx context.Context) ChannelFmp4HlsSettingsPtrOutput

func (ChannelFmp4HlsSettingsArgs) ToOutput added in v0.76.0

type ChannelFmp4HlsSettingsInput

type ChannelFmp4HlsSettingsInput interface {
	pulumi.Input

	ToChannelFmp4HlsSettingsOutput() ChannelFmp4HlsSettingsOutput
	ToChannelFmp4HlsSettingsOutputWithContext(context.Context) ChannelFmp4HlsSettingsOutput
}

ChannelFmp4HlsSettingsInput is an input type that accepts ChannelFmp4HlsSettingsArgs and ChannelFmp4HlsSettingsOutput values. You can construct a concrete instance of `ChannelFmp4HlsSettingsInput` via:

ChannelFmp4HlsSettingsArgs{...}

type ChannelFmp4HlsSettingsOutput

type ChannelFmp4HlsSettingsOutput struct{ *pulumi.OutputState }

func (ChannelFmp4HlsSettingsOutput) AudioRenditionSets

func (o ChannelFmp4HlsSettingsOutput) AudioRenditionSets() pulumi.StringPtrOutput

func (ChannelFmp4HlsSettingsOutput) ElementType

func (ChannelFmp4HlsSettingsOutput) NielsenId3Behavior

func (o ChannelFmp4HlsSettingsOutput) NielsenId3Behavior() pulumi.StringPtrOutput

func (ChannelFmp4HlsSettingsOutput) TimedMetadataBehavior

func (o ChannelFmp4HlsSettingsOutput) TimedMetadataBehavior() pulumi.StringPtrOutput

func (ChannelFmp4HlsSettingsOutput) ToChannelFmp4HlsSettingsOutput

func (o ChannelFmp4HlsSettingsOutput) ToChannelFmp4HlsSettingsOutput() ChannelFmp4HlsSettingsOutput

func (ChannelFmp4HlsSettingsOutput) ToChannelFmp4HlsSettingsOutputWithContext

func (o ChannelFmp4HlsSettingsOutput) ToChannelFmp4HlsSettingsOutputWithContext(ctx context.Context) ChannelFmp4HlsSettingsOutput

func (ChannelFmp4HlsSettingsOutput) ToChannelFmp4HlsSettingsPtrOutput

func (o ChannelFmp4HlsSettingsOutput) ToChannelFmp4HlsSettingsPtrOutput() ChannelFmp4HlsSettingsPtrOutput

func (ChannelFmp4HlsSettingsOutput) ToChannelFmp4HlsSettingsPtrOutputWithContext

func (o ChannelFmp4HlsSettingsOutput) ToChannelFmp4HlsSettingsPtrOutputWithContext(ctx context.Context) ChannelFmp4HlsSettingsPtrOutput

func (ChannelFmp4HlsSettingsOutput) ToOutput added in v0.76.0

type ChannelFmp4HlsSettingsPtrInput

type ChannelFmp4HlsSettingsPtrInput interface {
	pulumi.Input

	ToChannelFmp4HlsSettingsPtrOutput() ChannelFmp4HlsSettingsPtrOutput
	ToChannelFmp4HlsSettingsPtrOutputWithContext(context.Context) ChannelFmp4HlsSettingsPtrOutput
}

ChannelFmp4HlsSettingsPtrInput is an input type that accepts ChannelFmp4HlsSettingsArgs, ChannelFmp4HlsSettingsPtr and ChannelFmp4HlsSettingsPtrOutput values. You can construct a concrete instance of `ChannelFmp4HlsSettingsPtrInput` via:

        ChannelFmp4HlsSettingsArgs{...}

or:

        nil

type ChannelFmp4HlsSettingsPtrOutput

type ChannelFmp4HlsSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelFmp4HlsSettingsPtrOutput) AudioRenditionSets

func (ChannelFmp4HlsSettingsPtrOutput) Elem

func (ChannelFmp4HlsSettingsPtrOutput) ElementType

func (ChannelFmp4HlsSettingsPtrOutput) NielsenId3Behavior

func (ChannelFmp4HlsSettingsPtrOutput) TimedMetadataBehavior

func (o ChannelFmp4HlsSettingsPtrOutput) TimedMetadataBehavior() pulumi.StringPtrOutput

func (ChannelFmp4HlsSettingsPtrOutput) ToChannelFmp4HlsSettingsPtrOutput

func (o ChannelFmp4HlsSettingsPtrOutput) ToChannelFmp4HlsSettingsPtrOutput() ChannelFmp4HlsSettingsPtrOutput

func (ChannelFmp4HlsSettingsPtrOutput) ToChannelFmp4HlsSettingsPtrOutputWithContext

func (o ChannelFmp4HlsSettingsPtrOutput) ToChannelFmp4HlsSettingsPtrOutputWithContext(ctx context.Context) ChannelFmp4HlsSettingsPtrOutput

func (ChannelFmp4HlsSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelFrameCaptureCdnSettings

type ChannelFrameCaptureCdnSettings struct {
	FrameCaptureS3Settings *ChannelFrameCaptureS3Settings `pulumi:"frameCaptureS3Settings"`
}

type ChannelFrameCaptureCdnSettingsArgs

type ChannelFrameCaptureCdnSettingsArgs struct {
	FrameCaptureS3Settings ChannelFrameCaptureS3SettingsPtrInput `pulumi:"frameCaptureS3Settings"`
}

func (ChannelFrameCaptureCdnSettingsArgs) ElementType

func (ChannelFrameCaptureCdnSettingsArgs) ToChannelFrameCaptureCdnSettingsOutput

func (i ChannelFrameCaptureCdnSettingsArgs) ToChannelFrameCaptureCdnSettingsOutput() ChannelFrameCaptureCdnSettingsOutput

func (ChannelFrameCaptureCdnSettingsArgs) ToChannelFrameCaptureCdnSettingsOutputWithContext

func (i ChannelFrameCaptureCdnSettingsArgs) ToChannelFrameCaptureCdnSettingsOutputWithContext(ctx context.Context) ChannelFrameCaptureCdnSettingsOutput

func (ChannelFrameCaptureCdnSettingsArgs) ToChannelFrameCaptureCdnSettingsPtrOutput

func (i ChannelFrameCaptureCdnSettingsArgs) ToChannelFrameCaptureCdnSettingsPtrOutput() ChannelFrameCaptureCdnSettingsPtrOutput

func (ChannelFrameCaptureCdnSettingsArgs) ToChannelFrameCaptureCdnSettingsPtrOutputWithContext

func (i ChannelFrameCaptureCdnSettingsArgs) ToChannelFrameCaptureCdnSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureCdnSettingsPtrOutput

func (ChannelFrameCaptureCdnSettingsArgs) ToOutput added in v0.76.0

type ChannelFrameCaptureCdnSettingsInput

type ChannelFrameCaptureCdnSettingsInput interface {
	pulumi.Input

	ToChannelFrameCaptureCdnSettingsOutput() ChannelFrameCaptureCdnSettingsOutput
	ToChannelFrameCaptureCdnSettingsOutputWithContext(context.Context) ChannelFrameCaptureCdnSettingsOutput
}

ChannelFrameCaptureCdnSettingsInput is an input type that accepts ChannelFrameCaptureCdnSettingsArgs and ChannelFrameCaptureCdnSettingsOutput values. You can construct a concrete instance of `ChannelFrameCaptureCdnSettingsInput` via:

ChannelFrameCaptureCdnSettingsArgs{...}

type ChannelFrameCaptureCdnSettingsOutput

type ChannelFrameCaptureCdnSettingsOutput struct{ *pulumi.OutputState }

func (ChannelFrameCaptureCdnSettingsOutput) ElementType

func (ChannelFrameCaptureCdnSettingsOutput) FrameCaptureS3Settings

func (ChannelFrameCaptureCdnSettingsOutput) ToChannelFrameCaptureCdnSettingsOutput

func (o ChannelFrameCaptureCdnSettingsOutput) ToChannelFrameCaptureCdnSettingsOutput() ChannelFrameCaptureCdnSettingsOutput

func (ChannelFrameCaptureCdnSettingsOutput) ToChannelFrameCaptureCdnSettingsOutputWithContext

func (o ChannelFrameCaptureCdnSettingsOutput) ToChannelFrameCaptureCdnSettingsOutputWithContext(ctx context.Context) ChannelFrameCaptureCdnSettingsOutput

func (ChannelFrameCaptureCdnSettingsOutput) ToChannelFrameCaptureCdnSettingsPtrOutput

func (o ChannelFrameCaptureCdnSettingsOutput) ToChannelFrameCaptureCdnSettingsPtrOutput() ChannelFrameCaptureCdnSettingsPtrOutput

func (ChannelFrameCaptureCdnSettingsOutput) ToChannelFrameCaptureCdnSettingsPtrOutputWithContext

func (o ChannelFrameCaptureCdnSettingsOutput) ToChannelFrameCaptureCdnSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureCdnSettingsPtrOutput

func (ChannelFrameCaptureCdnSettingsOutput) ToOutput added in v0.76.0

type ChannelFrameCaptureCdnSettingsPtrInput

type ChannelFrameCaptureCdnSettingsPtrInput interface {
	pulumi.Input

	ToChannelFrameCaptureCdnSettingsPtrOutput() ChannelFrameCaptureCdnSettingsPtrOutput
	ToChannelFrameCaptureCdnSettingsPtrOutputWithContext(context.Context) ChannelFrameCaptureCdnSettingsPtrOutput
}

ChannelFrameCaptureCdnSettingsPtrInput is an input type that accepts ChannelFrameCaptureCdnSettingsArgs, ChannelFrameCaptureCdnSettingsPtr and ChannelFrameCaptureCdnSettingsPtrOutput values. You can construct a concrete instance of `ChannelFrameCaptureCdnSettingsPtrInput` via:

        ChannelFrameCaptureCdnSettingsArgs{...}

or:

        nil

type ChannelFrameCaptureCdnSettingsPtrOutput

type ChannelFrameCaptureCdnSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelFrameCaptureCdnSettingsPtrOutput) Elem

func (ChannelFrameCaptureCdnSettingsPtrOutput) ElementType

func (ChannelFrameCaptureCdnSettingsPtrOutput) FrameCaptureS3Settings

func (ChannelFrameCaptureCdnSettingsPtrOutput) ToChannelFrameCaptureCdnSettingsPtrOutput

func (o ChannelFrameCaptureCdnSettingsPtrOutput) ToChannelFrameCaptureCdnSettingsPtrOutput() ChannelFrameCaptureCdnSettingsPtrOutput

func (ChannelFrameCaptureCdnSettingsPtrOutput) ToChannelFrameCaptureCdnSettingsPtrOutputWithContext

func (o ChannelFrameCaptureCdnSettingsPtrOutput) ToChannelFrameCaptureCdnSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureCdnSettingsPtrOutput

func (ChannelFrameCaptureCdnSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelFrameCaptureGroupSettings

type ChannelFrameCaptureGroupSettings struct {
	Destination             *ChannelOutputLocationRef       `pulumi:"destination"`
	FrameCaptureCdnSettings *ChannelFrameCaptureCdnSettings `pulumi:"frameCaptureCdnSettings"`
}

type ChannelFrameCaptureGroupSettingsArgs

type ChannelFrameCaptureGroupSettingsArgs struct {
	Destination             ChannelOutputLocationRefPtrInput       `pulumi:"destination"`
	FrameCaptureCdnSettings ChannelFrameCaptureCdnSettingsPtrInput `pulumi:"frameCaptureCdnSettings"`
}

func (ChannelFrameCaptureGroupSettingsArgs) ElementType

func (ChannelFrameCaptureGroupSettingsArgs) ToChannelFrameCaptureGroupSettingsOutput

func (i ChannelFrameCaptureGroupSettingsArgs) ToChannelFrameCaptureGroupSettingsOutput() ChannelFrameCaptureGroupSettingsOutput

func (ChannelFrameCaptureGroupSettingsArgs) ToChannelFrameCaptureGroupSettingsOutputWithContext

func (i ChannelFrameCaptureGroupSettingsArgs) ToChannelFrameCaptureGroupSettingsOutputWithContext(ctx context.Context) ChannelFrameCaptureGroupSettingsOutput

func (ChannelFrameCaptureGroupSettingsArgs) ToChannelFrameCaptureGroupSettingsPtrOutput

func (i ChannelFrameCaptureGroupSettingsArgs) ToChannelFrameCaptureGroupSettingsPtrOutput() ChannelFrameCaptureGroupSettingsPtrOutput

func (ChannelFrameCaptureGroupSettingsArgs) ToChannelFrameCaptureGroupSettingsPtrOutputWithContext

func (i ChannelFrameCaptureGroupSettingsArgs) ToChannelFrameCaptureGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureGroupSettingsPtrOutput

func (ChannelFrameCaptureGroupSettingsArgs) ToOutput added in v0.76.0

type ChannelFrameCaptureGroupSettingsInput

type ChannelFrameCaptureGroupSettingsInput interface {
	pulumi.Input

	ToChannelFrameCaptureGroupSettingsOutput() ChannelFrameCaptureGroupSettingsOutput
	ToChannelFrameCaptureGroupSettingsOutputWithContext(context.Context) ChannelFrameCaptureGroupSettingsOutput
}

ChannelFrameCaptureGroupSettingsInput is an input type that accepts ChannelFrameCaptureGroupSettingsArgs and ChannelFrameCaptureGroupSettingsOutput values. You can construct a concrete instance of `ChannelFrameCaptureGroupSettingsInput` via:

ChannelFrameCaptureGroupSettingsArgs{...}

type ChannelFrameCaptureGroupSettingsOutput

type ChannelFrameCaptureGroupSettingsOutput struct{ *pulumi.OutputState }

func (ChannelFrameCaptureGroupSettingsOutput) Destination

func (ChannelFrameCaptureGroupSettingsOutput) ElementType

func (ChannelFrameCaptureGroupSettingsOutput) FrameCaptureCdnSettings

func (ChannelFrameCaptureGroupSettingsOutput) ToChannelFrameCaptureGroupSettingsOutput

func (o ChannelFrameCaptureGroupSettingsOutput) ToChannelFrameCaptureGroupSettingsOutput() ChannelFrameCaptureGroupSettingsOutput

func (ChannelFrameCaptureGroupSettingsOutput) ToChannelFrameCaptureGroupSettingsOutputWithContext

func (o ChannelFrameCaptureGroupSettingsOutput) ToChannelFrameCaptureGroupSettingsOutputWithContext(ctx context.Context) ChannelFrameCaptureGroupSettingsOutput

func (ChannelFrameCaptureGroupSettingsOutput) ToChannelFrameCaptureGroupSettingsPtrOutput

func (o ChannelFrameCaptureGroupSettingsOutput) ToChannelFrameCaptureGroupSettingsPtrOutput() ChannelFrameCaptureGroupSettingsPtrOutput

func (ChannelFrameCaptureGroupSettingsOutput) ToChannelFrameCaptureGroupSettingsPtrOutputWithContext

func (o ChannelFrameCaptureGroupSettingsOutput) ToChannelFrameCaptureGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureGroupSettingsPtrOutput

func (ChannelFrameCaptureGroupSettingsOutput) ToOutput added in v0.76.0

type ChannelFrameCaptureGroupSettingsPtrInput

type ChannelFrameCaptureGroupSettingsPtrInput interface {
	pulumi.Input

	ToChannelFrameCaptureGroupSettingsPtrOutput() ChannelFrameCaptureGroupSettingsPtrOutput
	ToChannelFrameCaptureGroupSettingsPtrOutputWithContext(context.Context) ChannelFrameCaptureGroupSettingsPtrOutput
}

ChannelFrameCaptureGroupSettingsPtrInput is an input type that accepts ChannelFrameCaptureGroupSettingsArgs, ChannelFrameCaptureGroupSettingsPtr and ChannelFrameCaptureGroupSettingsPtrOutput values. You can construct a concrete instance of `ChannelFrameCaptureGroupSettingsPtrInput` via:

        ChannelFrameCaptureGroupSettingsArgs{...}

or:

        nil

type ChannelFrameCaptureGroupSettingsPtrOutput

type ChannelFrameCaptureGroupSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelFrameCaptureGroupSettingsPtrOutput) Destination

func (ChannelFrameCaptureGroupSettingsPtrOutput) Elem

func (ChannelFrameCaptureGroupSettingsPtrOutput) ElementType

func (ChannelFrameCaptureGroupSettingsPtrOutput) FrameCaptureCdnSettings

func (ChannelFrameCaptureGroupSettingsPtrOutput) ToChannelFrameCaptureGroupSettingsPtrOutput

func (o ChannelFrameCaptureGroupSettingsPtrOutput) ToChannelFrameCaptureGroupSettingsPtrOutput() ChannelFrameCaptureGroupSettingsPtrOutput

func (ChannelFrameCaptureGroupSettingsPtrOutput) ToChannelFrameCaptureGroupSettingsPtrOutputWithContext

func (o ChannelFrameCaptureGroupSettingsPtrOutput) ToChannelFrameCaptureGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureGroupSettingsPtrOutput

func (ChannelFrameCaptureGroupSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelFrameCaptureHlsSettings

type ChannelFrameCaptureHlsSettings struct {
}

type ChannelFrameCaptureHlsSettingsArgs

type ChannelFrameCaptureHlsSettingsArgs struct {
}

func (ChannelFrameCaptureHlsSettingsArgs) ElementType

func (ChannelFrameCaptureHlsSettingsArgs) ToChannelFrameCaptureHlsSettingsOutput

func (i ChannelFrameCaptureHlsSettingsArgs) ToChannelFrameCaptureHlsSettingsOutput() ChannelFrameCaptureHlsSettingsOutput

func (ChannelFrameCaptureHlsSettingsArgs) ToChannelFrameCaptureHlsSettingsOutputWithContext

func (i ChannelFrameCaptureHlsSettingsArgs) ToChannelFrameCaptureHlsSettingsOutputWithContext(ctx context.Context) ChannelFrameCaptureHlsSettingsOutput

func (ChannelFrameCaptureHlsSettingsArgs) ToChannelFrameCaptureHlsSettingsPtrOutput

func (i ChannelFrameCaptureHlsSettingsArgs) ToChannelFrameCaptureHlsSettingsPtrOutput() ChannelFrameCaptureHlsSettingsPtrOutput

func (ChannelFrameCaptureHlsSettingsArgs) ToChannelFrameCaptureHlsSettingsPtrOutputWithContext

func (i ChannelFrameCaptureHlsSettingsArgs) ToChannelFrameCaptureHlsSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureHlsSettingsPtrOutput

func (ChannelFrameCaptureHlsSettingsArgs) ToOutput added in v0.76.0

type ChannelFrameCaptureHlsSettingsInput

type ChannelFrameCaptureHlsSettingsInput interface {
	pulumi.Input

	ToChannelFrameCaptureHlsSettingsOutput() ChannelFrameCaptureHlsSettingsOutput
	ToChannelFrameCaptureHlsSettingsOutputWithContext(context.Context) ChannelFrameCaptureHlsSettingsOutput
}

ChannelFrameCaptureHlsSettingsInput is an input type that accepts ChannelFrameCaptureHlsSettingsArgs and ChannelFrameCaptureHlsSettingsOutput values. You can construct a concrete instance of `ChannelFrameCaptureHlsSettingsInput` via:

ChannelFrameCaptureHlsSettingsArgs{...}

type ChannelFrameCaptureHlsSettingsOutput

type ChannelFrameCaptureHlsSettingsOutput struct{ *pulumi.OutputState }

func (ChannelFrameCaptureHlsSettingsOutput) ElementType

func (ChannelFrameCaptureHlsSettingsOutput) ToChannelFrameCaptureHlsSettingsOutput

func (o ChannelFrameCaptureHlsSettingsOutput) ToChannelFrameCaptureHlsSettingsOutput() ChannelFrameCaptureHlsSettingsOutput

func (ChannelFrameCaptureHlsSettingsOutput) ToChannelFrameCaptureHlsSettingsOutputWithContext

func (o ChannelFrameCaptureHlsSettingsOutput) ToChannelFrameCaptureHlsSettingsOutputWithContext(ctx context.Context) ChannelFrameCaptureHlsSettingsOutput

func (ChannelFrameCaptureHlsSettingsOutput) ToChannelFrameCaptureHlsSettingsPtrOutput

func (o ChannelFrameCaptureHlsSettingsOutput) ToChannelFrameCaptureHlsSettingsPtrOutput() ChannelFrameCaptureHlsSettingsPtrOutput

func (ChannelFrameCaptureHlsSettingsOutput) ToChannelFrameCaptureHlsSettingsPtrOutputWithContext

func (o ChannelFrameCaptureHlsSettingsOutput) ToChannelFrameCaptureHlsSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureHlsSettingsPtrOutput

func (ChannelFrameCaptureHlsSettingsOutput) ToOutput added in v0.76.0

type ChannelFrameCaptureHlsSettingsPtrInput

type ChannelFrameCaptureHlsSettingsPtrInput interface {
	pulumi.Input

	ToChannelFrameCaptureHlsSettingsPtrOutput() ChannelFrameCaptureHlsSettingsPtrOutput
	ToChannelFrameCaptureHlsSettingsPtrOutputWithContext(context.Context) ChannelFrameCaptureHlsSettingsPtrOutput
}

ChannelFrameCaptureHlsSettingsPtrInput is an input type that accepts ChannelFrameCaptureHlsSettingsArgs, ChannelFrameCaptureHlsSettingsPtr and ChannelFrameCaptureHlsSettingsPtrOutput values. You can construct a concrete instance of `ChannelFrameCaptureHlsSettingsPtrInput` via:

        ChannelFrameCaptureHlsSettingsArgs{...}

or:

        nil

type ChannelFrameCaptureHlsSettingsPtrOutput

type ChannelFrameCaptureHlsSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelFrameCaptureHlsSettingsPtrOutput) Elem

func (ChannelFrameCaptureHlsSettingsPtrOutput) ElementType

func (ChannelFrameCaptureHlsSettingsPtrOutput) ToChannelFrameCaptureHlsSettingsPtrOutput

func (o ChannelFrameCaptureHlsSettingsPtrOutput) ToChannelFrameCaptureHlsSettingsPtrOutput() ChannelFrameCaptureHlsSettingsPtrOutput

func (ChannelFrameCaptureHlsSettingsPtrOutput) ToChannelFrameCaptureHlsSettingsPtrOutputWithContext

func (o ChannelFrameCaptureHlsSettingsPtrOutput) ToChannelFrameCaptureHlsSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureHlsSettingsPtrOutput

func (ChannelFrameCaptureHlsSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelFrameCaptureOutputSettings

type ChannelFrameCaptureOutputSettings struct {
	NameModifier *string `pulumi:"nameModifier"`
}

type ChannelFrameCaptureOutputSettingsArgs

type ChannelFrameCaptureOutputSettingsArgs struct {
	NameModifier pulumi.StringPtrInput `pulumi:"nameModifier"`
}

func (ChannelFrameCaptureOutputSettingsArgs) ElementType

func (ChannelFrameCaptureOutputSettingsArgs) ToChannelFrameCaptureOutputSettingsOutput

func (i ChannelFrameCaptureOutputSettingsArgs) ToChannelFrameCaptureOutputSettingsOutput() ChannelFrameCaptureOutputSettingsOutput

func (ChannelFrameCaptureOutputSettingsArgs) ToChannelFrameCaptureOutputSettingsOutputWithContext

func (i ChannelFrameCaptureOutputSettingsArgs) ToChannelFrameCaptureOutputSettingsOutputWithContext(ctx context.Context) ChannelFrameCaptureOutputSettingsOutput

func (ChannelFrameCaptureOutputSettingsArgs) ToChannelFrameCaptureOutputSettingsPtrOutput

func (i ChannelFrameCaptureOutputSettingsArgs) ToChannelFrameCaptureOutputSettingsPtrOutput() ChannelFrameCaptureOutputSettingsPtrOutput

func (ChannelFrameCaptureOutputSettingsArgs) ToChannelFrameCaptureOutputSettingsPtrOutputWithContext

func (i ChannelFrameCaptureOutputSettingsArgs) ToChannelFrameCaptureOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureOutputSettingsPtrOutput

func (ChannelFrameCaptureOutputSettingsArgs) ToOutput added in v0.76.0

type ChannelFrameCaptureOutputSettingsInput

type ChannelFrameCaptureOutputSettingsInput interface {
	pulumi.Input

	ToChannelFrameCaptureOutputSettingsOutput() ChannelFrameCaptureOutputSettingsOutput
	ToChannelFrameCaptureOutputSettingsOutputWithContext(context.Context) ChannelFrameCaptureOutputSettingsOutput
}

ChannelFrameCaptureOutputSettingsInput is an input type that accepts ChannelFrameCaptureOutputSettingsArgs and ChannelFrameCaptureOutputSettingsOutput values. You can construct a concrete instance of `ChannelFrameCaptureOutputSettingsInput` via:

ChannelFrameCaptureOutputSettingsArgs{...}

type ChannelFrameCaptureOutputSettingsOutput

type ChannelFrameCaptureOutputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelFrameCaptureOutputSettingsOutput) ElementType

func (ChannelFrameCaptureOutputSettingsOutput) NameModifier

func (ChannelFrameCaptureOutputSettingsOutput) ToChannelFrameCaptureOutputSettingsOutput

func (o ChannelFrameCaptureOutputSettingsOutput) ToChannelFrameCaptureOutputSettingsOutput() ChannelFrameCaptureOutputSettingsOutput

func (ChannelFrameCaptureOutputSettingsOutput) ToChannelFrameCaptureOutputSettingsOutputWithContext

func (o ChannelFrameCaptureOutputSettingsOutput) ToChannelFrameCaptureOutputSettingsOutputWithContext(ctx context.Context) ChannelFrameCaptureOutputSettingsOutput

func (ChannelFrameCaptureOutputSettingsOutput) ToChannelFrameCaptureOutputSettingsPtrOutput

func (o ChannelFrameCaptureOutputSettingsOutput) ToChannelFrameCaptureOutputSettingsPtrOutput() ChannelFrameCaptureOutputSettingsPtrOutput

func (ChannelFrameCaptureOutputSettingsOutput) ToChannelFrameCaptureOutputSettingsPtrOutputWithContext

func (o ChannelFrameCaptureOutputSettingsOutput) ToChannelFrameCaptureOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureOutputSettingsPtrOutput

func (ChannelFrameCaptureOutputSettingsOutput) ToOutput added in v0.76.0

type ChannelFrameCaptureOutputSettingsPtrInput

type ChannelFrameCaptureOutputSettingsPtrInput interface {
	pulumi.Input

	ToChannelFrameCaptureOutputSettingsPtrOutput() ChannelFrameCaptureOutputSettingsPtrOutput
	ToChannelFrameCaptureOutputSettingsPtrOutputWithContext(context.Context) ChannelFrameCaptureOutputSettingsPtrOutput
}

ChannelFrameCaptureOutputSettingsPtrInput is an input type that accepts ChannelFrameCaptureOutputSettingsArgs, ChannelFrameCaptureOutputSettingsPtr and ChannelFrameCaptureOutputSettingsPtrOutput values. You can construct a concrete instance of `ChannelFrameCaptureOutputSettingsPtrInput` via:

        ChannelFrameCaptureOutputSettingsArgs{...}

or:

        nil

type ChannelFrameCaptureOutputSettingsPtrOutput

type ChannelFrameCaptureOutputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelFrameCaptureOutputSettingsPtrOutput) Elem

func (ChannelFrameCaptureOutputSettingsPtrOutput) ElementType

func (ChannelFrameCaptureOutputSettingsPtrOutput) NameModifier

func (ChannelFrameCaptureOutputSettingsPtrOutput) ToChannelFrameCaptureOutputSettingsPtrOutput

func (o ChannelFrameCaptureOutputSettingsPtrOutput) ToChannelFrameCaptureOutputSettingsPtrOutput() ChannelFrameCaptureOutputSettingsPtrOutput

func (ChannelFrameCaptureOutputSettingsPtrOutput) ToChannelFrameCaptureOutputSettingsPtrOutputWithContext

func (o ChannelFrameCaptureOutputSettingsPtrOutput) ToChannelFrameCaptureOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureOutputSettingsPtrOutput

func (ChannelFrameCaptureOutputSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelFrameCaptureS3Settings

type ChannelFrameCaptureS3Settings struct {
	CannedAcl *string `pulumi:"cannedAcl"`
}

type ChannelFrameCaptureS3SettingsArgs

type ChannelFrameCaptureS3SettingsArgs struct {
	CannedAcl pulumi.StringPtrInput `pulumi:"cannedAcl"`
}

func (ChannelFrameCaptureS3SettingsArgs) ElementType

func (ChannelFrameCaptureS3SettingsArgs) ToChannelFrameCaptureS3SettingsOutput

func (i ChannelFrameCaptureS3SettingsArgs) ToChannelFrameCaptureS3SettingsOutput() ChannelFrameCaptureS3SettingsOutput

func (ChannelFrameCaptureS3SettingsArgs) ToChannelFrameCaptureS3SettingsOutputWithContext

func (i ChannelFrameCaptureS3SettingsArgs) ToChannelFrameCaptureS3SettingsOutputWithContext(ctx context.Context) ChannelFrameCaptureS3SettingsOutput

func (ChannelFrameCaptureS3SettingsArgs) ToChannelFrameCaptureS3SettingsPtrOutput

func (i ChannelFrameCaptureS3SettingsArgs) ToChannelFrameCaptureS3SettingsPtrOutput() ChannelFrameCaptureS3SettingsPtrOutput

func (ChannelFrameCaptureS3SettingsArgs) ToChannelFrameCaptureS3SettingsPtrOutputWithContext

func (i ChannelFrameCaptureS3SettingsArgs) ToChannelFrameCaptureS3SettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureS3SettingsPtrOutput

func (ChannelFrameCaptureS3SettingsArgs) ToOutput added in v0.76.0

type ChannelFrameCaptureS3SettingsInput

type ChannelFrameCaptureS3SettingsInput interface {
	pulumi.Input

	ToChannelFrameCaptureS3SettingsOutput() ChannelFrameCaptureS3SettingsOutput
	ToChannelFrameCaptureS3SettingsOutputWithContext(context.Context) ChannelFrameCaptureS3SettingsOutput
}

ChannelFrameCaptureS3SettingsInput is an input type that accepts ChannelFrameCaptureS3SettingsArgs and ChannelFrameCaptureS3SettingsOutput values. You can construct a concrete instance of `ChannelFrameCaptureS3SettingsInput` via:

ChannelFrameCaptureS3SettingsArgs{...}

type ChannelFrameCaptureS3SettingsOutput

type ChannelFrameCaptureS3SettingsOutput struct{ *pulumi.OutputState }

func (ChannelFrameCaptureS3SettingsOutput) CannedAcl

func (ChannelFrameCaptureS3SettingsOutput) ElementType

func (ChannelFrameCaptureS3SettingsOutput) ToChannelFrameCaptureS3SettingsOutput

func (o ChannelFrameCaptureS3SettingsOutput) ToChannelFrameCaptureS3SettingsOutput() ChannelFrameCaptureS3SettingsOutput

func (ChannelFrameCaptureS3SettingsOutput) ToChannelFrameCaptureS3SettingsOutputWithContext

func (o ChannelFrameCaptureS3SettingsOutput) ToChannelFrameCaptureS3SettingsOutputWithContext(ctx context.Context) ChannelFrameCaptureS3SettingsOutput

func (ChannelFrameCaptureS3SettingsOutput) ToChannelFrameCaptureS3SettingsPtrOutput

func (o ChannelFrameCaptureS3SettingsOutput) ToChannelFrameCaptureS3SettingsPtrOutput() ChannelFrameCaptureS3SettingsPtrOutput

func (ChannelFrameCaptureS3SettingsOutput) ToChannelFrameCaptureS3SettingsPtrOutputWithContext

func (o ChannelFrameCaptureS3SettingsOutput) ToChannelFrameCaptureS3SettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureS3SettingsPtrOutput

func (ChannelFrameCaptureS3SettingsOutput) ToOutput added in v0.76.0

type ChannelFrameCaptureS3SettingsPtrInput

type ChannelFrameCaptureS3SettingsPtrInput interface {
	pulumi.Input

	ToChannelFrameCaptureS3SettingsPtrOutput() ChannelFrameCaptureS3SettingsPtrOutput
	ToChannelFrameCaptureS3SettingsPtrOutputWithContext(context.Context) ChannelFrameCaptureS3SettingsPtrOutput
}

ChannelFrameCaptureS3SettingsPtrInput is an input type that accepts ChannelFrameCaptureS3SettingsArgs, ChannelFrameCaptureS3SettingsPtr and ChannelFrameCaptureS3SettingsPtrOutput values. You can construct a concrete instance of `ChannelFrameCaptureS3SettingsPtrInput` via:

        ChannelFrameCaptureS3SettingsArgs{...}

or:

        nil

type ChannelFrameCaptureS3SettingsPtrOutput

type ChannelFrameCaptureS3SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelFrameCaptureS3SettingsPtrOutput) CannedAcl

func (ChannelFrameCaptureS3SettingsPtrOutput) Elem

func (ChannelFrameCaptureS3SettingsPtrOutput) ElementType

func (ChannelFrameCaptureS3SettingsPtrOutput) ToChannelFrameCaptureS3SettingsPtrOutput

func (o ChannelFrameCaptureS3SettingsPtrOutput) ToChannelFrameCaptureS3SettingsPtrOutput() ChannelFrameCaptureS3SettingsPtrOutput

func (ChannelFrameCaptureS3SettingsPtrOutput) ToChannelFrameCaptureS3SettingsPtrOutputWithContext

func (o ChannelFrameCaptureS3SettingsPtrOutput) ToChannelFrameCaptureS3SettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureS3SettingsPtrOutput

func (ChannelFrameCaptureS3SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelFrameCaptureSettings

type ChannelFrameCaptureSettings struct {
	CaptureInterval        *int                           `pulumi:"captureInterval"`
	CaptureIntervalUnits   *string                        `pulumi:"captureIntervalUnits"`
	TimecodeBurninSettings *ChannelTimecodeBurninSettings `pulumi:"timecodeBurninSettings"`
}

type ChannelFrameCaptureSettingsArgs

type ChannelFrameCaptureSettingsArgs struct {
	CaptureInterval        pulumi.IntPtrInput                    `pulumi:"captureInterval"`
	CaptureIntervalUnits   pulumi.StringPtrInput                 `pulumi:"captureIntervalUnits"`
	TimecodeBurninSettings ChannelTimecodeBurninSettingsPtrInput `pulumi:"timecodeBurninSettings"`
}

func (ChannelFrameCaptureSettingsArgs) ElementType

func (ChannelFrameCaptureSettingsArgs) ToChannelFrameCaptureSettingsOutput

func (i ChannelFrameCaptureSettingsArgs) ToChannelFrameCaptureSettingsOutput() ChannelFrameCaptureSettingsOutput

func (ChannelFrameCaptureSettingsArgs) ToChannelFrameCaptureSettingsOutputWithContext

func (i ChannelFrameCaptureSettingsArgs) ToChannelFrameCaptureSettingsOutputWithContext(ctx context.Context) ChannelFrameCaptureSettingsOutput

func (ChannelFrameCaptureSettingsArgs) ToChannelFrameCaptureSettingsPtrOutput

func (i ChannelFrameCaptureSettingsArgs) ToChannelFrameCaptureSettingsPtrOutput() ChannelFrameCaptureSettingsPtrOutput

func (ChannelFrameCaptureSettingsArgs) ToChannelFrameCaptureSettingsPtrOutputWithContext

func (i ChannelFrameCaptureSettingsArgs) ToChannelFrameCaptureSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureSettingsPtrOutput

func (ChannelFrameCaptureSettingsArgs) ToOutput added in v0.76.0

type ChannelFrameCaptureSettingsInput

type ChannelFrameCaptureSettingsInput interface {
	pulumi.Input

	ToChannelFrameCaptureSettingsOutput() ChannelFrameCaptureSettingsOutput
	ToChannelFrameCaptureSettingsOutputWithContext(context.Context) ChannelFrameCaptureSettingsOutput
}

ChannelFrameCaptureSettingsInput is an input type that accepts ChannelFrameCaptureSettingsArgs and ChannelFrameCaptureSettingsOutput values. You can construct a concrete instance of `ChannelFrameCaptureSettingsInput` via:

ChannelFrameCaptureSettingsArgs{...}

type ChannelFrameCaptureSettingsOutput

type ChannelFrameCaptureSettingsOutput struct{ *pulumi.OutputState }

func (ChannelFrameCaptureSettingsOutput) CaptureInterval

func (ChannelFrameCaptureSettingsOutput) CaptureIntervalUnits

func (o ChannelFrameCaptureSettingsOutput) CaptureIntervalUnits() pulumi.StringPtrOutput

func (ChannelFrameCaptureSettingsOutput) ElementType

func (ChannelFrameCaptureSettingsOutput) TimecodeBurninSettings added in v0.59.0

func (ChannelFrameCaptureSettingsOutput) ToChannelFrameCaptureSettingsOutput

func (o ChannelFrameCaptureSettingsOutput) ToChannelFrameCaptureSettingsOutput() ChannelFrameCaptureSettingsOutput

func (ChannelFrameCaptureSettingsOutput) ToChannelFrameCaptureSettingsOutputWithContext

func (o ChannelFrameCaptureSettingsOutput) ToChannelFrameCaptureSettingsOutputWithContext(ctx context.Context) ChannelFrameCaptureSettingsOutput

func (ChannelFrameCaptureSettingsOutput) ToChannelFrameCaptureSettingsPtrOutput

func (o ChannelFrameCaptureSettingsOutput) ToChannelFrameCaptureSettingsPtrOutput() ChannelFrameCaptureSettingsPtrOutput

func (ChannelFrameCaptureSettingsOutput) ToChannelFrameCaptureSettingsPtrOutputWithContext

func (o ChannelFrameCaptureSettingsOutput) ToChannelFrameCaptureSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureSettingsPtrOutput

func (ChannelFrameCaptureSettingsOutput) ToOutput added in v0.76.0

type ChannelFrameCaptureSettingsPtrInput

type ChannelFrameCaptureSettingsPtrInput interface {
	pulumi.Input

	ToChannelFrameCaptureSettingsPtrOutput() ChannelFrameCaptureSettingsPtrOutput
	ToChannelFrameCaptureSettingsPtrOutputWithContext(context.Context) ChannelFrameCaptureSettingsPtrOutput
}

ChannelFrameCaptureSettingsPtrInput is an input type that accepts ChannelFrameCaptureSettingsArgs, ChannelFrameCaptureSettingsPtr and ChannelFrameCaptureSettingsPtrOutput values. You can construct a concrete instance of `ChannelFrameCaptureSettingsPtrInput` via:

        ChannelFrameCaptureSettingsArgs{...}

or:

        nil

type ChannelFrameCaptureSettingsPtrOutput

type ChannelFrameCaptureSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelFrameCaptureSettingsPtrOutput) CaptureInterval

func (ChannelFrameCaptureSettingsPtrOutput) CaptureIntervalUnits

func (ChannelFrameCaptureSettingsPtrOutput) Elem

func (ChannelFrameCaptureSettingsPtrOutput) ElementType

func (ChannelFrameCaptureSettingsPtrOutput) TimecodeBurninSettings added in v0.59.0

func (ChannelFrameCaptureSettingsPtrOutput) ToChannelFrameCaptureSettingsPtrOutput

func (o ChannelFrameCaptureSettingsPtrOutput) ToChannelFrameCaptureSettingsPtrOutput() ChannelFrameCaptureSettingsPtrOutput

func (ChannelFrameCaptureSettingsPtrOutput) ToChannelFrameCaptureSettingsPtrOutputWithContext

func (o ChannelFrameCaptureSettingsPtrOutput) ToChannelFrameCaptureSettingsPtrOutputWithContext(ctx context.Context) ChannelFrameCaptureSettingsPtrOutput

func (ChannelFrameCaptureSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelGlobalConfiguration

type ChannelGlobalConfiguration struct {
	InitialAudioGain          *int                      `pulumi:"initialAudioGain"`
	InputEndAction            *string                   `pulumi:"inputEndAction"`
	InputLossBehavior         *ChannelInputLossBehavior `pulumi:"inputLossBehavior"`
	OutputLockingMode         *string                   `pulumi:"outputLockingMode"`
	OutputTimingSource        *string                   `pulumi:"outputTimingSource"`
	SupportLowFramerateInputs *string                   `pulumi:"supportLowFramerateInputs"`
}

type ChannelGlobalConfigurationArgs

type ChannelGlobalConfigurationArgs struct {
	InitialAudioGain          pulumi.IntPtrInput               `pulumi:"initialAudioGain"`
	InputEndAction            pulumi.StringPtrInput            `pulumi:"inputEndAction"`
	InputLossBehavior         ChannelInputLossBehaviorPtrInput `pulumi:"inputLossBehavior"`
	OutputLockingMode         pulumi.StringPtrInput            `pulumi:"outputLockingMode"`
	OutputTimingSource        pulumi.StringPtrInput            `pulumi:"outputTimingSource"`
	SupportLowFramerateInputs pulumi.StringPtrInput            `pulumi:"supportLowFramerateInputs"`
}

func (ChannelGlobalConfigurationArgs) ElementType

func (ChannelGlobalConfigurationArgs) ToChannelGlobalConfigurationOutput

func (i ChannelGlobalConfigurationArgs) ToChannelGlobalConfigurationOutput() ChannelGlobalConfigurationOutput

func (ChannelGlobalConfigurationArgs) ToChannelGlobalConfigurationOutputWithContext

func (i ChannelGlobalConfigurationArgs) ToChannelGlobalConfigurationOutputWithContext(ctx context.Context) ChannelGlobalConfigurationOutput

func (ChannelGlobalConfigurationArgs) ToChannelGlobalConfigurationPtrOutput

func (i ChannelGlobalConfigurationArgs) ToChannelGlobalConfigurationPtrOutput() ChannelGlobalConfigurationPtrOutput

func (ChannelGlobalConfigurationArgs) ToChannelGlobalConfigurationPtrOutputWithContext

func (i ChannelGlobalConfigurationArgs) ToChannelGlobalConfigurationPtrOutputWithContext(ctx context.Context) ChannelGlobalConfigurationPtrOutput

func (ChannelGlobalConfigurationArgs) ToOutput added in v0.76.0

type ChannelGlobalConfigurationInput

type ChannelGlobalConfigurationInput interface {
	pulumi.Input

	ToChannelGlobalConfigurationOutput() ChannelGlobalConfigurationOutput
	ToChannelGlobalConfigurationOutputWithContext(context.Context) ChannelGlobalConfigurationOutput
}

ChannelGlobalConfigurationInput is an input type that accepts ChannelGlobalConfigurationArgs and ChannelGlobalConfigurationOutput values. You can construct a concrete instance of `ChannelGlobalConfigurationInput` via:

ChannelGlobalConfigurationArgs{...}

type ChannelGlobalConfigurationOutput

type ChannelGlobalConfigurationOutput struct{ *pulumi.OutputState }

func (ChannelGlobalConfigurationOutput) ElementType

func (ChannelGlobalConfigurationOutput) InitialAudioGain

func (ChannelGlobalConfigurationOutput) InputEndAction

func (ChannelGlobalConfigurationOutput) InputLossBehavior

func (ChannelGlobalConfigurationOutput) OutputLockingMode

func (ChannelGlobalConfigurationOutput) OutputTimingSource

func (ChannelGlobalConfigurationOutput) SupportLowFramerateInputs

func (o ChannelGlobalConfigurationOutput) SupportLowFramerateInputs() pulumi.StringPtrOutput

func (ChannelGlobalConfigurationOutput) ToChannelGlobalConfigurationOutput

func (o ChannelGlobalConfigurationOutput) ToChannelGlobalConfigurationOutput() ChannelGlobalConfigurationOutput

func (ChannelGlobalConfigurationOutput) ToChannelGlobalConfigurationOutputWithContext

func (o ChannelGlobalConfigurationOutput) ToChannelGlobalConfigurationOutputWithContext(ctx context.Context) ChannelGlobalConfigurationOutput

func (ChannelGlobalConfigurationOutput) ToChannelGlobalConfigurationPtrOutput

func (o ChannelGlobalConfigurationOutput) ToChannelGlobalConfigurationPtrOutput() ChannelGlobalConfigurationPtrOutput

func (ChannelGlobalConfigurationOutput) ToChannelGlobalConfigurationPtrOutputWithContext

func (o ChannelGlobalConfigurationOutput) ToChannelGlobalConfigurationPtrOutputWithContext(ctx context.Context) ChannelGlobalConfigurationPtrOutput

func (ChannelGlobalConfigurationOutput) ToOutput added in v0.76.0

type ChannelGlobalConfigurationPtrInput

type ChannelGlobalConfigurationPtrInput interface {
	pulumi.Input

	ToChannelGlobalConfigurationPtrOutput() ChannelGlobalConfigurationPtrOutput
	ToChannelGlobalConfigurationPtrOutputWithContext(context.Context) ChannelGlobalConfigurationPtrOutput
}

ChannelGlobalConfigurationPtrInput is an input type that accepts ChannelGlobalConfigurationArgs, ChannelGlobalConfigurationPtr and ChannelGlobalConfigurationPtrOutput values. You can construct a concrete instance of `ChannelGlobalConfigurationPtrInput` via:

        ChannelGlobalConfigurationArgs{...}

or:

        nil

type ChannelGlobalConfigurationPtrOutput

type ChannelGlobalConfigurationPtrOutput struct{ *pulumi.OutputState }

func (ChannelGlobalConfigurationPtrOutput) Elem

func (ChannelGlobalConfigurationPtrOutput) ElementType

func (ChannelGlobalConfigurationPtrOutput) InitialAudioGain

func (ChannelGlobalConfigurationPtrOutput) InputEndAction

func (ChannelGlobalConfigurationPtrOutput) InputLossBehavior

func (ChannelGlobalConfigurationPtrOutput) OutputLockingMode

func (ChannelGlobalConfigurationPtrOutput) OutputTimingSource

func (ChannelGlobalConfigurationPtrOutput) SupportLowFramerateInputs

func (o ChannelGlobalConfigurationPtrOutput) SupportLowFramerateInputs() pulumi.StringPtrOutput

func (ChannelGlobalConfigurationPtrOutput) ToChannelGlobalConfigurationPtrOutput

func (o ChannelGlobalConfigurationPtrOutput) ToChannelGlobalConfigurationPtrOutput() ChannelGlobalConfigurationPtrOutput

func (ChannelGlobalConfigurationPtrOutput) ToChannelGlobalConfigurationPtrOutputWithContext

func (o ChannelGlobalConfigurationPtrOutput) ToChannelGlobalConfigurationPtrOutputWithContext(ctx context.Context) ChannelGlobalConfigurationPtrOutput

func (ChannelGlobalConfigurationPtrOutput) ToOutput added in v0.76.0

type ChannelH264ColorSpaceSettings

type ChannelH264ColorSpaceSettings struct {
	ColorSpacePassthroughSettings *ChannelColorSpacePassthroughSettings `pulumi:"colorSpacePassthroughSettings"`
	Rec601Settings                *ChannelRec601Settings                `pulumi:"rec601Settings"`
	Rec709Settings                *ChannelRec709Settings                `pulumi:"rec709Settings"`
}

type ChannelH264ColorSpaceSettingsArgs

type ChannelH264ColorSpaceSettingsArgs struct {
	ColorSpacePassthroughSettings ChannelColorSpacePassthroughSettingsPtrInput `pulumi:"colorSpacePassthroughSettings"`
	Rec601Settings                ChannelRec601SettingsPtrInput                `pulumi:"rec601Settings"`
	Rec709Settings                ChannelRec709SettingsPtrInput                `pulumi:"rec709Settings"`
}

func (ChannelH264ColorSpaceSettingsArgs) ElementType

func (ChannelH264ColorSpaceSettingsArgs) ToChannelH264ColorSpaceSettingsOutput

func (i ChannelH264ColorSpaceSettingsArgs) ToChannelH264ColorSpaceSettingsOutput() ChannelH264ColorSpaceSettingsOutput

func (ChannelH264ColorSpaceSettingsArgs) ToChannelH264ColorSpaceSettingsOutputWithContext

func (i ChannelH264ColorSpaceSettingsArgs) ToChannelH264ColorSpaceSettingsOutputWithContext(ctx context.Context) ChannelH264ColorSpaceSettingsOutput

func (ChannelH264ColorSpaceSettingsArgs) ToChannelH264ColorSpaceSettingsPtrOutput

func (i ChannelH264ColorSpaceSettingsArgs) ToChannelH264ColorSpaceSettingsPtrOutput() ChannelH264ColorSpaceSettingsPtrOutput

func (ChannelH264ColorSpaceSettingsArgs) ToChannelH264ColorSpaceSettingsPtrOutputWithContext

func (i ChannelH264ColorSpaceSettingsArgs) ToChannelH264ColorSpaceSettingsPtrOutputWithContext(ctx context.Context) ChannelH264ColorSpaceSettingsPtrOutput

func (ChannelH264ColorSpaceSettingsArgs) ToOutput added in v0.76.0

type ChannelH264ColorSpaceSettingsInput

type ChannelH264ColorSpaceSettingsInput interface {
	pulumi.Input

	ToChannelH264ColorSpaceSettingsOutput() ChannelH264ColorSpaceSettingsOutput
	ToChannelH264ColorSpaceSettingsOutputWithContext(context.Context) ChannelH264ColorSpaceSettingsOutput
}

ChannelH264ColorSpaceSettingsInput is an input type that accepts ChannelH264ColorSpaceSettingsArgs and ChannelH264ColorSpaceSettingsOutput values. You can construct a concrete instance of `ChannelH264ColorSpaceSettingsInput` via:

ChannelH264ColorSpaceSettingsArgs{...}

type ChannelH264ColorSpaceSettingsOutput

type ChannelH264ColorSpaceSettingsOutput struct{ *pulumi.OutputState }

func (ChannelH264ColorSpaceSettingsOutput) ColorSpacePassthroughSettings

func (ChannelH264ColorSpaceSettingsOutput) ElementType

func (ChannelH264ColorSpaceSettingsOutput) Rec601Settings

func (ChannelH264ColorSpaceSettingsOutput) Rec709Settings

func (ChannelH264ColorSpaceSettingsOutput) ToChannelH264ColorSpaceSettingsOutput

func (o ChannelH264ColorSpaceSettingsOutput) ToChannelH264ColorSpaceSettingsOutput() ChannelH264ColorSpaceSettingsOutput

func (ChannelH264ColorSpaceSettingsOutput) ToChannelH264ColorSpaceSettingsOutputWithContext

func (o ChannelH264ColorSpaceSettingsOutput) ToChannelH264ColorSpaceSettingsOutputWithContext(ctx context.Context) ChannelH264ColorSpaceSettingsOutput

func (ChannelH264ColorSpaceSettingsOutput) ToChannelH264ColorSpaceSettingsPtrOutput

func (o ChannelH264ColorSpaceSettingsOutput) ToChannelH264ColorSpaceSettingsPtrOutput() ChannelH264ColorSpaceSettingsPtrOutput

func (ChannelH264ColorSpaceSettingsOutput) ToChannelH264ColorSpaceSettingsPtrOutputWithContext

func (o ChannelH264ColorSpaceSettingsOutput) ToChannelH264ColorSpaceSettingsPtrOutputWithContext(ctx context.Context) ChannelH264ColorSpaceSettingsPtrOutput

func (ChannelH264ColorSpaceSettingsOutput) ToOutput added in v0.76.0

type ChannelH264ColorSpaceSettingsPtrInput

type ChannelH264ColorSpaceSettingsPtrInput interface {
	pulumi.Input

	ToChannelH264ColorSpaceSettingsPtrOutput() ChannelH264ColorSpaceSettingsPtrOutput
	ToChannelH264ColorSpaceSettingsPtrOutputWithContext(context.Context) ChannelH264ColorSpaceSettingsPtrOutput
}

ChannelH264ColorSpaceSettingsPtrInput is an input type that accepts ChannelH264ColorSpaceSettingsArgs, ChannelH264ColorSpaceSettingsPtr and ChannelH264ColorSpaceSettingsPtrOutput values. You can construct a concrete instance of `ChannelH264ColorSpaceSettingsPtrInput` via:

        ChannelH264ColorSpaceSettingsArgs{...}

or:

        nil

type ChannelH264ColorSpaceSettingsPtrOutput

type ChannelH264ColorSpaceSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelH264ColorSpaceSettingsPtrOutput) ColorSpacePassthroughSettings

func (ChannelH264ColorSpaceSettingsPtrOutput) Elem

func (ChannelH264ColorSpaceSettingsPtrOutput) ElementType

func (ChannelH264ColorSpaceSettingsPtrOutput) Rec601Settings

func (ChannelH264ColorSpaceSettingsPtrOutput) Rec709Settings

func (ChannelH264ColorSpaceSettingsPtrOutput) ToChannelH264ColorSpaceSettingsPtrOutput

func (o ChannelH264ColorSpaceSettingsPtrOutput) ToChannelH264ColorSpaceSettingsPtrOutput() ChannelH264ColorSpaceSettingsPtrOutput

func (ChannelH264ColorSpaceSettingsPtrOutput) ToChannelH264ColorSpaceSettingsPtrOutputWithContext

func (o ChannelH264ColorSpaceSettingsPtrOutput) ToChannelH264ColorSpaceSettingsPtrOutputWithContext(ctx context.Context) ChannelH264ColorSpaceSettingsPtrOutput

func (ChannelH264ColorSpaceSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelH264FilterSettings

type ChannelH264FilterSettings struct {
	TemporalFilterSettings *ChannelTemporalFilterSettings `pulumi:"temporalFilterSettings"`
}

type ChannelH264FilterSettingsArgs

type ChannelH264FilterSettingsArgs struct {
	TemporalFilterSettings ChannelTemporalFilterSettingsPtrInput `pulumi:"temporalFilterSettings"`
}

func (ChannelH264FilterSettingsArgs) ElementType

func (ChannelH264FilterSettingsArgs) ToChannelH264FilterSettingsOutput

func (i ChannelH264FilterSettingsArgs) ToChannelH264FilterSettingsOutput() ChannelH264FilterSettingsOutput

func (ChannelH264FilterSettingsArgs) ToChannelH264FilterSettingsOutputWithContext

func (i ChannelH264FilterSettingsArgs) ToChannelH264FilterSettingsOutputWithContext(ctx context.Context) ChannelH264FilterSettingsOutput

func (ChannelH264FilterSettingsArgs) ToChannelH264FilterSettingsPtrOutput

func (i ChannelH264FilterSettingsArgs) ToChannelH264FilterSettingsPtrOutput() ChannelH264FilterSettingsPtrOutput

func (ChannelH264FilterSettingsArgs) ToChannelH264FilterSettingsPtrOutputWithContext

func (i ChannelH264FilterSettingsArgs) ToChannelH264FilterSettingsPtrOutputWithContext(ctx context.Context) ChannelH264FilterSettingsPtrOutput

func (ChannelH264FilterSettingsArgs) ToOutput added in v0.76.0

type ChannelH264FilterSettingsInput

type ChannelH264FilterSettingsInput interface {
	pulumi.Input

	ToChannelH264FilterSettingsOutput() ChannelH264FilterSettingsOutput
	ToChannelH264FilterSettingsOutputWithContext(context.Context) ChannelH264FilterSettingsOutput
}

ChannelH264FilterSettingsInput is an input type that accepts ChannelH264FilterSettingsArgs and ChannelH264FilterSettingsOutput values. You can construct a concrete instance of `ChannelH264FilterSettingsInput` via:

ChannelH264FilterSettingsArgs{...}

type ChannelH264FilterSettingsOutput

type ChannelH264FilterSettingsOutput struct{ *pulumi.OutputState }

func (ChannelH264FilterSettingsOutput) ElementType

func (ChannelH264FilterSettingsOutput) TemporalFilterSettings

func (ChannelH264FilterSettingsOutput) ToChannelH264FilterSettingsOutput

func (o ChannelH264FilterSettingsOutput) ToChannelH264FilterSettingsOutput() ChannelH264FilterSettingsOutput

func (ChannelH264FilterSettingsOutput) ToChannelH264FilterSettingsOutputWithContext

func (o ChannelH264FilterSettingsOutput) ToChannelH264FilterSettingsOutputWithContext(ctx context.Context) ChannelH264FilterSettingsOutput

func (ChannelH264FilterSettingsOutput) ToChannelH264FilterSettingsPtrOutput

func (o ChannelH264FilterSettingsOutput) ToChannelH264FilterSettingsPtrOutput() ChannelH264FilterSettingsPtrOutput

func (ChannelH264FilterSettingsOutput) ToChannelH264FilterSettingsPtrOutputWithContext

func (o ChannelH264FilterSettingsOutput) ToChannelH264FilterSettingsPtrOutputWithContext(ctx context.Context) ChannelH264FilterSettingsPtrOutput

func (ChannelH264FilterSettingsOutput) ToOutput added in v0.76.0

type ChannelH264FilterSettingsPtrInput

type ChannelH264FilterSettingsPtrInput interface {
	pulumi.Input

	ToChannelH264FilterSettingsPtrOutput() ChannelH264FilterSettingsPtrOutput
	ToChannelH264FilterSettingsPtrOutputWithContext(context.Context) ChannelH264FilterSettingsPtrOutput
}

ChannelH264FilterSettingsPtrInput is an input type that accepts ChannelH264FilterSettingsArgs, ChannelH264FilterSettingsPtr and ChannelH264FilterSettingsPtrOutput values. You can construct a concrete instance of `ChannelH264FilterSettingsPtrInput` via:

        ChannelH264FilterSettingsArgs{...}

or:

        nil

type ChannelH264FilterSettingsPtrOutput

type ChannelH264FilterSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelH264FilterSettingsPtrOutput) Elem

func (ChannelH264FilterSettingsPtrOutput) ElementType

func (ChannelH264FilterSettingsPtrOutput) TemporalFilterSettings

func (ChannelH264FilterSettingsPtrOutput) ToChannelH264FilterSettingsPtrOutput

func (o ChannelH264FilterSettingsPtrOutput) ToChannelH264FilterSettingsPtrOutput() ChannelH264FilterSettingsPtrOutput

func (ChannelH264FilterSettingsPtrOutput) ToChannelH264FilterSettingsPtrOutputWithContext

func (o ChannelH264FilterSettingsPtrOutput) ToChannelH264FilterSettingsPtrOutputWithContext(ctx context.Context) ChannelH264FilterSettingsPtrOutput

func (ChannelH264FilterSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelH264Settings

type ChannelH264Settings struct {
	AdaptiveQuantization   *string                        `pulumi:"adaptiveQuantization"`
	AfdSignaling           *string                        `pulumi:"afdSignaling"`
	Bitrate                *int                           `pulumi:"bitrate"`
	BufFillPct             *int                           `pulumi:"bufFillPct"`
	BufSize                *int                           `pulumi:"bufSize"`
	ColorMetadata          *string                        `pulumi:"colorMetadata"`
	ColorSpaceSettings     *ChannelH264ColorSpaceSettings `pulumi:"colorSpaceSettings"`
	EntropyEncoding        *string                        `pulumi:"entropyEncoding"`
	FilterSettings         *ChannelH264FilterSettings     `pulumi:"filterSettings"`
	FixedAfd               *string                        `pulumi:"fixedAfd"`
	FlickerAq              *string                        `pulumi:"flickerAq"`
	ForceFieldPictures     *string                        `pulumi:"forceFieldPictures"`
	FramerateControl       *string                        `pulumi:"framerateControl"`
	FramerateDenominator   *int                           `pulumi:"framerateDenominator"`
	FramerateNumerator     *int                           `pulumi:"framerateNumerator"`
	GopBReference          *string                        `pulumi:"gopBReference"`
	GopClosedCadence       *int                           `pulumi:"gopClosedCadence"`
	GopNumBFrames          *int                           `pulumi:"gopNumBFrames"`
	GopSize                *float64                       `pulumi:"gopSize"`
	GopSizeUnits           *string                        `pulumi:"gopSizeUnits"`
	Level                  *string                        `pulumi:"level"`
	LookAheadRateControl   *string                        `pulumi:"lookAheadRateControl"`
	MaxBitrate             *int                           `pulumi:"maxBitrate"`
	MinIInterval           *int                           `pulumi:"minIInterval"`
	NumRefFrames           *int                           `pulumi:"numRefFrames"`
	ParControl             *string                        `pulumi:"parControl"`
	ParDenominator         *int                           `pulumi:"parDenominator"`
	ParNumerator           *int                           `pulumi:"parNumerator"`
	Profile                *string                        `pulumi:"profile"`
	QualityLevel           *string                        `pulumi:"qualityLevel"`
	QvbrQualityLevel       *int                           `pulumi:"qvbrQualityLevel"`
	RateControlMode        *string                        `pulumi:"rateControlMode"`
	ScanType               *string                        `pulumi:"scanType"`
	SceneChangeDetect      *string                        `pulumi:"sceneChangeDetect"`
	Slices                 *int                           `pulumi:"slices"`
	Softness               *int                           `pulumi:"softness"`
	SpatialAq              *string                        `pulumi:"spatialAq"`
	SubgopLength           *string                        `pulumi:"subgopLength"`
	Syntax                 *string                        `pulumi:"syntax"`
	TemporalAq             *string                        `pulumi:"temporalAq"`
	TimecodeBurninSettings *ChannelTimecodeBurninSettings `pulumi:"timecodeBurninSettings"`
	TimecodeInsertion      *string                        `pulumi:"timecodeInsertion"`
}

type ChannelH264SettingsArgs

type ChannelH264SettingsArgs struct {
	AdaptiveQuantization   pulumi.StringPtrInput                 `pulumi:"adaptiveQuantization"`
	AfdSignaling           pulumi.StringPtrInput                 `pulumi:"afdSignaling"`
	Bitrate                pulumi.IntPtrInput                    `pulumi:"bitrate"`
	BufFillPct             pulumi.IntPtrInput                    `pulumi:"bufFillPct"`
	BufSize                pulumi.IntPtrInput                    `pulumi:"bufSize"`
	ColorMetadata          pulumi.StringPtrInput                 `pulumi:"colorMetadata"`
	ColorSpaceSettings     ChannelH264ColorSpaceSettingsPtrInput `pulumi:"colorSpaceSettings"`
	EntropyEncoding        pulumi.StringPtrInput                 `pulumi:"entropyEncoding"`
	FilterSettings         ChannelH264FilterSettingsPtrInput     `pulumi:"filterSettings"`
	FixedAfd               pulumi.StringPtrInput                 `pulumi:"fixedAfd"`
	FlickerAq              pulumi.StringPtrInput                 `pulumi:"flickerAq"`
	ForceFieldPictures     pulumi.StringPtrInput                 `pulumi:"forceFieldPictures"`
	FramerateControl       pulumi.StringPtrInput                 `pulumi:"framerateControl"`
	FramerateDenominator   pulumi.IntPtrInput                    `pulumi:"framerateDenominator"`
	FramerateNumerator     pulumi.IntPtrInput                    `pulumi:"framerateNumerator"`
	GopBReference          pulumi.StringPtrInput                 `pulumi:"gopBReference"`
	GopClosedCadence       pulumi.IntPtrInput                    `pulumi:"gopClosedCadence"`
	GopNumBFrames          pulumi.IntPtrInput                    `pulumi:"gopNumBFrames"`
	GopSize                pulumi.Float64PtrInput                `pulumi:"gopSize"`
	GopSizeUnits           pulumi.StringPtrInput                 `pulumi:"gopSizeUnits"`
	Level                  pulumi.StringPtrInput                 `pulumi:"level"`
	LookAheadRateControl   pulumi.StringPtrInput                 `pulumi:"lookAheadRateControl"`
	MaxBitrate             pulumi.IntPtrInput                    `pulumi:"maxBitrate"`
	MinIInterval           pulumi.IntPtrInput                    `pulumi:"minIInterval"`
	NumRefFrames           pulumi.IntPtrInput                    `pulumi:"numRefFrames"`
	ParControl             pulumi.StringPtrInput                 `pulumi:"parControl"`
	ParDenominator         pulumi.IntPtrInput                    `pulumi:"parDenominator"`
	ParNumerator           pulumi.IntPtrInput                    `pulumi:"parNumerator"`
	Profile                pulumi.StringPtrInput                 `pulumi:"profile"`
	QualityLevel           pulumi.StringPtrInput                 `pulumi:"qualityLevel"`
	QvbrQualityLevel       pulumi.IntPtrInput                    `pulumi:"qvbrQualityLevel"`
	RateControlMode        pulumi.StringPtrInput                 `pulumi:"rateControlMode"`
	ScanType               pulumi.StringPtrInput                 `pulumi:"scanType"`
	SceneChangeDetect      pulumi.StringPtrInput                 `pulumi:"sceneChangeDetect"`
	Slices                 pulumi.IntPtrInput                    `pulumi:"slices"`
	Softness               pulumi.IntPtrInput                    `pulumi:"softness"`
	SpatialAq              pulumi.StringPtrInput                 `pulumi:"spatialAq"`
	SubgopLength           pulumi.StringPtrInput                 `pulumi:"subgopLength"`
	Syntax                 pulumi.StringPtrInput                 `pulumi:"syntax"`
	TemporalAq             pulumi.StringPtrInput                 `pulumi:"temporalAq"`
	TimecodeBurninSettings ChannelTimecodeBurninSettingsPtrInput `pulumi:"timecodeBurninSettings"`
	TimecodeInsertion      pulumi.StringPtrInput                 `pulumi:"timecodeInsertion"`
}

func (ChannelH264SettingsArgs) ElementType

func (ChannelH264SettingsArgs) ElementType() reflect.Type

func (ChannelH264SettingsArgs) ToChannelH264SettingsOutput

func (i ChannelH264SettingsArgs) ToChannelH264SettingsOutput() ChannelH264SettingsOutput

func (ChannelH264SettingsArgs) ToChannelH264SettingsOutputWithContext

func (i ChannelH264SettingsArgs) ToChannelH264SettingsOutputWithContext(ctx context.Context) ChannelH264SettingsOutput

func (ChannelH264SettingsArgs) ToChannelH264SettingsPtrOutput

func (i ChannelH264SettingsArgs) ToChannelH264SettingsPtrOutput() ChannelH264SettingsPtrOutput

func (ChannelH264SettingsArgs) ToChannelH264SettingsPtrOutputWithContext

func (i ChannelH264SettingsArgs) ToChannelH264SettingsPtrOutputWithContext(ctx context.Context) ChannelH264SettingsPtrOutput

func (ChannelH264SettingsArgs) ToOutput added in v0.76.0

type ChannelH264SettingsInput

type ChannelH264SettingsInput interface {
	pulumi.Input

	ToChannelH264SettingsOutput() ChannelH264SettingsOutput
	ToChannelH264SettingsOutputWithContext(context.Context) ChannelH264SettingsOutput
}

ChannelH264SettingsInput is an input type that accepts ChannelH264SettingsArgs and ChannelH264SettingsOutput values. You can construct a concrete instance of `ChannelH264SettingsInput` via:

ChannelH264SettingsArgs{...}

type ChannelH264SettingsOutput

type ChannelH264SettingsOutput struct{ *pulumi.OutputState }

func (ChannelH264SettingsOutput) AdaptiveQuantization

func (o ChannelH264SettingsOutput) AdaptiveQuantization() pulumi.StringPtrOutput

func (ChannelH264SettingsOutput) AfdSignaling

func (ChannelH264SettingsOutput) Bitrate

func (ChannelH264SettingsOutput) BufFillPct

func (ChannelH264SettingsOutput) BufSize

func (ChannelH264SettingsOutput) ColorMetadata

func (ChannelH264SettingsOutput) ColorSpaceSettings

func (ChannelH264SettingsOutput) ElementType

func (ChannelH264SettingsOutput) ElementType() reflect.Type

func (ChannelH264SettingsOutput) EntropyEncoding

func (o ChannelH264SettingsOutput) EntropyEncoding() pulumi.StringPtrOutput

func (ChannelH264SettingsOutput) FilterSettings

func (ChannelH264SettingsOutput) FixedAfd

func (ChannelH264SettingsOutput) FlickerAq

func (ChannelH264SettingsOutput) ForceFieldPictures

func (o ChannelH264SettingsOutput) ForceFieldPictures() pulumi.StringPtrOutput

func (ChannelH264SettingsOutput) FramerateControl

func (o ChannelH264SettingsOutput) FramerateControl() pulumi.StringPtrOutput

func (ChannelH264SettingsOutput) FramerateDenominator

func (o ChannelH264SettingsOutput) FramerateDenominator() pulumi.IntPtrOutput

func (ChannelH264SettingsOutput) FramerateNumerator

func (o ChannelH264SettingsOutput) FramerateNumerator() pulumi.IntPtrOutput

func (ChannelH264SettingsOutput) GopBReference

func (ChannelH264SettingsOutput) GopClosedCadence

func (o ChannelH264SettingsOutput) GopClosedCadence() pulumi.IntPtrOutput

func (ChannelH264SettingsOutput) GopNumBFrames

func (o ChannelH264SettingsOutput) GopNumBFrames() pulumi.IntPtrOutput

func (ChannelH264SettingsOutput) GopSize

func (ChannelH264SettingsOutput) GopSizeUnits

func (ChannelH264SettingsOutput) Level

func (ChannelH264SettingsOutput) LookAheadRateControl

func (o ChannelH264SettingsOutput) LookAheadRateControl() pulumi.StringPtrOutput

func (ChannelH264SettingsOutput) MaxBitrate

func (ChannelH264SettingsOutput) MinIInterval

func (ChannelH264SettingsOutput) NumRefFrames

func (ChannelH264SettingsOutput) ParControl

func (ChannelH264SettingsOutput) ParDenominator

func (o ChannelH264SettingsOutput) ParDenominator() pulumi.IntPtrOutput

func (ChannelH264SettingsOutput) ParNumerator

func (ChannelH264SettingsOutput) Profile

func (ChannelH264SettingsOutput) QualityLevel

func (ChannelH264SettingsOutput) QvbrQualityLevel

func (o ChannelH264SettingsOutput) QvbrQualityLevel() pulumi.IntPtrOutput

func (ChannelH264SettingsOutput) RateControlMode

func (o ChannelH264SettingsOutput) RateControlMode() pulumi.StringPtrOutput

func (ChannelH264SettingsOutput) ScanType

func (ChannelH264SettingsOutput) SceneChangeDetect

func (o ChannelH264SettingsOutput) SceneChangeDetect() pulumi.StringPtrOutput

func (ChannelH264SettingsOutput) Slices

func (ChannelH264SettingsOutput) Softness

func (ChannelH264SettingsOutput) SpatialAq

func (ChannelH264SettingsOutput) SubgopLength

func (ChannelH264SettingsOutput) Syntax

func (ChannelH264SettingsOutput) TemporalAq

func (ChannelH264SettingsOutput) TimecodeBurninSettings added in v0.59.0

func (ChannelH264SettingsOutput) TimecodeInsertion

func (o ChannelH264SettingsOutput) TimecodeInsertion() pulumi.StringPtrOutput

func (ChannelH264SettingsOutput) ToChannelH264SettingsOutput

func (o ChannelH264SettingsOutput) ToChannelH264SettingsOutput() ChannelH264SettingsOutput

func (ChannelH264SettingsOutput) ToChannelH264SettingsOutputWithContext

func (o ChannelH264SettingsOutput) ToChannelH264SettingsOutputWithContext(ctx context.Context) ChannelH264SettingsOutput

func (ChannelH264SettingsOutput) ToChannelH264SettingsPtrOutput

func (o ChannelH264SettingsOutput) ToChannelH264SettingsPtrOutput() ChannelH264SettingsPtrOutput

func (ChannelH264SettingsOutput) ToChannelH264SettingsPtrOutputWithContext

func (o ChannelH264SettingsOutput) ToChannelH264SettingsPtrOutputWithContext(ctx context.Context) ChannelH264SettingsPtrOutput

func (ChannelH264SettingsOutput) ToOutput added in v0.76.0

type ChannelH264SettingsPtrInput

type ChannelH264SettingsPtrInput interface {
	pulumi.Input

	ToChannelH264SettingsPtrOutput() ChannelH264SettingsPtrOutput
	ToChannelH264SettingsPtrOutputWithContext(context.Context) ChannelH264SettingsPtrOutput
}

ChannelH264SettingsPtrInput is an input type that accepts ChannelH264SettingsArgs, ChannelH264SettingsPtr and ChannelH264SettingsPtrOutput values. You can construct a concrete instance of `ChannelH264SettingsPtrInput` via:

        ChannelH264SettingsArgs{...}

or:

        nil

type ChannelH264SettingsPtrOutput

type ChannelH264SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelH264SettingsPtrOutput) AdaptiveQuantization

func (o ChannelH264SettingsPtrOutput) AdaptiveQuantization() pulumi.StringPtrOutput

func (ChannelH264SettingsPtrOutput) AfdSignaling

func (ChannelH264SettingsPtrOutput) Bitrate

func (ChannelH264SettingsPtrOutput) BufFillPct

func (ChannelH264SettingsPtrOutput) BufSize

func (ChannelH264SettingsPtrOutput) ColorMetadata

func (ChannelH264SettingsPtrOutput) ColorSpaceSettings

func (ChannelH264SettingsPtrOutput) Elem

func (ChannelH264SettingsPtrOutput) ElementType

func (ChannelH264SettingsPtrOutput) EntropyEncoding

func (ChannelH264SettingsPtrOutput) FilterSettings

func (ChannelH264SettingsPtrOutput) FixedAfd

func (ChannelH264SettingsPtrOutput) FlickerAq

func (ChannelH264SettingsPtrOutput) ForceFieldPictures

func (o ChannelH264SettingsPtrOutput) ForceFieldPictures() pulumi.StringPtrOutput

func (ChannelH264SettingsPtrOutput) FramerateControl

func (ChannelH264SettingsPtrOutput) FramerateDenominator

func (o ChannelH264SettingsPtrOutput) FramerateDenominator() pulumi.IntPtrOutput

func (ChannelH264SettingsPtrOutput) FramerateNumerator

func (o ChannelH264SettingsPtrOutput) FramerateNumerator() pulumi.IntPtrOutput

func (ChannelH264SettingsPtrOutput) GopBReference

func (ChannelH264SettingsPtrOutput) GopClosedCadence

func (o ChannelH264SettingsPtrOutput) GopClosedCadence() pulumi.IntPtrOutput

func (ChannelH264SettingsPtrOutput) GopNumBFrames

func (ChannelH264SettingsPtrOutput) GopSize

func (ChannelH264SettingsPtrOutput) GopSizeUnits

func (ChannelH264SettingsPtrOutput) Level

func (ChannelH264SettingsPtrOutput) LookAheadRateControl

func (o ChannelH264SettingsPtrOutput) LookAheadRateControl() pulumi.StringPtrOutput

func (ChannelH264SettingsPtrOutput) MaxBitrate

func (ChannelH264SettingsPtrOutput) MinIInterval

func (ChannelH264SettingsPtrOutput) NumRefFrames

func (ChannelH264SettingsPtrOutput) ParControl

func (ChannelH264SettingsPtrOutput) ParDenominator

func (ChannelH264SettingsPtrOutput) ParNumerator

func (ChannelH264SettingsPtrOutput) Profile

func (ChannelH264SettingsPtrOutput) QualityLevel

func (ChannelH264SettingsPtrOutput) QvbrQualityLevel

func (o ChannelH264SettingsPtrOutput) QvbrQualityLevel() pulumi.IntPtrOutput

func (ChannelH264SettingsPtrOutput) RateControlMode

func (ChannelH264SettingsPtrOutput) ScanType

func (ChannelH264SettingsPtrOutput) SceneChangeDetect

func (o ChannelH264SettingsPtrOutput) SceneChangeDetect() pulumi.StringPtrOutput

func (ChannelH264SettingsPtrOutput) Slices

func (ChannelH264SettingsPtrOutput) Softness

func (ChannelH264SettingsPtrOutput) SpatialAq

func (ChannelH264SettingsPtrOutput) SubgopLength

func (ChannelH264SettingsPtrOutput) Syntax

func (ChannelH264SettingsPtrOutput) TemporalAq

func (ChannelH264SettingsPtrOutput) TimecodeBurninSettings added in v0.59.0

func (ChannelH264SettingsPtrOutput) TimecodeInsertion

func (o ChannelH264SettingsPtrOutput) TimecodeInsertion() pulumi.StringPtrOutput

func (ChannelH264SettingsPtrOutput) ToChannelH264SettingsPtrOutput

func (o ChannelH264SettingsPtrOutput) ToChannelH264SettingsPtrOutput() ChannelH264SettingsPtrOutput

func (ChannelH264SettingsPtrOutput) ToChannelH264SettingsPtrOutputWithContext

func (o ChannelH264SettingsPtrOutput) ToChannelH264SettingsPtrOutputWithContext(ctx context.Context) ChannelH264SettingsPtrOutput

func (ChannelH264SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelH265ColorSpaceSettings

type ChannelH265ColorSpaceSettings struct {
	ColorSpacePassthroughSettings *ChannelColorSpacePassthroughSettings `pulumi:"colorSpacePassthroughSettings"`
	DolbyVision81Settings         *ChannelDolbyVision81Settings         `pulumi:"dolbyVision81Settings"`
	Hdr10Settings                 *ChannelHdr10Settings                 `pulumi:"hdr10Settings"`
	Rec601Settings                *ChannelRec601Settings                `pulumi:"rec601Settings"`
	Rec709Settings                *ChannelRec709Settings                `pulumi:"rec709Settings"`
}

type ChannelH265ColorSpaceSettingsArgs

type ChannelH265ColorSpaceSettingsArgs struct {
	ColorSpacePassthroughSettings ChannelColorSpacePassthroughSettingsPtrInput `pulumi:"colorSpacePassthroughSettings"`
	DolbyVision81Settings         ChannelDolbyVision81SettingsPtrInput         `pulumi:"dolbyVision81Settings"`
	Hdr10Settings                 ChannelHdr10SettingsPtrInput                 `pulumi:"hdr10Settings"`
	Rec601Settings                ChannelRec601SettingsPtrInput                `pulumi:"rec601Settings"`
	Rec709Settings                ChannelRec709SettingsPtrInput                `pulumi:"rec709Settings"`
}

func (ChannelH265ColorSpaceSettingsArgs) ElementType

func (ChannelH265ColorSpaceSettingsArgs) ToChannelH265ColorSpaceSettingsOutput

func (i ChannelH265ColorSpaceSettingsArgs) ToChannelH265ColorSpaceSettingsOutput() ChannelH265ColorSpaceSettingsOutput

func (ChannelH265ColorSpaceSettingsArgs) ToChannelH265ColorSpaceSettingsOutputWithContext

func (i ChannelH265ColorSpaceSettingsArgs) ToChannelH265ColorSpaceSettingsOutputWithContext(ctx context.Context) ChannelH265ColorSpaceSettingsOutput

func (ChannelH265ColorSpaceSettingsArgs) ToChannelH265ColorSpaceSettingsPtrOutput

func (i ChannelH265ColorSpaceSettingsArgs) ToChannelH265ColorSpaceSettingsPtrOutput() ChannelH265ColorSpaceSettingsPtrOutput

func (ChannelH265ColorSpaceSettingsArgs) ToChannelH265ColorSpaceSettingsPtrOutputWithContext

func (i ChannelH265ColorSpaceSettingsArgs) ToChannelH265ColorSpaceSettingsPtrOutputWithContext(ctx context.Context) ChannelH265ColorSpaceSettingsPtrOutput

func (ChannelH265ColorSpaceSettingsArgs) ToOutput added in v0.76.0

type ChannelH265ColorSpaceSettingsInput

type ChannelH265ColorSpaceSettingsInput interface {
	pulumi.Input

	ToChannelH265ColorSpaceSettingsOutput() ChannelH265ColorSpaceSettingsOutput
	ToChannelH265ColorSpaceSettingsOutputWithContext(context.Context) ChannelH265ColorSpaceSettingsOutput
}

ChannelH265ColorSpaceSettingsInput is an input type that accepts ChannelH265ColorSpaceSettingsArgs and ChannelH265ColorSpaceSettingsOutput values. You can construct a concrete instance of `ChannelH265ColorSpaceSettingsInput` via:

ChannelH265ColorSpaceSettingsArgs{...}

type ChannelH265ColorSpaceSettingsOutput

type ChannelH265ColorSpaceSettingsOutput struct{ *pulumi.OutputState }

func (ChannelH265ColorSpaceSettingsOutput) ColorSpacePassthroughSettings

func (ChannelH265ColorSpaceSettingsOutput) DolbyVision81Settings added in v0.59.0

func (ChannelH265ColorSpaceSettingsOutput) ElementType

func (ChannelH265ColorSpaceSettingsOutput) Hdr10Settings

func (ChannelH265ColorSpaceSettingsOutput) Rec601Settings

func (ChannelH265ColorSpaceSettingsOutput) Rec709Settings

func (ChannelH265ColorSpaceSettingsOutput) ToChannelH265ColorSpaceSettingsOutput

func (o ChannelH265ColorSpaceSettingsOutput) ToChannelH265ColorSpaceSettingsOutput() ChannelH265ColorSpaceSettingsOutput

func (ChannelH265ColorSpaceSettingsOutput) ToChannelH265ColorSpaceSettingsOutputWithContext

func (o ChannelH265ColorSpaceSettingsOutput) ToChannelH265ColorSpaceSettingsOutputWithContext(ctx context.Context) ChannelH265ColorSpaceSettingsOutput

func (ChannelH265ColorSpaceSettingsOutput) ToChannelH265ColorSpaceSettingsPtrOutput

func (o ChannelH265ColorSpaceSettingsOutput) ToChannelH265ColorSpaceSettingsPtrOutput() ChannelH265ColorSpaceSettingsPtrOutput

func (ChannelH265ColorSpaceSettingsOutput) ToChannelH265ColorSpaceSettingsPtrOutputWithContext

func (o ChannelH265ColorSpaceSettingsOutput) ToChannelH265ColorSpaceSettingsPtrOutputWithContext(ctx context.Context) ChannelH265ColorSpaceSettingsPtrOutput

func (ChannelH265ColorSpaceSettingsOutput) ToOutput added in v0.76.0

type ChannelH265ColorSpaceSettingsPtrInput

type ChannelH265ColorSpaceSettingsPtrInput interface {
	pulumi.Input

	ToChannelH265ColorSpaceSettingsPtrOutput() ChannelH265ColorSpaceSettingsPtrOutput
	ToChannelH265ColorSpaceSettingsPtrOutputWithContext(context.Context) ChannelH265ColorSpaceSettingsPtrOutput
}

ChannelH265ColorSpaceSettingsPtrInput is an input type that accepts ChannelH265ColorSpaceSettingsArgs, ChannelH265ColorSpaceSettingsPtr and ChannelH265ColorSpaceSettingsPtrOutput values. You can construct a concrete instance of `ChannelH265ColorSpaceSettingsPtrInput` via:

        ChannelH265ColorSpaceSettingsArgs{...}

or:

        nil

type ChannelH265ColorSpaceSettingsPtrOutput

type ChannelH265ColorSpaceSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelH265ColorSpaceSettingsPtrOutput) ColorSpacePassthroughSettings

func (ChannelH265ColorSpaceSettingsPtrOutput) DolbyVision81Settings added in v0.59.0

func (ChannelH265ColorSpaceSettingsPtrOutput) Elem

func (ChannelH265ColorSpaceSettingsPtrOutput) ElementType

func (ChannelH265ColorSpaceSettingsPtrOutput) Hdr10Settings

func (ChannelH265ColorSpaceSettingsPtrOutput) Rec601Settings

func (ChannelH265ColorSpaceSettingsPtrOutput) Rec709Settings

func (ChannelH265ColorSpaceSettingsPtrOutput) ToChannelH265ColorSpaceSettingsPtrOutput

func (o ChannelH265ColorSpaceSettingsPtrOutput) ToChannelH265ColorSpaceSettingsPtrOutput() ChannelH265ColorSpaceSettingsPtrOutput

func (ChannelH265ColorSpaceSettingsPtrOutput) ToChannelH265ColorSpaceSettingsPtrOutputWithContext

func (o ChannelH265ColorSpaceSettingsPtrOutput) ToChannelH265ColorSpaceSettingsPtrOutputWithContext(ctx context.Context) ChannelH265ColorSpaceSettingsPtrOutput

func (ChannelH265ColorSpaceSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelH265FilterSettings

type ChannelH265FilterSettings struct {
	TemporalFilterSettings *ChannelTemporalFilterSettings `pulumi:"temporalFilterSettings"`
}

type ChannelH265FilterSettingsArgs

type ChannelH265FilterSettingsArgs struct {
	TemporalFilterSettings ChannelTemporalFilterSettingsPtrInput `pulumi:"temporalFilterSettings"`
}

func (ChannelH265FilterSettingsArgs) ElementType

func (ChannelH265FilterSettingsArgs) ToChannelH265FilterSettingsOutput

func (i ChannelH265FilterSettingsArgs) ToChannelH265FilterSettingsOutput() ChannelH265FilterSettingsOutput

func (ChannelH265FilterSettingsArgs) ToChannelH265FilterSettingsOutputWithContext

func (i ChannelH265FilterSettingsArgs) ToChannelH265FilterSettingsOutputWithContext(ctx context.Context) ChannelH265FilterSettingsOutput

func (ChannelH265FilterSettingsArgs) ToChannelH265FilterSettingsPtrOutput

func (i ChannelH265FilterSettingsArgs) ToChannelH265FilterSettingsPtrOutput() ChannelH265FilterSettingsPtrOutput

func (ChannelH265FilterSettingsArgs) ToChannelH265FilterSettingsPtrOutputWithContext

func (i ChannelH265FilterSettingsArgs) ToChannelH265FilterSettingsPtrOutputWithContext(ctx context.Context) ChannelH265FilterSettingsPtrOutput

func (ChannelH265FilterSettingsArgs) ToOutput added in v0.76.0

type ChannelH265FilterSettingsInput

type ChannelH265FilterSettingsInput interface {
	pulumi.Input

	ToChannelH265FilterSettingsOutput() ChannelH265FilterSettingsOutput
	ToChannelH265FilterSettingsOutputWithContext(context.Context) ChannelH265FilterSettingsOutput
}

ChannelH265FilterSettingsInput is an input type that accepts ChannelH265FilterSettingsArgs and ChannelH265FilterSettingsOutput values. You can construct a concrete instance of `ChannelH265FilterSettingsInput` via:

ChannelH265FilterSettingsArgs{...}

type ChannelH265FilterSettingsOutput

type ChannelH265FilterSettingsOutput struct{ *pulumi.OutputState }

func (ChannelH265FilterSettingsOutput) ElementType

func (ChannelH265FilterSettingsOutput) TemporalFilterSettings

func (ChannelH265FilterSettingsOutput) ToChannelH265FilterSettingsOutput

func (o ChannelH265FilterSettingsOutput) ToChannelH265FilterSettingsOutput() ChannelH265FilterSettingsOutput

func (ChannelH265FilterSettingsOutput) ToChannelH265FilterSettingsOutputWithContext

func (o ChannelH265FilterSettingsOutput) ToChannelH265FilterSettingsOutputWithContext(ctx context.Context) ChannelH265FilterSettingsOutput

func (ChannelH265FilterSettingsOutput) ToChannelH265FilterSettingsPtrOutput

func (o ChannelH265FilterSettingsOutput) ToChannelH265FilterSettingsPtrOutput() ChannelH265FilterSettingsPtrOutput

func (ChannelH265FilterSettingsOutput) ToChannelH265FilterSettingsPtrOutputWithContext

func (o ChannelH265FilterSettingsOutput) ToChannelH265FilterSettingsPtrOutputWithContext(ctx context.Context) ChannelH265FilterSettingsPtrOutput

func (ChannelH265FilterSettingsOutput) ToOutput added in v0.76.0

type ChannelH265FilterSettingsPtrInput

type ChannelH265FilterSettingsPtrInput interface {
	pulumi.Input

	ToChannelH265FilterSettingsPtrOutput() ChannelH265FilterSettingsPtrOutput
	ToChannelH265FilterSettingsPtrOutputWithContext(context.Context) ChannelH265FilterSettingsPtrOutput
}

ChannelH265FilterSettingsPtrInput is an input type that accepts ChannelH265FilterSettingsArgs, ChannelH265FilterSettingsPtr and ChannelH265FilterSettingsPtrOutput values. You can construct a concrete instance of `ChannelH265FilterSettingsPtrInput` via:

        ChannelH265FilterSettingsArgs{...}

or:

        nil

type ChannelH265FilterSettingsPtrOutput

type ChannelH265FilterSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelH265FilterSettingsPtrOutput) Elem

func (ChannelH265FilterSettingsPtrOutput) ElementType

func (ChannelH265FilterSettingsPtrOutput) TemporalFilterSettings

func (ChannelH265FilterSettingsPtrOutput) ToChannelH265FilterSettingsPtrOutput

func (o ChannelH265FilterSettingsPtrOutput) ToChannelH265FilterSettingsPtrOutput() ChannelH265FilterSettingsPtrOutput

func (ChannelH265FilterSettingsPtrOutput) ToChannelH265FilterSettingsPtrOutputWithContext

func (o ChannelH265FilterSettingsPtrOutput) ToChannelH265FilterSettingsPtrOutputWithContext(ctx context.Context) ChannelH265FilterSettingsPtrOutput

func (ChannelH265FilterSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelH265Settings

type ChannelH265Settings struct {
	AdaptiveQuantization        *string                        `pulumi:"adaptiveQuantization"`
	AfdSignaling                *string                        `pulumi:"afdSignaling"`
	AlternativeTransferFunction *string                        `pulumi:"alternativeTransferFunction"`
	Bitrate                     *int                           `pulumi:"bitrate"`
	BufSize                     *int                           `pulumi:"bufSize"`
	ColorMetadata               *string                        `pulumi:"colorMetadata"`
	ColorSpaceSettings          *ChannelH265ColorSpaceSettings `pulumi:"colorSpaceSettings"`
	FilterSettings              *ChannelH265FilterSettings     `pulumi:"filterSettings"`
	FixedAfd                    *string                        `pulumi:"fixedAfd"`
	FlickerAq                   *string                        `pulumi:"flickerAq"`
	FramerateDenominator        *int                           `pulumi:"framerateDenominator"`
	FramerateNumerator          *int                           `pulumi:"framerateNumerator"`
	GopClosedCadence            *int                           `pulumi:"gopClosedCadence"`
	GopSize                     *float64                       `pulumi:"gopSize"`
	GopSizeUnits                *string                        `pulumi:"gopSizeUnits"`
	Level                       *string                        `pulumi:"level"`
	LookAheadRateControl        *string                        `pulumi:"lookAheadRateControl"`
	MaxBitrate                  *int                           `pulumi:"maxBitrate"`
	MinIInterval                *int                           `pulumi:"minIInterval"`
	ParDenominator              *int                           `pulumi:"parDenominator"`
	ParNumerator                *int                           `pulumi:"parNumerator"`
	Profile                     *string                        `pulumi:"profile"`
	QvbrQualityLevel            *int                           `pulumi:"qvbrQualityLevel"`
	RateControlMode             *string                        `pulumi:"rateControlMode"`
	ScanType                    *string                        `pulumi:"scanType"`
	SceneChangeDetect           *string                        `pulumi:"sceneChangeDetect"`
	Slices                      *int                           `pulumi:"slices"`
	Tier                        *string                        `pulumi:"tier"`
	TimecodeBurninSettings      *ChannelTimecodeBurninSettings `pulumi:"timecodeBurninSettings"`
	TimecodeInsertion           *string                        `pulumi:"timecodeInsertion"`
}

type ChannelH265SettingsArgs

type ChannelH265SettingsArgs struct {
	AdaptiveQuantization        pulumi.StringPtrInput                 `pulumi:"adaptiveQuantization"`
	AfdSignaling                pulumi.StringPtrInput                 `pulumi:"afdSignaling"`
	AlternativeTransferFunction pulumi.StringPtrInput                 `pulumi:"alternativeTransferFunction"`
	Bitrate                     pulumi.IntPtrInput                    `pulumi:"bitrate"`
	BufSize                     pulumi.IntPtrInput                    `pulumi:"bufSize"`
	ColorMetadata               pulumi.StringPtrInput                 `pulumi:"colorMetadata"`
	ColorSpaceSettings          ChannelH265ColorSpaceSettingsPtrInput `pulumi:"colorSpaceSettings"`
	FilterSettings              ChannelH265FilterSettingsPtrInput     `pulumi:"filterSettings"`
	FixedAfd                    pulumi.StringPtrInput                 `pulumi:"fixedAfd"`
	FlickerAq                   pulumi.StringPtrInput                 `pulumi:"flickerAq"`
	FramerateDenominator        pulumi.IntPtrInput                    `pulumi:"framerateDenominator"`
	FramerateNumerator          pulumi.IntPtrInput                    `pulumi:"framerateNumerator"`
	GopClosedCadence            pulumi.IntPtrInput                    `pulumi:"gopClosedCadence"`
	GopSize                     pulumi.Float64PtrInput                `pulumi:"gopSize"`
	GopSizeUnits                pulumi.StringPtrInput                 `pulumi:"gopSizeUnits"`
	Level                       pulumi.StringPtrInput                 `pulumi:"level"`
	LookAheadRateControl        pulumi.StringPtrInput                 `pulumi:"lookAheadRateControl"`
	MaxBitrate                  pulumi.IntPtrInput                    `pulumi:"maxBitrate"`
	MinIInterval                pulumi.IntPtrInput                    `pulumi:"minIInterval"`
	ParDenominator              pulumi.IntPtrInput                    `pulumi:"parDenominator"`
	ParNumerator                pulumi.IntPtrInput                    `pulumi:"parNumerator"`
	Profile                     pulumi.StringPtrInput                 `pulumi:"profile"`
	QvbrQualityLevel            pulumi.IntPtrInput                    `pulumi:"qvbrQualityLevel"`
	RateControlMode             pulumi.StringPtrInput                 `pulumi:"rateControlMode"`
	ScanType                    pulumi.StringPtrInput                 `pulumi:"scanType"`
	SceneChangeDetect           pulumi.StringPtrInput                 `pulumi:"sceneChangeDetect"`
	Slices                      pulumi.IntPtrInput                    `pulumi:"slices"`
	Tier                        pulumi.StringPtrInput                 `pulumi:"tier"`
	TimecodeBurninSettings      ChannelTimecodeBurninSettingsPtrInput `pulumi:"timecodeBurninSettings"`
	TimecodeInsertion           pulumi.StringPtrInput                 `pulumi:"timecodeInsertion"`
}

func (ChannelH265SettingsArgs) ElementType

func (ChannelH265SettingsArgs) ElementType() reflect.Type

func (ChannelH265SettingsArgs) ToChannelH265SettingsOutput

func (i ChannelH265SettingsArgs) ToChannelH265SettingsOutput() ChannelH265SettingsOutput

func (ChannelH265SettingsArgs) ToChannelH265SettingsOutputWithContext

func (i ChannelH265SettingsArgs) ToChannelH265SettingsOutputWithContext(ctx context.Context) ChannelH265SettingsOutput

func (ChannelH265SettingsArgs) ToChannelH265SettingsPtrOutput

func (i ChannelH265SettingsArgs) ToChannelH265SettingsPtrOutput() ChannelH265SettingsPtrOutput

func (ChannelH265SettingsArgs) ToChannelH265SettingsPtrOutputWithContext

func (i ChannelH265SettingsArgs) ToChannelH265SettingsPtrOutputWithContext(ctx context.Context) ChannelH265SettingsPtrOutput

func (ChannelH265SettingsArgs) ToOutput added in v0.76.0

type ChannelH265SettingsInput

type ChannelH265SettingsInput interface {
	pulumi.Input

	ToChannelH265SettingsOutput() ChannelH265SettingsOutput
	ToChannelH265SettingsOutputWithContext(context.Context) ChannelH265SettingsOutput
}

ChannelH265SettingsInput is an input type that accepts ChannelH265SettingsArgs and ChannelH265SettingsOutput values. You can construct a concrete instance of `ChannelH265SettingsInput` via:

ChannelH265SettingsArgs{...}

type ChannelH265SettingsOutput

type ChannelH265SettingsOutput struct{ *pulumi.OutputState }

func (ChannelH265SettingsOutput) AdaptiveQuantization

func (o ChannelH265SettingsOutput) AdaptiveQuantization() pulumi.StringPtrOutput

func (ChannelH265SettingsOutput) AfdSignaling

func (ChannelH265SettingsOutput) AlternativeTransferFunction

func (o ChannelH265SettingsOutput) AlternativeTransferFunction() pulumi.StringPtrOutput

func (ChannelH265SettingsOutput) Bitrate

func (ChannelH265SettingsOutput) BufSize

func (ChannelH265SettingsOutput) ColorMetadata

func (ChannelH265SettingsOutput) ColorSpaceSettings

func (ChannelH265SettingsOutput) ElementType

func (ChannelH265SettingsOutput) ElementType() reflect.Type

func (ChannelH265SettingsOutput) FilterSettings

func (ChannelH265SettingsOutput) FixedAfd

func (ChannelH265SettingsOutput) FlickerAq

func (ChannelH265SettingsOutput) FramerateDenominator

func (o ChannelH265SettingsOutput) FramerateDenominator() pulumi.IntPtrOutput

func (ChannelH265SettingsOutput) FramerateNumerator

func (o ChannelH265SettingsOutput) FramerateNumerator() pulumi.IntPtrOutput

func (ChannelH265SettingsOutput) GopClosedCadence

func (o ChannelH265SettingsOutput) GopClosedCadence() pulumi.IntPtrOutput

func (ChannelH265SettingsOutput) GopSize

func (ChannelH265SettingsOutput) GopSizeUnits

func (ChannelH265SettingsOutput) Level

func (ChannelH265SettingsOutput) LookAheadRateControl

func (o ChannelH265SettingsOutput) LookAheadRateControl() pulumi.StringPtrOutput

func (ChannelH265SettingsOutput) MaxBitrate

func (ChannelH265SettingsOutput) MinIInterval

func (ChannelH265SettingsOutput) ParDenominator

func (o ChannelH265SettingsOutput) ParDenominator() pulumi.IntPtrOutput

func (ChannelH265SettingsOutput) ParNumerator

func (ChannelH265SettingsOutput) Profile

func (ChannelH265SettingsOutput) QvbrQualityLevel

func (o ChannelH265SettingsOutput) QvbrQualityLevel() pulumi.IntPtrOutput

func (ChannelH265SettingsOutput) RateControlMode

func (o ChannelH265SettingsOutput) RateControlMode() pulumi.StringPtrOutput

func (ChannelH265SettingsOutput) ScanType

func (ChannelH265SettingsOutput) SceneChangeDetect

func (o ChannelH265SettingsOutput) SceneChangeDetect() pulumi.StringPtrOutput

func (ChannelH265SettingsOutput) Slices

func (ChannelH265SettingsOutput) Tier

func (ChannelH265SettingsOutput) TimecodeBurninSettings added in v0.59.0

func (ChannelH265SettingsOutput) TimecodeInsertion

func (o ChannelH265SettingsOutput) TimecodeInsertion() pulumi.StringPtrOutput

func (ChannelH265SettingsOutput) ToChannelH265SettingsOutput

func (o ChannelH265SettingsOutput) ToChannelH265SettingsOutput() ChannelH265SettingsOutput

func (ChannelH265SettingsOutput) ToChannelH265SettingsOutputWithContext

func (o ChannelH265SettingsOutput) ToChannelH265SettingsOutputWithContext(ctx context.Context) ChannelH265SettingsOutput

func (ChannelH265SettingsOutput) ToChannelH265SettingsPtrOutput

func (o ChannelH265SettingsOutput) ToChannelH265SettingsPtrOutput() ChannelH265SettingsPtrOutput

func (ChannelH265SettingsOutput) ToChannelH265SettingsPtrOutputWithContext

func (o ChannelH265SettingsOutput) ToChannelH265SettingsPtrOutputWithContext(ctx context.Context) ChannelH265SettingsPtrOutput

func (ChannelH265SettingsOutput) ToOutput added in v0.76.0

type ChannelH265SettingsPtrInput

type ChannelH265SettingsPtrInput interface {
	pulumi.Input

	ToChannelH265SettingsPtrOutput() ChannelH265SettingsPtrOutput
	ToChannelH265SettingsPtrOutputWithContext(context.Context) ChannelH265SettingsPtrOutput
}

ChannelH265SettingsPtrInput is an input type that accepts ChannelH265SettingsArgs, ChannelH265SettingsPtr and ChannelH265SettingsPtrOutput values. You can construct a concrete instance of `ChannelH265SettingsPtrInput` via:

        ChannelH265SettingsArgs{...}

or:

        nil

type ChannelH265SettingsPtrOutput

type ChannelH265SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelH265SettingsPtrOutput) AdaptiveQuantization

func (o ChannelH265SettingsPtrOutput) AdaptiveQuantization() pulumi.StringPtrOutput

func (ChannelH265SettingsPtrOutput) AfdSignaling

func (ChannelH265SettingsPtrOutput) AlternativeTransferFunction

func (o ChannelH265SettingsPtrOutput) AlternativeTransferFunction() pulumi.StringPtrOutput

func (ChannelH265SettingsPtrOutput) Bitrate

func (ChannelH265SettingsPtrOutput) BufSize

func (ChannelH265SettingsPtrOutput) ColorMetadata

func (ChannelH265SettingsPtrOutput) ColorSpaceSettings

func (ChannelH265SettingsPtrOutput) Elem

func (ChannelH265SettingsPtrOutput) ElementType

func (ChannelH265SettingsPtrOutput) FilterSettings

func (ChannelH265SettingsPtrOutput) FixedAfd

func (ChannelH265SettingsPtrOutput) FlickerAq

func (ChannelH265SettingsPtrOutput) FramerateDenominator

func (o ChannelH265SettingsPtrOutput) FramerateDenominator() pulumi.IntPtrOutput

func (ChannelH265SettingsPtrOutput) FramerateNumerator

func (o ChannelH265SettingsPtrOutput) FramerateNumerator() pulumi.IntPtrOutput

func (ChannelH265SettingsPtrOutput) GopClosedCadence

func (o ChannelH265SettingsPtrOutput) GopClosedCadence() pulumi.IntPtrOutput

func (ChannelH265SettingsPtrOutput) GopSize

func (ChannelH265SettingsPtrOutput) GopSizeUnits

func (ChannelH265SettingsPtrOutput) Level

func (ChannelH265SettingsPtrOutput) LookAheadRateControl

func (o ChannelH265SettingsPtrOutput) LookAheadRateControl() pulumi.StringPtrOutput

func (ChannelH265SettingsPtrOutput) MaxBitrate

func (ChannelH265SettingsPtrOutput) MinIInterval

func (ChannelH265SettingsPtrOutput) ParDenominator

func (ChannelH265SettingsPtrOutput) ParNumerator

func (ChannelH265SettingsPtrOutput) Profile

func (ChannelH265SettingsPtrOutput) QvbrQualityLevel

func (o ChannelH265SettingsPtrOutput) QvbrQualityLevel() pulumi.IntPtrOutput

func (ChannelH265SettingsPtrOutput) RateControlMode

func (ChannelH265SettingsPtrOutput) ScanType

func (ChannelH265SettingsPtrOutput) SceneChangeDetect

func (o ChannelH265SettingsPtrOutput) SceneChangeDetect() pulumi.StringPtrOutput

func (ChannelH265SettingsPtrOutput) Slices

func (ChannelH265SettingsPtrOutput) Tier

func (ChannelH265SettingsPtrOutput) TimecodeBurninSettings added in v0.59.0

func (ChannelH265SettingsPtrOutput) TimecodeInsertion

func (o ChannelH265SettingsPtrOutput) TimecodeInsertion() pulumi.StringPtrOutput

func (ChannelH265SettingsPtrOutput) ToChannelH265SettingsPtrOutput

func (o ChannelH265SettingsPtrOutput) ToChannelH265SettingsPtrOutput() ChannelH265SettingsPtrOutput

func (ChannelH265SettingsPtrOutput) ToChannelH265SettingsPtrOutputWithContext

func (o ChannelH265SettingsPtrOutput) ToChannelH265SettingsPtrOutputWithContext(ctx context.Context) ChannelH265SettingsPtrOutput

func (ChannelH265SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelHdr10Settings

type ChannelHdr10Settings struct {
	MaxCll  *int `pulumi:"maxCll"`
	MaxFall *int `pulumi:"maxFall"`
}

type ChannelHdr10SettingsArgs

type ChannelHdr10SettingsArgs struct {
	MaxCll  pulumi.IntPtrInput `pulumi:"maxCll"`
	MaxFall pulumi.IntPtrInput `pulumi:"maxFall"`
}

func (ChannelHdr10SettingsArgs) ElementType

func (ChannelHdr10SettingsArgs) ElementType() reflect.Type

func (ChannelHdr10SettingsArgs) ToChannelHdr10SettingsOutput

func (i ChannelHdr10SettingsArgs) ToChannelHdr10SettingsOutput() ChannelHdr10SettingsOutput

func (ChannelHdr10SettingsArgs) ToChannelHdr10SettingsOutputWithContext

func (i ChannelHdr10SettingsArgs) ToChannelHdr10SettingsOutputWithContext(ctx context.Context) ChannelHdr10SettingsOutput

func (ChannelHdr10SettingsArgs) ToChannelHdr10SettingsPtrOutput

func (i ChannelHdr10SettingsArgs) ToChannelHdr10SettingsPtrOutput() ChannelHdr10SettingsPtrOutput

func (ChannelHdr10SettingsArgs) ToChannelHdr10SettingsPtrOutputWithContext

func (i ChannelHdr10SettingsArgs) ToChannelHdr10SettingsPtrOutputWithContext(ctx context.Context) ChannelHdr10SettingsPtrOutput

func (ChannelHdr10SettingsArgs) ToOutput added in v0.76.0

type ChannelHdr10SettingsInput

type ChannelHdr10SettingsInput interface {
	pulumi.Input

	ToChannelHdr10SettingsOutput() ChannelHdr10SettingsOutput
	ToChannelHdr10SettingsOutputWithContext(context.Context) ChannelHdr10SettingsOutput
}

ChannelHdr10SettingsInput is an input type that accepts ChannelHdr10SettingsArgs and ChannelHdr10SettingsOutput values. You can construct a concrete instance of `ChannelHdr10SettingsInput` via:

ChannelHdr10SettingsArgs{...}

type ChannelHdr10SettingsOutput

type ChannelHdr10SettingsOutput struct{ *pulumi.OutputState }

func (ChannelHdr10SettingsOutput) ElementType

func (ChannelHdr10SettingsOutput) ElementType() reflect.Type

func (ChannelHdr10SettingsOutput) MaxCll

func (ChannelHdr10SettingsOutput) MaxFall

func (ChannelHdr10SettingsOutput) ToChannelHdr10SettingsOutput

func (o ChannelHdr10SettingsOutput) ToChannelHdr10SettingsOutput() ChannelHdr10SettingsOutput

func (ChannelHdr10SettingsOutput) ToChannelHdr10SettingsOutputWithContext

func (o ChannelHdr10SettingsOutput) ToChannelHdr10SettingsOutputWithContext(ctx context.Context) ChannelHdr10SettingsOutput

func (ChannelHdr10SettingsOutput) ToChannelHdr10SettingsPtrOutput

func (o ChannelHdr10SettingsOutput) ToChannelHdr10SettingsPtrOutput() ChannelHdr10SettingsPtrOutput

func (ChannelHdr10SettingsOutput) ToChannelHdr10SettingsPtrOutputWithContext

func (o ChannelHdr10SettingsOutput) ToChannelHdr10SettingsPtrOutputWithContext(ctx context.Context) ChannelHdr10SettingsPtrOutput

func (ChannelHdr10SettingsOutput) ToOutput added in v0.76.0

type ChannelHdr10SettingsPtrInput

type ChannelHdr10SettingsPtrInput interface {
	pulumi.Input

	ToChannelHdr10SettingsPtrOutput() ChannelHdr10SettingsPtrOutput
	ToChannelHdr10SettingsPtrOutputWithContext(context.Context) ChannelHdr10SettingsPtrOutput
}

ChannelHdr10SettingsPtrInput is an input type that accepts ChannelHdr10SettingsArgs, ChannelHdr10SettingsPtr and ChannelHdr10SettingsPtrOutput values. You can construct a concrete instance of `ChannelHdr10SettingsPtrInput` via:

        ChannelHdr10SettingsArgs{...}

or:

        nil

type ChannelHdr10SettingsPtrOutput

type ChannelHdr10SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelHdr10SettingsPtrOutput) Elem

func (ChannelHdr10SettingsPtrOutput) ElementType

func (ChannelHdr10SettingsPtrOutput) MaxCll

func (ChannelHdr10SettingsPtrOutput) MaxFall

func (ChannelHdr10SettingsPtrOutput) ToChannelHdr10SettingsPtrOutput

func (o ChannelHdr10SettingsPtrOutput) ToChannelHdr10SettingsPtrOutput() ChannelHdr10SettingsPtrOutput

func (ChannelHdr10SettingsPtrOutput) ToChannelHdr10SettingsPtrOutputWithContext

func (o ChannelHdr10SettingsPtrOutput) ToChannelHdr10SettingsPtrOutputWithContext(ctx context.Context) ChannelHdr10SettingsPtrOutput

func (ChannelHdr10SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelHlsAkamaiSettings

type ChannelHlsAkamaiSettings struct {
	ConnectionRetryInterval *int    `pulumi:"connectionRetryInterval"`
	FilecacheDuration       *int    `pulumi:"filecacheDuration"`
	HttpTransferMode        *string `pulumi:"httpTransferMode"`
	NumRetries              *int    `pulumi:"numRetries"`
	RestartDelay            *int    `pulumi:"restartDelay"`
	Salt                    *string `pulumi:"salt"`
	Token                   *string `pulumi:"token"`
}

type ChannelHlsAkamaiSettingsArgs

type ChannelHlsAkamaiSettingsArgs struct {
	ConnectionRetryInterval pulumi.IntPtrInput    `pulumi:"connectionRetryInterval"`
	FilecacheDuration       pulumi.IntPtrInput    `pulumi:"filecacheDuration"`
	HttpTransferMode        pulumi.StringPtrInput `pulumi:"httpTransferMode"`
	NumRetries              pulumi.IntPtrInput    `pulumi:"numRetries"`
	RestartDelay            pulumi.IntPtrInput    `pulumi:"restartDelay"`
	Salt                    pulumi.StringPtrInput `pulumi:"salt"`
	Token                   pulumi.StringPtrInput `pulumi:"token"`
}

func (ChannelHlsAkamaiSettingsArgs) ElementType

func (ChannelHlsAkamaiSettingsArgs) ToChannelHlsAkamaiSettingsOutput

func (i ChannelHlsAkamaiSettingsArgs) ToChannelHlsAkamaiSettingsOutput() ChannelHlsAkamaiSettingsOutput

func (ChannelHlsAkamaiSettingsArgs) ToChannelHlsAkamaiSettingsOutputWithContext

func (i ChannelHlsAkamaiSettingsArgs) ToChannelHlsAkamaiSettingsOutputWithContext(ctx context.Context) ChannelHlsAkamaiSettingsOutput

func (ChannelHlsAkamaiSettingsArgs) ToChannelHlsAkamaiSettingsPtrOutput

func (i ChannelHlsAkamaiSettingsArgs) ToChannelHlsAkamaiSettingsPtrOutput() ChannelHlsAkamaiSettingsPtrOutput

func (ChannelHlsAkamaiSettingsArgs) ToChannelHlsAkamaiSettingsPtrOutputWithContext

func (i ChannelHlsAkamaiSettingsArgs) ToChannelHlsAkamaiSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsAkamaiSettingsPtrOutput

func (ChannelHlsAkamaiSettingsArgs) ToOutput added in v0.76.0

type ChannelHlsAkamaiSettingsInput

type ChannelHlsAkamaiSettingsInput interface {
	pulumi.Input

	ToChannelHlsAkamaiSettingsOutput() ChannelHlsAkamaiSettingsOutput
	ToChannelHlsAkamaiSettingsOutputWithContext(context.Context) ChannelHlsAkamaiSettingsOutput
}

ChannelHlsAkamaiSettingsInput is an input type that accepts ChannelHlsAkamaiSettingsArgs and ChannelHlsAkamaiSettingsOutput values. You can construct a concrete instance of `ChannelHlsAkamaiSettingsInput` via:

ChannelHlsAkamaiSettingsArgs{...}

type ChannelHlsAkamaiSettingsOutput

type ChannelHlsAkamaiSettingsOutput struct{ *pulumi.OutputState }

func (ChannelHlsAkamaiSettingsOutput) ConnectionRetryInterval

func (o ChannelHlsAkamaiSettingsOutput) ConnectionRetryInterval() pulumi.IntPtrOutput

func (ChannelHlsAkamaiSettingsOutput) ElementType

func (ChannelHlsAkamaiSettingsOutput) FilecacheDuration

func (o ChannelHlsAkamaiSettingsOutput) FilecacheDuration() pulumi.IntPtrOutput

func (ChannelHlsAkamaiSettingsOutput) HttpTransferMode

func (ChannelHlsAkamaiSettingsOutput) NumRetries

func (ChannelHlsAkamaiSettingsOutput) RestartDelay

func (ChannelHlsAkamaiSettingsOutput) Salt

func (ChannelHlsAkamaiSettingsOutput) ToChannelHlsAkamaiSettingsOutput

func (o ChannelHlsAkamaiSettingsOutput) ToChannelHlsAkamaiSettingsOutput() ChannelHlsAkamaiSettingsOutput

func (ChannelHlsAkamaiSettingsOutput) ToChannelHlsAkamaiSettingsOutputWithContext

func (o ChannelHlsAkamaiSettingsOutput) ToChannelHlsAkamaiSettingsOutputWithContext(ctx context.Context) ChannelHlsAkamaiSettingsOutput

func (ChannelHlsAkamaiSettingsOutput) ToChannelHlsAkamaiSettingsPtrOutput

func (o ChannelHlsAkamaiSettingsOutput) ToChannelHlsAkamaiSettingsPtrOutput() ChannelHlsAkamaiSettingsPtrOutput

func (ChannelHlsAkamaiSettingsOutput) ToChannelHlsAkamaiSettingsPtrOutputWithContext

func (o ChannelHlsAkamaiSettingsOutput) ToChannelHlsAkamaiSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsAkamaiSettingsPtrOutput

func (ChannelHlsAkamaiSettingsOutput) ToOutput added in v0.76.0

func (ChannelHlsAkamaiSettingsOutput) Token

type ChannelHlsAkamaiSettingsPtrInput

type ChannelHlsAkamaiSettingsPtrInput interface {
	pulumi.Input

	ToChannelHlsAkamaiSettingsPtrOutput() ChannelHlsAkamaiSettingsPtrOutput
	ToChannelHlsAkamaiSettingsPtrOutputWithContext(context.Context) ChannelHlsAkamaiSettingsPtrOutput
}

ChannelHlsAkamaiSettingsPtrInput is an input type that accepts ChannelHlsAkamaiSettingsArgs, ChannelHlsAkamaiSettingsPtr and ChannelHlsAkamaiSettingsPtrOutput values. You can construct a concrete instance of `ChannelHlsAkamaiSettingsPtrInput` via:

        ChannelHlsAkamaiSettingsArgs{...}

or:

        nil

type ChannelHlsAkamaiSettingsPtrOutput

type ChannelHlsAkamaiSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelHlsAkamaiSettingsPtrOutput) ConnectionRetryInterval

func (o ChannelHlsAkamaiSettingsPtrOutput) ConnectionRetryInterval() pulumi.IntPtrOutput

func (ChannelHlsAkamaiSettingsPtrOutput) Elem

func (ChannelHlsAkamaiSettingsPtrOutput) ElementType

func (ChannelHlsAkamaiSettingsPtrOutput) FilecacheDuration

func (ChannelHlsAkamaiSettingsPtrOutput) HttpTransferMode

func (ChannelHlsAkamaiSettingsPtrOutput) NumRetries

func (ChannelHlsAkamaiSettingsPtrOutput) RestartDelay

func (ChannelHlsAkamaiSettingsPtrOutput) Salt

func (ChannelHlsAkamaiSettingsPtrOutput) ToChannelHlsAkamaiSettingsPtrOutput

func (o ChannelHlsAkamaiSettingsPtrOutput) ToChannelHlsAkamaiSettingsPtrOutput() ChannelHlsAkamaiSettingsPtrOutput

func (ChannelHlsAkamaiSettingsPtrOutput) ToChannelHlsAkamaiSettingsPtrOutputWithContext

func (o ChannelHlsAkamaiSettingsPtrOutput) ToChannelHlsAkamaiSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsAkamaiSettingsPtrOutput

func (ChannelHlsAkamaiSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelHlsAkamaiSettingsPtrOutput) Token

type ChannelHlsBasicPutSettings

type ChannelHlsBasicPutSettings struct {
	ConnectionRetryInterval *int `pulumi:"connectionRetryInterval"`
	FilecacheDuration       *int `pulumi:"filecacheDuration"`
	NumRetries              *int `pulumi:"numRetries"`
	RestartDelay            *int `pulumi:"restartDelay"`
}

type ChannelHlsBasicPutSettingsArgs

type ChannelHlsBasicPutSettingsArgs struct {
	ConnectionRetryInterval pulumi.IntPtrInput `pulumi:"connectionRetryInterval"`
	FilecacheDuration       pulumi.IntPtrInput `pulumi:"filecacheDuration"`
	NumRetries              pulumi.IntPtrInput `pulumi:"numRetries"`
	RestartDelay            pulumi.IntPtrInput `pulumi:"restartDelay"`
}

func (ChannelHlsBasicPutSettingsArgs) ElementType

func (ChannelHlsBasicPutSettingsArgs) ToChannelHlsBasicPutSettingsOutput

func (i ChannelHlsBasicPutSettingsArgs) ToChannelHlsBasicPutSettingsOutput() ChannelHlsBasicPutSettingsOutput

func (ChannelHlsBasicPutSettingsArgs) ToChannelHlsBasicPutSettingsOutputWithContext

func (i ChannelHlsBasicPutSettingsArgs) ToChannelHlsBasicPutSettingsOutputWithContext(ctx context.Context) ChannelHlsBasicPutSettingsOutput

func (ChannelHlsBasicPutSettingsArgs) ToChannelHlsBasicPutSettingsPtrOutput

func (i ChannelHlsBasicPutSettingsArgs) ToChannelHlsBasicPutSettingsPtrOutput() ChannelHlsBasicPutSettingsPtrOutput

func (ChannelHlsBasicPutSettingsArgs) ToChannelHlsBasicPutSettingsPtrOutputWithContext

func (i ChannelHlsBasicPutSettingsArgs) ToChannelHlsBasicPutSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsBasicPutSettingsPtrOutput

func (ChannelHlsBasicPutSettingsArgs) ToOutput added in v0.76.0

type ChannelHlsBasicPutSettingsInput

type ChannelHlsBasicPutSettingsInput interface {
	pulumi.Input

	ToChannelHlsBasicPutSettingsOutput() ChannelHlsBasicPutSettingsOutput
	ToChannelHlsBasicPutSettingsOutputWithContext(context.Context) ChannelHlsBasicPutSettingsOutput
}

ChannelHlsBasicPutSettingsInput is an input type that accepts ChannelHlsBasicPutSettingsArgs and ChannelHlsBasicPutSettingsOutput values. You can construct a concrete instance of `ChannelHlsBasicPutSettingsInput` via:

ChannelHlsBasicPutSettingsArgs{...}

type ChannelHlsBasicPutSettingsOutput

type ChannelHlsBasicPutSettingsOutput struct{ *pulumi.OutputState }

func (ChannelHlsBasicPutSettingsOutput) ConnectionRetryInterval

func (o ChannelHlsBasicPutSettingsOutput) ConnectionRetryInterval() pulumi.IntPtrOutput

func (ChannelHlsBasicPutSettingsOutput) ElementType

func (ChannelHlsBasicPutSettingsOutput) FilecacheDuration

func (ChannelHlsBasicPutSettingsOutput) NumRetries

func (ChannelHlsBasicPutSettingsOutput) RestartDelay

func (ChannelHlsBasicPutSettingsOutput) ToChannelHlsBasicPutSettingsOutput

func (o ChannelHlsBasicPutSettingsOutput) ToChannelHlsBasicPutSettingsOutput() ChannelHlsBasicPutSettingsOutput

func (ChannelHlsBasicPutSettingsOutput) ToChannelHlsBasicPutSettingsOutputWithContext

func (o ChannelHlsBasicPutSettingsOutput) ToChannelHlsBasicPutSettingsOutputWithContext(ctx context.Context) ChannelHlsBasicPutSettingsOutput

func (ChannelHlsBasicPutSettingsOutput) ToChannelHlsBasicPutSettingsPtrOutput

func (o ChannelHlsBasicPutSettingsOutput) ToChannelHlsBasicPutSettingsPtrOutput() ChannelHlsBasicPutSettingsPtrOutput

func (ChannelHlsBasicPutSettingsOutput) ToChannelHlsBasicPutSettingsPtrOutputWithContext

func (o ChannelHlsBasicPutSettingsOutput) ToChannelHlsBasicPutSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsBasicPutSettingsPtrOutput

func (ChannelHlsBasicPutSettingsOutput) ToOutput added in v0.76.0

type ChannelHlsBasicPutSettingsPtrInput

type ChannelHlsBasicPutSettingsPtrInput interface {
	pulumi.Input

	ToChannelHlsBasicPutSettingsPtrOutput() ChannelHlsBasicPutSettingsPtrOutput
	ToChannelHlsBasicPutSettingsPtrOutputWithContext(context.Context) ChannelHlsBasicPutSettingsPtrOutput
}

ChannelHlsBasicPutSettingsPtrInput is an input type that accepts ChannelHlsBasicPutSettingsArgs, ChannelHlsBasicPutSettingsPtr and ChannelHlsBasicPutSettingsPtrOutput values. You can construct a concrete instance of `ChannelHlsBasicPutSettingsPtrInput` via:

        ChannelHlsBasicPutSettingsArgs{...}

or:

        nil

type ChannelHlsBasicPutSettingsPtrOutput

type ChannelHlsBasicPutSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelHlsBasicPutSettingsPtrOutput) ConnectionRetryInterval

func (o ChannelHlsBasicPutSettingsPtrOutput) ConnectionRetryInterval() pulumi.IntPtrOutput

func (ChannelHlsBasicPutSettingsPtrOutput) Elem

func (ChannelHlsBasicPutSettingsPtrOutput) ElementType

func (ChannelHlsBasicPutSettingsPtrOutput) FilecacheDuration

func (ChannelHlsBasicPutSettingsPtrOutput) NumRetries

func (ChannelHlsBasicPutSettingsPtrOutput) RestartDelay

func (ChannelHlsBasicPutSettingsPtrOutput) ToChannelHlsBasicPutSettingsPtrOutput

func (o ChannelHlsBasicPutSettingsPtrOutput) ToChannelHlsBasicPutSettingsPtrOutput() ChannelHlsBasicPutSettingsPtrOutput

func (ChannelHlsBasicPutSettingsPtrOutput) ToChannelHlsBasicPutSettingsPtrOutputWithContext

func (o ChannelHlsBasicPutSettingsPtrOutput) ToChannelHlsBasicPutSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsBasicPutSettingsPtrOutput

func (ChannelHlsBasicPutSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelHlsCdnSettings

type ChannelHlsCdnSettings struct {
	HlsAkamaiSettings     *ChannelHlsAkamaiSettings     `pulumi:"hlsAkamaiSettings"`
	HlsBasicPutSettings   *ChannelHlsBasicPutSettings   `pulumi:"hlsBasicPutSettings"`
	HlsMediaStoreSettings *ChannelHlsMediaStoreSettings `pulumi:"hlsMediaStoreSettings"`
	HlsS3Settings         *ChannelHlsS3Settings         `pulumi:"hlsS3Settings"`
	HlsWebdavSettings     *ChannelHlsWebdavSettings     `pulumi:"hlsWebdavSettings"`
}

type ChannelHlsCdnSettingsArgs

type ChannelHlsCdnSettingsArgs struct {
	HlsAkamaiSettings     ChannelHlsAkamaiSettingsPtrInput     `pulumi:"hlsAkamaiSettings"`
	HlsBasicPutSettings   ChannelHlsBasicPutSettingsPtrInput   `pulumi:"hlsBasicPutSettings"`
	HlsMediaStoreSettings ChannelHlsMediaStoreSettingsPtrInput `pulumi:"hlsMediaStoreSettings"`
	HlsS3Settings         ChannelHlsS3SettingsPtrInput         `pulumi:"hlsS3Settings"`
	HlsWebdavSettings     ChannelHlsWebdavSettingsPtrInput     `pulumi:"hlsWebdavSettings"`
}

func (ChannelHlsCdnSettingsArgs) ElementType

func (ChannelHlsCdnSettingsArgs) ElementType() reflect.Type

func (ChannelHlsCdnSettingsArgs) ToChannelHlsCdnSettingsOutput

func (i ChannelHlsCdnSettingsArgs) ToChannelHlsCdnSettingsOutput() ChannelHlsCdnSettingsOutput

func (ChannelHlsCdnSettingsArgs) ToChannelHlsCdnSettingsOutputWithContext

func (i ChannelHlsCdnSettingsArgs) ToChannelHlsCdnSettingsOutputWithContext(ctx context.Context) ChannelHlsCdnSettingsOutput

func (ChannelHlsCdnSettingsArgs) ToChannelHlsCdnSettingsPtrOutput

func (i ChannelHlsCdnSettingsArgs) ToChannelHlsCdnSettingsPtrOutput() ChannelHlsCdnSettingsPtrOutput

func (ChannelHlsCdnSettingsArgs) ToChannelHlsCdnSettingsPtrOutputWithContext

func (i ChannelHlsCdnSettingsArgs) ToChannelHlsCdnSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsCdnSettingsPtrOutput

func (ChannelHlsCdnSettingsArgs) ToOutput added in v0.76.0

type ChannelHlsCdnSettingsInput

type ChannelHlsCdnSettingsInput interface {
	pulumi.Input

	ToChannelHlsCdnSettingsOutput() ChannelHlsCdnSettingsOutput
	ToChannelHlsCdnSettingsOutputWithContext(context.Context) ChannelHlsCdnSettingsOutput
}

ChannelHlsCdnSettingsInput is an input type that accepts ChannelHlsCdnSettingsArgs and ChannelHlsCdnSettingsOutput values. You can construct a concrete instance of `ChannelHlsCdnSettingsInput` via:

ChannelHlsCdnSettingsArgs{...}

type ChannelHlsCdnSettingsOutput

type ChannelHlsCdnSettingsOutput struct{ *pulumi.OutputState }

func (ChannelHlsCdnSettingsOutput) ElementType

func (ChannelHlsCdnSettingsOutput) HlsAkamaiSettings

func (ChannelHlsCdnSettingsOutput) HlsBasicPutSettings

func (ChannelHlsCdnSettingsOutput) HlsMediaStoreSettings

func (ChannelHlsCdnSettingsOutput) HlsS3Settings

func (ChannelHlsCdnSettingsOutput) HlsWebdavSettings

func (ChannelHlsCdnSettingsOutput) ToChannelHlsCdnSettingsOutput

func (o ChannelHlsCdnSettingsOutput) ToChannelHlsCdnSettingsOutput() ChannelHlsCdnSettingsOutput

func (ChannelHlsCdnSettingsOutput) ToChannelHlsCdnSettingsOutputWithContext

func (o ChannelHlsCdnSettingsOutput) ToChannelHlsCdnSettingsOutputWithContext(ctx context.Context) ChannelHlsCdnSettingsOutput

func (ChannelHlsCdnSettingsOutput) ToChannelHlsCdnSettingsPtrOutput

func (o ChannelHlsCdnSettingsOutput) ToChannelHlsCdnSettingsPtrOutput() ChannelHlsCdnSettingsPtrOutput

func (ChannelHlsCdnSettingsOutput) ToChannelHlsCdnSettingsPtrOutputWithContext

func (o ChannelHlsCdnSettingsOutput) ToChannelHlsCdnSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsCdnSettingsPtrOutput

func (ChannelHlsCdnSettingsOutput) ToOutput added in v0.76.0

type ChannelHlsCdnSettingsPtrInput

type ChannelHlsCdnSettingsPtrInput interface {
	pulumi.Input

	ToChannelHlsCdnSettingsPtrOutput() ChannelHlsCdnSettingsPtrOutput
	ToChannelHlsCdnSettingsPtrOutputWithContext(context.Context) ChannelHlsCdnSettingsPtrOutput
}

ChannelHlsCdnSettingsPtrInput is an input type that accepts ChannelHlsCdnSettingsArgs, ChannelHlsCdnSettingsPtr and ChannelHlsCdnSettingsPtrOutput values. You can construct a concrete instance of `ChannelHlsCdnSettingsPtrInput` via:

        ChannelHlsCdnSettingsArgs{...}

or:

        nil

type ChannelHlsCdnSettingsPtrOutput

type ChannelHlsCdnSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelHlsCdnSettingsPtrOutput) Elem

func (ChannelHlsCdnSettingsPtrOutput) ElementType

func (ChannelHlsCdnSettingsPtrOutput) HlsAkamaiSettings

func (ChannelHlsCdnSettingsPtrOutput) HlsBasicPutSettings

func (ChannelHlsCdnSettingsPtrOutput) HlsMediaStoreSettings

func (ChannelHlsCdnSettingsPtrOutput) HlsS3Settings

func (ChannelHlsCdnSettingsPtrOutput) HlsWebdavSettings

func (ChannelHlsCdnSettingsPtrOutput) ToChannelHlsCdnSettingsPtrOutput

func (o ChannelHlsCdnSettingsPtrOutput) ToChannelHlsCdnSettingsPtrOutput() ChannelHlsCdnSettingsPtrOutput

func (ChannelHlsCdnSettingsPtrOutput) ToChannelHlsCdnSettingsPtrOutputWithContext

func (o ChannelHlsCdnSettingsPtrOutput) ToChannelHlsCdnSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsCdnSettingsPtrOutput

func (ChannelHlsCdnSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelHlsGroupSettings

type ChannelHlsGroupSettings struct {
	AdMarkers                  []string                        `pulumi:"adMarkers"`
	BaseUrlContent             *string                         `pulumi:"baseUrlContent"`
	BaseUrlContent1            *string                         `pulumi:"baseUrlContent1"`
	BaseUrlManifest            *string                         `pulumi:"baseUrlManifest"`
	BaseUrlManifest1           *string                         `pulumi:"baseUrlManifest1"`
	CaptionLanguageMappings    []ChannelCaptionLanguageMapping `pulumi:"captionLanguageMappings"`
	CaptionLanguageSetting     *string                         `pulumi:"captionLanguageSetting"`
	ClientCache                *string                         `pulumi:"clientCache"`
	CodecSpecification         *string                         `pulumi:"codecSpecification"`
	ConstantIv                 *string                         `pulumi:"constantIv"`
	Destination                *ChannelOutputLocationRef       `pulumi:"destination"`
	DirectoryStructure         *string                         `pulumi:"directoryStructure"`
	DiscontinuityTags          *string                         `pulumi:"discontinuityTags"`
	EncryptionType             *string                         `pulumi:"encryptionType"`
	HlsCdnSettings             *ChannelHlsCdnSettings          `pulumi:"hlsCdnSettings"`
	HlsId3SegmentTagging       *string                         `pulumi:"hlsId3SegmentTagging"`
	IFrameOnlyPlaylists        *string                         `pulumi:"iFrameOnlyPlaylists"`
	IncompleteSegmentBehavior  *string                         `pulumi:"incompleteSegmentBehavior"`
	IndexNSegments             *int                            `pulumi:"indexNSegments"`
	InputLossAction            *string                         `pulumi:"inputLossAction"`
	IvInManifest               *string                         `pulumi:"ivInManifest"`
	IvSource                   *string                         `pulumi:"ivSource"`
	KeepSegments               *int                            `pulumi:"keepSegments"`
	KeyFormat                  *string                         `pulumi:"keyFormat"`
	KeyFormatVersions          *string                         `pulumi:"keyFormatVersions"`
	KeyProviderSettings        *ChannelKeyProviderSettings     `pulumi:"keyProviderSettings"`
	ManifestCompression        *string                         `pulumi:"manifestCompression"`
	ManifestDurationFormat     *string                         `pulumi:"manifestDurationFormat"`
	MinSegmentLength           *int                            `pulumi:"minSegmentLength"`
	Mode                       *string                         `pulumi:"mode"`
	OutputSelection            *string                         `pulumi:"outputSelection"`
	ProgramDateTime            *string                         `pulumi:"programDateTime"`
	ProgramDateTimeClock       *string                         `pulumi:"programDateTimeClock"`
	ProgramDateTimePeriod      *int                            `pulumi:"programDateTimePeriod"`
	RedundantManifest          *string                         `pulumi:"redundantManifest"`
	SegmentLength              *int                            `pulumi:"segmentLength"`
	SegmentationMode           *string                         `pulumi:"segmentationMode"`
	SegmentsPerSubdirectory    *int                            `pulumi:"segmentsPerSubdirectory"`
	StreamInfResolution        *string                         `pulumi:"streamInfResolution"`
	TimedMetadataId3Frame      *string                         `pulumi:"timedMetadataId3Frame"`
	TimedMetadataId3Period     *int                            `pulumi:"timedMetadataId3Period"`
	TimestampDeltaMilliseconds *int                            `pulumi:"timestampDeltaMilliseconds"`
	TsFileMode                 *string                         `pulumi:"tsFileMode"`
}

type ChannelHlsGroupSettingsArgs

type ChannelHlsGroupSettingsArgs struct {
	AdMarkers                  pulumi.StringArrayInput                 `pulumi:"adMarkers"`
	BaseUrlContent             pulumi.StringPtrInput                   `pulumi:"baseUrlContent"`
	BaseUrlContent1            pulumi.StringPtrInput                   `pulumi:"baseUrlContent1"`
	BaseUrlManifest            pulumi.StringPtrInput                   `pulumi:"baseUrlManifest"`
	BaseUrlManifest1           pulumi.StringPtrInput                   `pulumi:"baseUrlManifest1"`
	CaptionLanguageMappings    ChannelCaptionLanguageMappingArrayInput `pulumi:"captionLanguageMappings"`
	CaptionLanguageSetting     pulumi.StringPtrInput                   `pulumi:"captionLanguageSetting"`
	ClientCache                pulumi.StringPtrInput                   `pulumi:"clientCache"`
	CodecSpecification         pulumi.StringPtrInput                   `pulumi:"codecSpecification"`
	ConstantIv                 pulumi.StringPtrInput                   `pulumi:"constantIv"`
	Destination                ChannelOutputLocationRefPtrInput        `pulumi:"destination"`
	DirectoryStructure         pulumi.StringPtrInput                   `pulumi:"directoryStructure"`
	DiscontinuityTags          pulumi.StringPtrInput                   `pulumi:"discontinuityTags"`
	EncryptionType             pulumi.StringPtrInput                   `pulumi:"encryptionType"`
	HlsCdnSettings             ChannelHlsCdnSettingsPtrInput           `pulumi:"hlsCdnSettings"`
	HlsId3SegmentTagging       pulumi.StringPtrInput                   `pulumi:"hlsId3SegmentTagging"`
	IFrameOnlyPlaylists        pulumi.StringPtrInput                   `pulumi:"iFrameOnlyPlaylists"`
	IncompleteSegmentBehavior  pulumi.StringPtrInput                   `pulumi:"incompleteSegmentBehavior"`
	IndexNSegments             pulumi.IntPtrInput                      `pulumi:"indexNSegments"`
	InputLossAction            pulumi.StringPtrInput                   `pulumi:"inputLossAction"`
	IvInManifest               pulumi.StringPtrInput                   `pulumi:"ivInManifest"`
	IvSource                   pulumi.StringPtrInput                   `pulumi:"ivSource"`
	KeepSegments               pulumi.IntPtrInput                      `pulumi:"keepSegments"`
	KeyFormat                  pulumi.StringPtrInput                   `pulumi:"keyFormat"`
	KeyFormatVersions          pulumi.StringPtrInput                   `pulumi:"keyFormatVersions"`
	KeyProviderSettings        ChannelKeyProviderSettingsPtrInput      `pulumi:"keyProviderSettings"`
	ManifestCompression        pulumi.StringPtrInput                   `pulumi:"manifestCompression"`
	ManifestDurationFormat     pulumi.StringPtrInput                   `pulumi:"manifestDurationFormat"`
	MinSegmentLength           pulumi.IntPtrInput                      `pulumi:"minSegmentLength"`
	Mode                       pulumi.StringPtrInput                   `pulumi:"mode"`
	OutputSelection            pulumi.StringPtrInput                   `pulumi:"outputSelection"`
	ProgramDateTime            pulumi.StringPtrInput                   `pulumi:"programDateTime"`
	ProgramDateTimeClock       pulumi.StringPtrInput                   `pulumi:"programDateTimeClock"`
	ProgramDateTimePeriod      pulumi.IntPtrInput                      `pulumi:"programDateTimePeriod"`
	RedundantManifest          pulumi.StringPtrInput                   `pulumi:"redundantManifest"`
	SegmentLength              pulumi.IntPtrInput                      `pulumi:"segmentLength"`
	SegmentationMode           pulumi.StringPtrInput                   `pulumi:"segmentationMode"`
	SegmentsPerSubdirectory    pulumi.IntPtrInput                      `pulumi:"segmentsPerSubdirectory"`
	StreamInfResolution        pulumi.StringPtrInput                   `pulumi:"streamInfResolution"`
	TimedMetadataId3Frame      pulumi.StringPtrInput                   `pulumi:"timedMetadataId3Frame"`
	TimedMetadataId3Period     pulumi.IntPtrInput                      `pulumi:"timedMetadataId3Period"`
	TimestampDeltaMilliseconds pulumi.IntPtrInput                      `pulumi:"timestampDeltaMilliseconds"`
	TsFileMode                 pulumi.StringPtrInput                   `pulumi:"tsFileMode"`
}

func (ChannelHlsGroupSettingsArgs) ElementType

func (ChannelHlsGroupSettingsArgs) ToChannelHlsGroupSettingsOutput

func (i ChannelHlsGroupSettingsArgs) ToChannelHlsGroupSettingsOutput() ChannelHlsGroupSettingsOutput

func (ChannelHlsGroupSettingsArgs) ToChannelHlsGroupSettingsOutputWithContext

func (i ChannelHlsGroupSettingsArgs) ToChannelHlsGroupSettingsOutputWithContext(ctx context.Context) ChannelHlsGroupSettingsOutput

func (ChannelHlsGroupSettingsArgs) ToChannelHlsGroupSettingsPtrOutput

func (i ChannelHlsGroupSettingsArgs) ToChannelHlsGroupSettingsPtrOutput() ChannelHlsGroupSettingsPtrOutput

func (ChannelHlsGroupSettingsArgs) ToChannelHlsGroupSettingsPtrOutputWithContext

func (i ChannelHlsGroupSettingsArgs) ToChannelHlsGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsGroupSettingsPtrOutput

func (ChannelHlsGroupSettingsArgs) ToOutput added in v0.76.0

type ChannelHlsGroupSettingsInput

type ChannelHlsGroupSettingsInput interface {
	pulumi.Input

	ToChannelHlsGroupSettingsOutput() ChannelHlsGroupSettingsOutput
	ToChannelHlsGroupSettingsOutputWithContext(context.Context) ChannelHlsGroupSettingsOutput
}

ChannelHlsGroupSettingsInput is an input type that accepts ChannelHlsGroupSettingsArgs and ChannelHlsGroupSettingsOutput values. You can construct a concrete instance of `ChannelHlsGroupSettingsInput` via:

ChannelHlsGroupSettingsArgs{...}

type ChannelHlsGroupSettingsOutput

type ChannelHlsGroupSettingsOutput struct{ *pulumi.OutputState }

func (ChannelHlsGroupSettingsOutput) AdMarkers

func (ChannelHlsGroupSettingsOutput) BaseUrlContent

func (ChannelHlsGroupSettingsOutput) BaseUrlContent1

func (ChannelHlsGroupSettingsOutput) BaseUrlManifest

func (ChannelHlsGroupSettingsOutput) BaseUrlManifest1

func (ChannelHlsGroupSettingsOutput) CaptionLanguageMappings

func (ChannelHlsGroupSettingsOutput) CaptionLanguageSetting

func (o ChannelHlsGroupSettingsOutput) CaptionLanguageSetting() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsOutput) ClientCache

func (ChannelHlsGroupSettingsOutput) CodecSpecification

func (o ChannelHlsGroupSettingsOutput) CodecSpecification() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsOutput) ConstantIv

func (ChannelHlsGroupSettingsOutput) Destination

func (ChannelHlsGroupSettingsOutput) DirectoryStructure

func (o ChannelHlsGroupSettingsOutput) DirectoryStructure() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsOutput) DiscontinuityTags

func (ChannelHlsGroupSettingsOutput) ElementType

func (ChannelHlsGroupSettingsOutput) EncryptionType

func (ChannelHlsGroupSettingsOutput) HlsCdnSettings

func (ChannelHlsGroupSettingsOutput) HlsId3SegmentTagging

func (o ChannelHlsGroupSettingsOutput) HlsId3SegmentTagging() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsOutput) IFrameOnlyPlaylists

func (o ChannelHlsGroupSettingsOutput) IFrameOnlyPlaylists() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsOutput) IncompleteSegmentBehavior

func (o ChannelHlsGroupSettingsOutput) IncompleteSegmentBehavior() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsOutput) IndexNSegments

func (ChannelHlsGroupSettingsOutput) InputLossAction

func (ChannelHlsGroupSettingsOutput) IvInManifest

func (ChannelHlsGroupSettingsOutput) IvSource

func (ChannelHlsGroupSettingsOutput) KeepSegments

func (ChannelHlsGroupSettingsOutput) KeyFormat

func (ChannelHlsGroupSettingsOutput) KeyFormatVersions

func (ChannelHlsGroupSettingsOutput) KeyProviderSettings

func (ChannelHlsGroupSettingsOutput) ManifestCompression

func (o ChannelHlsGroupSettingsOutput) ManifestCompression() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsOutput) ManifestDurationFormat

func (o ChannelHlsGroupSettingsOutput) ManifestDurationFormat() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsOutput) MinSegmentLength

func (o ChannelHlsGroupSettingsOutput) MinSegmentLength() pulumi.IntPtrOutput

func (ChannelHlsGroupSettingsOutput) Mode

func (ChannelHlsGroupSettingsOutput) OutputSelection

func (ChannelHlsGroupSettingsOutput) ProgramDateTime

func (ChannelHlsGroupSettingsOutput) ProgramDateTimeClock added in v0.10.0

func (o ChannelHlsGroupSettingsOutput) ProgramDateTimeClock() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsOutput) ProgramDateTimePeriod

func (o ChannelHlsGroupSettingsOutput) ProgramDateTimePeriod() pulumi.IntPtrOutput

func (ChannelHlsGroupSettingsOutput) RedundantManifest

func (ChannelHlsGroupSettingsOutput) SegmentLength

func (ChannelHlsGroupSettingsOutput) SegmentationMode

func (ChannelHlsGroupSettingsOutput) SegmentsPerSubdirectory

func (o ChannelHlsGroupSettingsOutput) SegmentsPerSubdirectory() pulumi.IntPtrOutput

func (ChannelHlsGroupSettingsOutput) StreamInfResolution

func (o ChannelHlsGroupSettingsOutput) StreamInfResolution() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsOutput) TimedMetadataId3Frame

func (o ChannelHlsGroupSettingsOutput) TimedMetadataId3Frame() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsOutput) TimedMetadataId3Period

func (o ChannelHlsGroupSettingsOutput) TimedMetadataId3Period() pulumi.IntPtrOutput

func (ChannelHlsGroupSettingsOutput) TimestampDeltaMilliseconds

func (o ChannelHlsGroupSettingsOutput) TimestampDeltaMilliseconds() pulumi.IntPtrOutput

func (ChannelHlsGroupSettingsOutput) ToChannelHlsGroupSettingsOutput

func (o ChannelHlsGroupSettingsOutput) ToChannelHlsGroupSettingsOutput() ChannelHlsGroupSettingsOutput

func (ChannelHlsGroupSettingsOutput) ToChannelHlsGroupSettingsOutputWithContext

func (o ChannelHlsGroupSettingsOutput) ToChannelHlsGroupSettingsOutputWithContext(ctx context.Context) ChannelHlsGroupSettingsOutput

func (ChannelHlsGroupSettingsOutput) ToChannelHlsGroupSettingsPtrOutput

func (o ChannelHlsGroupSettingsOutput) ToChannelHlsGroupSettingsPtrOutput() ChannelHlsGroupSettingsPtrOutput

func (ChannelHlsGroupSettingsOutput) ToChannelHlsGroupSettingsPtrOutputWithContext

func (o ChannelHlsGroupSettingsOutput) ToChannelHlsGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsGroupSettingsPtrOutput

func (ChannelHlsGroupSettingsOutput) ToOutput added in v0.76.0

func (ChannelHlsGroupSettingsOutput) TsFileMode

type ChannelHlsGroupSettingsPtrInput

type ChannelHlsGroupSettingsPtrInput interface {
	pulumi.Input

	ToChannelHlsGroupSettingsPtrOutput() ChannelHlsGroupSettingsPtrOutput
	ToChannelHlsGroupSettingsPtrOutputWithContext(context.Context) ChannelHlsGroupSettingsPtrOutput
}

ChannelHlsGroupSettingsPtrInput is an input type that accepts ChannelHlsGroupSettingsArgs, ChannelHlsGroupSettingsPtr and ChannelHlsGroupSettingsPtrOutput values. You can construct a concrete instance of `ChannelHlsGroupSettingsPtrInput` via:

        ChannelHlsGroupSettingsArgs{...}

or:

        nil

type ChannelHlsGroupSettingsPtrOutput

type ChannelHlsGroupSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelHlsGroupSettingsPtrOutput) AdMarkers

func (ChannelHlsGroupSettingsPtrOutput) BaseUrlContent

func (ChannelHlsGroupSettingsPtrOutput) BaseUrlContent1

func (ChannelHlsGroupSettingsPtrOutput) BaseUrlManifest

func (ChannelHlsGroupSettingsPtrOutput) BaseUrlManifest1

func (ChannelHlsGroupSettingsPtrOutput) CaptionLanguageMappings

func (ChannelHlsGroupSettingsPtrOutput) CaptionLanguageSetting

func (o ChannelHlsGroupSettingsPtrOutput) CaptionLanguageSetting() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsPtrOutput) ClientCache

func (ChannelHlsGroupSettingsPtrOutput) CodecSpecification

func (ChannelHlsGroupSettingsPtrOutput) ConstantIv

func (ChannelHlsGroupSettingsPtrOutput) Destination

func (ChannelHlsGroupSettingsPtrOutput) DirectoryStructure

func (ChannelHlsGroupSettingsPtrOutput) DiscontinuityTags

func (ChannelHlsGroupSettingsPtrOutput) Elem

func (ChannelHlsGroupSettingsPtrOutput) ElementType

func (ChannelHlsGroupSettingsPtrOutput) EncryptionType

func (ChannelHlsGroupSettingsPtrOutput) HlsCdnSettings

func (ChannelHlsGroupSettingsPtrOutput) HlsId3SegmentTagging

func (o ChannelHlsGroupSettingsPtrOutput) HlsId3SegmentTagging() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsPtrOutput) IFrameOnlyPlaylists

func (ChannelHlsGroupSettingsPtrOutput) IncompleteSegmentBehavior

func (o ChannelHlsGroupSettingsPtrOutput) IncompleteSegmentBehavior() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsPtrOutput) IndexNSegments

func (ChannelHlsGroupSettingsPtrOutput) InputLossAction

func (ChannelHlsGroupSettingsPtrOutput) IvInManifest

func (ChannelHlsGroupSettingsPtrOutput) IvSource

func (ChannelHlsGroupSettingsPtrOutput) KeepSegments

func (ChannelHlsGroupSettingsPtrOutput) KeyFormat

func (ChannelHlsGroupSettingsPtrOutput) KeyFormatVersions

func (ChannelHlsGroupSettingsPtrOutput) KeyProviderSettings

func (ChannelHlsGroupSettingsPtrOutput) ManifestCompression

func (ChannelHlsGroupSettingsPtrOutput) ManifestDurationFormat

func (o ChannelHlsGroupSettingsPtrOutput) ManifestDurationFormat() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsPtrOutput) MinSegmentLength

func (ChannelHlsGroupSettingsPtrOutput) Mode

func (ChannelHlsGroupSettingsPtrOutput) OutputSelection

func (ChannelHlsGroupSettingsPtrOutput) ProgramDateTime

func (ChannelHlsGroupSettingsPtrOutput) ProgramDateTimeClock added in v0.10.0

func (o ChannelHlsGroupSettingsPtrOutput) ProgramDateTimeClock() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsPtrOutput) ProgramDateTimePeriod

func (o ChannelHlsGroupSettingsPtrOutput) ProgramDateTimePeriod() pulumi.IntPtrOutput

func (ChannelHlsGroupSettingsPtrOutput) RedundantManifest

func (ChannelHlsGroupSettingsPtrOutput) SegmentLength

func (ChannelHlsGroupSettingsPtrOutput) SegmentationMode

func (ChannelHlsGroupSettingsPtrOutput) SegmentsPerSubdirectory

func (o ChannelHlsGroupSettingsPtrOutput) SegmentsPerSubdirectory() pulumi.IntPtrOutput

func (ChannelHlsGroupSettingsPtrOutput) StreamInfResolution

func (ChannelHlsGroupSettingsPtrOutput) TimedMetadataId3Frame

func (o ChannelHlsGroupSettingsPtrOutput) TimedMetadataId3Frame() pulumi.StringPtrOutput

func (ChannelHlsGroupSettingsPtrOutput) TimedMetadataId3Period

func (o ChannelHlsGroupSettingsPtrOutput) TimedMetadataId3Period() pulumi.IntPtrOutput

func (ChannelHlsGroupSettingsPtrOutput) TimestampDeltaMilliseconds

func (o ChannelHlsGroupSettingsPtrOutput) TimestampDeltaMilliseconds() pulumi.IntPtrOutput

func (ChannelHlsGroupSettingsPtrOutput) ToChannelHlsGroupSettingsPtrOutput

func (o ChannelHlsGroupSettingsPtrOutput) ToChannelHlsGroupSettingsPtrOutput() ChannelHlsGroupSettingsPtrOutput

func (ChannelHlsGroupSettingsPtrOutput) ToChannelHlsGroupSettingsPtrOutputWithContext

func (o ChannelHlsGroupSettingsPtrOutput) ToChannelHlsGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsGroupSettingsPtrOutput

func (ChannelHlsGroupSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelHlsGroupSettingsPtrOutput) TsFileMode

type ChannelHlsInputSettings

type ChannelHlsInputSettings struct {
	Bandwidth      *int    `pulumi:"bandwidth"`
	BufferSegments *int    `pulumi:"bufferSegments"`
	Retries        *int    `pulumi:"retries"`
	RetryInterval  *int    `pulumi:"retryInterval"`
	Scte35Source   *string `pulumi:"scte35Source"`
}

type ChannelHlsInputSettingsArgs

type ChannelHlsInputSettingsArgs struct {
	Bandwidth      pulumi.IntPtrInput    `pulumi:"bandwidth"`
	BufferSegments pulumi.IntPtrInput    `pulumi:"bufferSegments"`
	Retries        pulumi.IntPtrInput    `pulumi:"retries"`
	RetryInterval  pulumi.IntPtrInput    `pulumi:"retryInterval"`
	Scte35Source   pulumi.StringPtrInput `pulumi:"scte35Source"`
}

func (ChannelHlsInputSettingsArgs) ElementType

func (ChannelHlsInputSettingsArgs) ToChannelHlsInputSettingsOutput

func (i ChannelHlsInputSettingsArgs) ToChannelHlsInputSettingsOutput() ChannelHlsInputSettingsOutput

func (ChannelHlsInputSettingsArgs) ToChannelHlsInputSettingsOutputWithContext

func (i ChannelHlsInputSettingsArgs) ToChannelHlsInputSettingsOutputWithContext(ctx context.Context) ChannelHlsInputSettingsOutput

func (ChannelHlsInputSettingsArgs) ToChannelHlsInputSettingsPtrOutput

func (i ChannelHlsInputSettingsArgs) ToChannelHlsInputSettingsPtrOutput() ChannelHlsInputSettingsPtrOutput

func (ChannelHlsInputSettingsArgs) ToChannelHlsInputSettingsPtrOutputWithContext

func (i ChannelHlsInputSettingsArgs) ToChannelHlsInputSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsInputSettingsPtrOutput

func (ChannelHlsInputSettingsArgs) ToOutput added in v0.76.0

type ChannelHlsInputSettingsInput

type ChannelHlsInputSettingsInput interface {
	pulumi.Input

	ToChannelHlsInputSettingsOutput() ChannelHlsInputSettingsOutput
	ToChannelHlsInputSettingsOutputWithContext(context.Context) ChannelHlsInputSettingsOutput
}

ChannelHlsInputSettingsInput is an input type that accepts ChannelHlsInputSettingsArgs and ChannelHlsInputSettingsOutput values. You can construct a concrete instance of `ChannelHlsInputSettingsInput` via:

ChannelHlsInputSettingsArgs{...}

type ChannelHlsInputSettingsOutput

type ChannelHlsInputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelHlsInputSettingsOutput) Bandwidth

func (ChannelHlsInputSettingsOutput) BufferSegments

func (ChannelHlsInputSettingsOutput) ElementType

func (ChannelHlsInputSettingsOutput) Retries

func (ChannelHlsInputSettingsOutput) RetryInterval

func (ChannelHlsInputSettingsOutput) Scte35Source added in v0.9.0

func (ChannelHlsInputSettingsOutput) ToChannelHlsInputSettingsOutput

func (o ChannelHlsInputSettingsOutput) ToChannelHlsInputSettingsOutput() ChannelHlsInputSettingsOutput

func (ChannelHlsInputSettingsOutput) ToChannelHlsInputSettingsOutputWithContext

func (o ChannelHlsInputSettingsOutput) ToChannelHlsInputSettingsOutputWithContext(ctx context.Context) ChannelHlsInputSettingsOutput

func (ChannelHlsInputSettingsOutput) ToChannelHlsInputSettingsPtrOutput

func (o ChannelHlsInputSettingsOutput) ToChannelHlsInputSettingsPtrOutput() ChannelHlsInputSettingsPtrOutput

func (ChannelHlsInputSettingsOutput) ToChannelHlsInputSettingsPtrOutputWithContext

func (o ChannelHlsInputSettingsOutput) ToChannelHlsInputSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsInputSettingsPtrOutput

func (ChannelHlsInputSettingsOutput) ToOutput added in v0.76.0

type ChannelHlsInputSettingsPtrInput

type ChannelHlsInputSettingsPtrInput interface {
	pulumi.Input

	ToChannelHlsInputSettingsPtrOutput() ChannelHlsInputSettingsPtrOutput
	ToChannelHlsInputSettingsPtrOutputWithContext(context.Context) ChannelHlsInputSettingsPtrOutput
}

ChannelHlsInputSettingsPtrInput is an input type that accepts ChannelHlsInputSettingsArgs, ChannelHlsInputSettingsPtr and ChannelHlsInputSettingsPtrOutput values. You can construct a concrete instance of `ChannelHlsInputSettingsPtrInput` via:

        ChannelHlsInputSettingsArgs{...}

or:

        nil

type ChannelHlsInputSettingsPtrOutput

type ChannelHlsInputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelHlsInputSettingsPtrOutput) Bandwidth

func (ChannelHlsInputSettingsPtrOutput) BufferSegments

func (ChannelHlsInputSettingsPtrOutput) Elem

func (ChannelHlsInputSettingsPtrOutput) ElementType

func (ChannelHlsInputSettingsPtrOutput) Retries

func (ChannelHlsInputSettingsPtrOutput) RetryInterval

func (ChannelHlsInputSettingsPtrOutput) Scte35Source added in v0.9.0

func (ChannelHlsInputSettingsPtrOutput) ToChannelHlsInputSettingsPtrOutput

func (o ChannelHlsInputSettingsPtrOutput) ToChannelHlsInputSettingsPtrOutput() ChannelHlsInputSettingsPtrOutput

func (ChannelHlsInputSettingsPtrOutput) ToChannelHlsInputSettingsPtrOutputWithContext

func (o ChannelHlsInputSettingsPtrOutput) ToChannelHlsInputSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsInputSettingsPtrOutput

func (ChannelHlsInputSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelHlsMediaStoreSettings

type ChannelHlsMediaStoreSettings struct {
	ConnectionRetryInterval *int    `pulumi:"connectionRetryInterval"`
	FilecacheDuration       *int    `pulumi:"filecacheDuration"`
	MediaStoreStorageClass  *string `pulumi:"mediaStoreStorageClass"`
	NumRetries              *int    `pulumi:"numRetries"`
	RestartDelay            *int    `pulumi:"restartDelay"`
}

type ChannelHlsMediaStoreSettingsArgs

type ChannelHlsMediaStoreSettingsArgs struct {
	ConnectionRetryInterval pulumi.IntPtrInput    `pulumi:"connectionRetryInterval"`
	FilecacheDuration       pulumi.IntPtrInput    `pulumi:"filecacheDuration"`
	MediaStoreStorageClass  pulumi.StringPtrInput `pulumi:"mediaStoreStorageClass"`
	NumRetries              pulumi.IntPtrInput    `pulumi:"numRetries"`
	RestartDelay            pulumi.IntPtrInput    `pulumi:"restartDelay"`
}

func (ChannelHlsMediaStoreSettingsArgs) ElementType

func (ChannelHlsMediaStoreSettingsArgs) ToChannelHlsMediaStoreSettingsOutput

func (i ChannelHlsMediaStoreSettingsArgs) ToChannelHlsMediaStoreSettingsOutput() ChannelHlsMediaStoreSettingsOutput

func (ChannelHlsMediaStoreSettingsArgs) ToChannelHlsMediaStoreSettingsOutputWithContext

func (i ChannelHlsMediaStoreSettingsArgs) ToChannelHlsMediaStoreSettingsOutputWithContext(ctx context.Context) ChannelHlsMediaStoreSettingsOutput

func (ChannelHlsMediaStoreSettingsArgs) ToChannelHlsMediaStoreSettingsPtrOutput

func (i ChannelHlsMediaStoreSettingsArgs) ToChannelHlsMediaStoreSettingsPtrOutput() ChannelHlsMediaStoreSettingsPtrOutput

func (ChannelHlsMediaStoreSettingsArgs) ToChannelHlsMediaStoreSettingsPtrOutputWithContext

func (i ChannelHlsMediaStoreSettingsArgs) ToChannelHlsMediaStoreSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsMediaStoreSettingsPtrOutput

func (ChannelHlsMediaStoreSettingsArgs) ToOutput added in v0.76.0

type ChannelHlsMediaStoreSettingsInput

type ChannelHlsMediaStoreSettingsInput interface {
	pulumi.Input

	ToChannelHlsMediaStoreSettingsOutput() ChannelHlsMediaStoreSettingsOutput
	ToChannelHlsMediaStoreSettingsOutputWithContext(context.Context) ChannelHlsMediaStoreSettingsOutput
}

ChannelHlsMediaStoreSettingsInput is an input type that accepts ChannelHlsMediaStoreSettingsArgs and ChannelHlsMediaStoreSettingsOutput values. You can construct a concrete instance of `ChannelHlsMediaStoreSettingsInput` via:

ChannelHlsMediaStoreSettingsArgs{...}

type ChannelHlsMediaStoreSettingsOutput

type ChannelHlsMediaStoreSettingsOutput struct{ *pulumi.OutputState }

func (ChannelHlsMediaStoreSettingsOutput) ConnectionRetryInterval

func (o ChannelHlsMediaStoreSettingsOutput) ConnectionRetryInterval() pulumi.IntPtrOutput

func (ChannelHlsMediaStoreSettingsOutput) ElementType

func (ChannelHlsMediaStoreSettingsOutput) FilecacheDuration

func (ChannelHlsMediaStoreSettingsOutput) MediaStoreStorageClass

func (o ChannelHlsMediaStoreSettingsOutput) MediaStoreStorageClass() pulumi.StringPtrOutput

func (ChannelHlsMediaStoreSettingsOutput) NumRetries

func (ChannelHlsMediaStoreSettingsOutput) RestartDelay

func (ChannelHlsMediaStoreSettingsOutput) ToChannelHlsMediaStoreSettingsOutput

func (o ChannelHlsMediaStoreSettingsOutput) ToChannelHlsMediaStoreSettingsOutput() ChannelHlsMediaStoreSettingsOutput

func (ChannelHlsMediaStoreSettingsOutput) ToChannelHlsMediaStoreSettingsOutputWithContext

func (o ChannelHlsMediaStoreSettingsOutput) ToChannelHlsMediaStoreSettingsOutputWithContext(ctx context.Context) ChannelHlsMediaStoreSettingsOutput

func (ChannelHlsMediaStoreSettingsOutput) ToChannelHlsMediaStoreSettingsPtrOutput

func (o ChannelHlsMediaStoreSettingsOutput) ToChannelHlsMediaStoreSettingsPtrOutput() ChannelHlsMediaStoreSettingsPtrOutput

func (ChannelHlsMediaStoreSettingsOutput) ToChannelHlsMediaStoreSettingsPtrOutputWithContext

func (o ChannelHlsMediaStoreSettingsOutput) ToChannelHlsMediaStoreSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsMediaStoreSettingsPtrOutput

func (ChannelHlsMediaStoreSettingsOutput) ToOutput added in v0.76.0

type ChannelHlsMediaStoreSettingsPtrInput

type ChannelHlsMediaStoreSettingsPtrInput interface {
	pulumi.Input

	ToChannelHlsMediaStoreSettingsPtrOutput() ChannelHlsMediaStoreSettingsPtrOutput
	ToChannelHlsMediaStoreSettingsPtrOutputWithContext(context.Context) ChannelHlsMediaStoreSettingsPtrOutput
}

ChannelHlsMediaStoreSettingsPtrInput is an input type that accepts ChannelHlsMediaStoreSettingsArgs, ChannelHlsMediaStoreSettingsPtr and ChannelHlsMediaStoreSettingsPtrOutput values. You can construct a concrete instance of `ChannelHlsMediaStoreSettingsPtrInput` via:

        ChannelHlsMediaStoreSettingsArgs{...}

or:

        nil

type ChannelHlsMediaStoreSettingsPtrOutput

type ChannelHlsMediaStoreSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelHlsMediaStoreSettingsPtrOutput) ConnectionRetryInterval

func (o ChannelHlsMediaStoreSettingsPtrOutput) ConnectionRetryInterval() pulumi.IntPtrOutput

func (ChannelHlsMediaStoreSettingsPtrOutput) Elem

func (ChannelHlsMediaStoreSettingsPtrOutput) ElementType

func (ChannelHlsMediaStoreSettingsPtrOutput) FilecacheDuration

func (ChannelHlsMediaStoreSettingsPtrOutput) MediaStoreStorageClass

func (ChannelHlsMediaStoreSettingsPtrOutput) NumRetries

func (ChannelHlsMediaStoreSettingsPtrOutput) RestartDelay

func (ChannelHlsMediaStoreSettingsPtrOutput) ToChannelHlsMediaStoreSettingsPtrOutput

func (o ChannelHlsMediaStoreSettingsPtrOutput) ToChannelHlsMediaStoreSettingsPtrOutput() ChannelHlsMediaStoreSettingsPtrOutput

func (ChannelHlsMediaStoreSettingsPtrOutput) ToChannelHlsMediaStoreSettingsPtrOutputWithContext

func (o ChannelHlsMediaStoreSettingsPtrOutput) ToChannelHlsMediaStoreSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsMediaStoreSettingsPtrOutput

func (ChannelHlsMediaStoreSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelHlsOutputSettings

type ChannelHlsOutputSettings struct {
	H265PackagingType *string             `pulumi:"h265PackagingType"`
	HlsSettings       *ChannelHlsSettings `pulumi:"hlsSettings"`
	NameModifier      *string             `pulumi:"nameModifier"`
	SegmentModifier   *string             `pulumi:"segmentModifier"`
}

type ChannelHlsOutputSettingsArgs

type ChannelHlsOutputSettingsArgs struct {
	H265PackagingType pulumi.StringPtrInput      `pulumi:"h265PackagingType"`
	HlsSettings       ChannelHlsSettingsPtrInput `pulumi:"hlsSettings"`
	NameModifier      pulumi.StringPtrInput      `pulumi:"nameModifier"`
	SegmentModifier   pulumi.StringPtrInput      `pulumi:"segmentModifier"`
}

func (ChannelHlsOutputSettingsArgs) ElementType

func (ChannelHlsOutputSettingsArgs) ToChannelHlsOutputSettingsOutput

func (i ChannelHlsOutputSettingsArgs) ToChannelHlsOutputSettingsOutput() ChannelHlsOutputSettingsOutput

func (ChannelHlsOutputSettingsArgs) ToChannelHlsOutputSettingsOutputWithContext

func (i ChannelHlsOutputSettingsArgs) ToChannelHlsOutputSettingsOutputWithContext(ctx context.Context) ChannelHlsOutputSettingsOutput

func (ChannelHlsOutputSettingsArgs) ToChannelHlsOutputSettingsPtrOutput

func (i ChannelHlsOutputSettingsArgs) ToChannelHlsOutputSettingsPtrOutput() ChannelHlsOutputSettingsPtrOutput

func (ChannelHlsOutputSettingsArgs) ToChannelHlsOutputSettingsPtrOutputWithContext

func (i ChannelHlsOutputSettingsArgs) ToChannelHlsOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsOutputSettingsPtrOutput

func (ChannelHlsOutputSettingsArgs) ToOutput added in v0.76.0

type ChannelHlsOutputSettingsInput

type ChannelHlsOutputSettingsInput interface {
	pulumi.Input

	ToChannelHlsOutputSettingsOutput() ChannelHlsOutputSettingsOutput
	ToChannelHlsOutputSettingsOutputWithContext(context.Context) ChannelHlsOutputSettingsOutput
}

ChannelHlsOutputSettingsInput is an input type that accepts ChannelHlsOutputSettingsArgs and ChannelHlsOutputSettingsOutput values. You can construct a concrete instance of `ChannelHlsOutputSettingsInput` via:

ChannelHlsOutputSettingsArgs{...}

type ChannelHlsOutputSettingsOutput

type ChannelHlsOutputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelHlsOutputSettingsOutput) ElementType

func (ChannelHlsOutputSettingsOutput) H265PackagingType

func (ChannelHlsOutputSettingsOutput) HlsSettings

func (ChannelHlsOutputSettingsOutput) NameModifier

func (ChannelHlsOutputSettingsOutput) SegmentModifier

func (ChannelHlsOutputSettingsOutput) ToChannelHlsOutputSettingsOutput

func (o ChannelHlsOutputSettingsOutput) ToChannelHlsOutputSettingsOutput() ChannelHlsOutputSettingsOutput

func (ChannelHlsOutputSettingsOutput) ToChannelHlsOutputSettingsOutputWithContext

func (o ChannelHlsOutputSettingsOutput) ToChannelHlsOutputSettingsOutputWithContext(ctx context.Context) ChannelHlsOutputSettingsOutput

func (ChannelHlsOutputSettingsOutput) ToChannelHlsOutputSettingsPtrOutput

func (o ChannelHlsOutputSettingsOutput) ToChannelHlsOutputSettingsPtrOutput() ChannelHlsOutputSettingsPtrOutput

func (ChannelHlsOutputSettingsOutput) ToChannelHlsOutputSettingsPtrOutputWithContext

func (o ChannelHlsOutputSettingsOutput) ToChannelHlsOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsOutputSettingsPtrOutput

func (ChannelHlsOutputSettingsOutput) ToOutput added in v0.76.0

type ChannelHlsOutputSettingsPtrInput

type ChannelHlsOutputSettingsPtrInput interface {
	pulumi.Input

	ToChannelHlsOutputSettingsPtrOutput() ChannelHlsOutputSettingsPtrOutput
	ToChannelHlsOutputSettingsPtrOutputWithContext(context.Context) ChannelHlsOutputSettingsPtrOutput
}

ChannelHlsOutputSettingsPtrInput is an input type that accepts ChannelHlsOutputSettingsArgs, ChannelHlsOutputSettingsPtr and ChannelHlsOutputSettingsPtrOutput values. You can construct a concrete instance of `ChannelHlsOutputSettingsPtrInput` via:

        ChannelHlsOutputSettingsArgs{...}

or:

        nil

type ChannelHlsOutputSettingsPtrOutput

type ChannelHlsOutputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelHlsOutputSettingsPtrOutput) Elem

func (ChannelHlsOutputSettingsPtrOutput) ElementType

func (ChannelHlsOutputSettingsPtrOutput) H265PackagingType

func (ChannelHlsOutputSettingsPtrOutput) HlsSettings

func (ChannelHlsOutputSettingsPtrOutput) NameModifier

func (ChannelHlsOutputSettingsPtrOutput) SegmentModifier

func (ChannelHlsOutputSettingsPtrOutput) ToChannelHlsOutputSettingsPtrOutput

func (o ChannelHlsOutputSettingsPtrOutput) ToChannelHlsOutputSettingsPtrOutput() ChannelHlsOutputSettingsPtrOutput

func (ChannelHlsOutputSettingsPtrOutput) ToChannelHlsOutputSettingsPtrOutputWithContext

func (o ChannelHlsOutputSettingsPtrOutput) ToChannelHlsOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsOutputSettingsPtrOutput

func (ChannelHlsOutputSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelHlsS3Settings

type ChannelHlsS3Settings struct {
	CannedAcl *string `pulumi:"cannedAcl"`
}

type ChannelHlsS3SettingsArgs

type ChannelHlsS3SettingsArgs struct {
	CannedAcl pulumi.StringPtrInput `pulumi:"cannedAcl"`
}

func (ChannelHlsS3SettingsArgs) ElementType

func (ChannelHlsS3SettingsArgs) ElementType() reflect.Type

func (ChannelHlsS3SettingsArgs) ToChannelHlsS3SettingsOutput

func (i ChannelHlsS3SettingsArgs) ToChannelHlsS3SettingsOutput() ChannelHlsS3SettingsOutput

func (ChannelHlsS3SettingsArgs) ToChannelHlsS3SettingsOutputWithContext

func (i ChannelHlsS3SettingsArgs) ToChannelHlsS3SettingsOutputWithContext(ctx context.Context) ChannelHlsS3SettingsOutput

func (ChannelHlsS3SettingsArgs) ToChannelHlsS3SettingsPtrOutput

func (i ChannelHlsS3SettingsArgs) ToChannelHlsS3SettingsPtrOutput() ChannelHlsS3SettingsPtrOutput

func (ChannelHlsS3SettingsArgs) ToChannelHlsS3SettingsPtrOutputWithContext

func (i ChannelHlsS3SettingsArgs) ToChannelHlsS3SettingsPtrOutputWithContext(ctx context.Context) ChannelHlsS3SettingsPtrOutput

func (ChannelHlsS3SettingsArgs) ToOutput added in v0.76.0

type ChannelHlsS3SettingsInput

type ChannelHlsS3SettingsInput interface {
	pulumi.Input

	ToChannelHlsS3SettingsOutput() ChannelHlsS3SettingsOutput
	ToChannelHlsS3SettingsOutputWithContext(context.Context) ChannelHlsS3SettingsOutput
}

ChannelHlsS3SettingsInput is an input type that accepts ChannelHlsS3SettingsArgs and ChannelHlsS3SettingsOutput values. You can construct a concrete instance of `ChannelHlsS3SettingsInput` via:

ChannelHlsS3SettingsArgs{...}

type ChannelHlsS3SettingsOutput

type ChannelHlsS3SettingsOutput struct{ *pulumi.OutputState }

func (ChannelHlsS3SettingsOutput) CannedAcl

func (ChannelHlsS3SettingsOutput) ElementType

func (ChannelHlsS3SettingsOutput) ElementType() reflect.Type

func (ChannelHlsS3SettingsOutput) ToChannelHlsS3SettingsOutput

func (o ChannelHlsS3SettingsOutput) ToChannelHlsS3SettingsOutput() ChannelHlsS3SettingsOutput

func (ChannelHlsS3SettingsOutput) ToChannelHlsS3SettingsOutputWithContext

func (o ChannelHlsS3SettingsOutput) ToChannelHlsS3SettingsOutputWithContext(ctx context.Context) ChannelHlsS3SettingsOutput

func (ChannelHlsS3SettingsOutput) ToChannelHlsS3SettingsPtrOutput

func (o ChannelHlsS3SettingsOutput) ToChannelHlsS3SettingsPtrOutput() ChannelHlsS3SettingsPtrOutput

func (ChannelHlsS3SettingsOutput) ToChannelHlsS3SettingsPtrOutputWithContext

func (o ChannelHlsS3SettingsOutput) ToChannelHlsS3SettingsPtrOutputWithContext(ctx context.Context) ChannelHlsS3SettingsPtrOutput

func (ChannelHlsS3SettingsOutput) ToOutput added in v0.76.0

type ChannelHlsS3SettingsPtrInput

type ChannelHlsS3SettingsPtrInput interface {
	pulumi.Input

	ToChannelHlsS3SettingsPtrOutput() ChannelHlsS3SettingsPtrOutput
	ToChannelHlsS3SettingsPtrOutputWithContext(context.Context) ChannelHlsS3SettingsPtrOutput
}

ChannelHlsS3SettingsPtrInput is an input type that accepts ChannelHlsS3SettingsArgs, ChannelHlsS3SettingsPtr and ChannelHlsS3SettingsPtrOutput values. You can construct a concrete instance of `ChannelHlsS3SettingsPtrInput` via:

        ChannelHlsS3SettingsArgs{...}

or:

        nil

type ChannelHlsS3SettingsPtrOutput

type ChannelHlsS3SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelHlsS3SettingsPtrOutput) CannedAcl

func (ChannelHlsS3SettingsPtrOutput) Elem

func (ChannelHlsS3SettingsPtrOutput) ElementType

func (ChannelHlsS3SettingsPtrOutput) ToChannelHlsS3SettingsPtrOutput

func (o ChannelHlsS3SettingsPtrOutput) ToChannelHlsS3SettingsPtrOutput() ChannelHlsS3SettingsPtrOutput

func (ChannelHlsS3SettingsPtrOutput) ToChannelHlsS3SettingsPtrOutputWithContext

func (o ChannelHlsS3SettingsPtrOutput) ToChannelHlsS3SettingsPtrOutputWithContext(ctx context.Context) ChannelHlsS3SettingsPtrOutput

func (ChannelHlsS3SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelHlsSettings

type ChannelHlsSettings struct {
	AudioOnlyHlsSettings    *ChannelAudioOnlyHlsSettings    `pulumi:"audioOnlyHlsSettings"`
	Fmp4HlsSettings         *ChannelFmp4HlsSettings         `pulumi:"fmp4HlsSettings"`
	FrameCaptureHlsSettings *ChannelFrameCaptureHlsSettings `pulumi:"frameCaptureHlsSettings"`
	StandardHlsSettings     *ChannelStandardHlsSettings     `pulumi:"standardHlsSettings"`
}

type ChannelHlsSettingsArgs

type ChannelHlsSettingsArgs struct {
	AudioOnlyHlsSettings    ChannelAudioOnlyHlsSettingsPtrInput    `pulumi:"audioOnlyHlsSettings"`
	Fmp4HlsSettings         ChannelFmp4HlsSettingsPtrInput         `pulumi:"fmp4HlsSettings"`
	FrameCaptureHlsSettings ChannelFrameCaptureHlsSettingsPtrInput `pulumi:"frameCaptureHlsSettings"`
	StandardHlsSettings     ChannelStandardHlsSettingsPtrInput     `pulumi:"standardHlsSettings"`
}

func (ChannelHlsSettingsArgs) ElementType

func (ChannelHlsSettingsArgs) ElementType() reflect.Type

func (ChannelHlsSettingsArgs) ToChannelHlsSettingsOutput

func (i ChannelHlsSettingsArgs) ToChannelHlsSettingsOutput() ChannelHlsSettingsOutput

func (ChannelHlsSettingsArgs) ToChannelHlsSettingsOutputWithContext

func (i ChannelHlsSettingsArgs) ToChannelHlsSettingsOutputWithContext(ctx context.Context) ChannelHlsSettingsOutput

func (ChannelHlsSettingsArgs) ToChannelHlsSettingsPtrOutput

func (i ChannelHlsSettingsArgs) ToChannelHlsSettingsPtrOutput() ChannelHlsSettingsPtrOutput

func (ChannelHlsSettingsArgs) ToChannelHlsSettingsPtrOutputWithContext

func (i ChannelHlsSettingsArgs) ToChannelHlsSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsSettingsPtrOutput

func (ChannelHlsSettingsArgs) ToOutput added in v0.76.0

type ChannelHlsSettingsInput

type ChannelHlsSettingsInput interface {
	pulumi.Input

	ToChannelHlsSettingsOutput() ChannelHlsSettingsOutput
	ToChannelHlsSettingsOutputWithContext(context.Context) ChannelHlsSettingsOutput
}

ChannelHlsSettingsInput is an input type that accepts ChannelHlsSettingsArgs and ChannelHlsSettingsOutput values. You can construct a concrete instance of `ChannelHlsSettingsInput` via:

ChannelHlsSettingsArgs{...}

type ChannelHlsSettingsOutput

type ChannelHlsSettingsOutput struct{ *pulumi.OutputState }

func (ChannelHlsSettingsOutput) AudioOnlyHlsSettings

func (ChannelHlsSettingsOutput) ElementType

func (ChannelHlsSettingsOutput) ElementType() reflect.Type

func (ChannelHlsSettingsOutput) Fmp4HlsSettings

func (ChannelHlsSettingsOutput) FrameCaptureHlsSettings

func (ChannelHlsSettingsOutput) StandardHlsSettings

func (ChannelHlsSettingsOutput) ToChannelHlsSettingsOutput

func (o ChannelHlsSettingsOutput) ToChannelHlsSettingsOutput() ChannelHlsSettingsOutput

func (ChannelHlsSettingsOutput) ToChannelHlsSettingsOutputWithContext

func (o ChannelHlsSettingsOutput) ToChannelHlsSettingsOutputWithContext(ctx context.Context) ChannelHlsSettingsOutput

func (ChannelHlsSettingsOutput) ToChannelHlsSettingsPtrOutput

func (o ChannelHlsSettingsOutput) ToChannelHlsSettingsPtrOutput() ChannelHlsSettingsPtrOutput

func (ChannelHlsSettingsOutput) ToChannelHlsSettingsPtrOutputWithContext

func (o ChannelHlsSettingsOutput) ToChannelHlsSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsSettingsPtrOutput

func (ChannelHlsSettingsOutput) ToOutput added in v0.76.0

type ChannelHlsSettingsPtrInput

type ChannelHlsSettingsPtrInput interface {
	pulumi.Input

	ToChannelHlsSettingsPtrOutput() ChannelHlsSettingsPtrOutput
	ToChannelHlsSettingsPtrOutputWithContext(context.Context) ChannelHlsSettingsPtrOutput
}

ChannelHlsSettingsPtrInput is an input type that accepts ChannelHlsSettingsArgs, ChannelHlsSettingsPtr and ChannelHlsSettingsPtrOutput values. You can construct a concrete instance of `ChannelHlsSettingsPtrInput` via:

        ChannelHlsSettingsArgs{...}

or:

        nil

type ChannelHlsSettingsPtrOutput

type ChannelHlsSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelHlsSettingsPtrOutput) AudioOnlyHlsSettings

func (ChannelHlsSettingsPtrOutput) Elem

func (ChannelHlsSettingsPtrOutput) ElementType

func (ChannelHlsSettingsPtrOutput) Fmp4HlsSettings

func (ChannelHlsSettingsPtrOutput) FrameCaptureHlsSettings

func (ChannelHlsSettingsPtrOutput) StandardHlsSettings

func (ChannelHlsSettingsPtrOutput) ToChannelHlsSettingsPtrOutput

func (o ChannelHlsSettingsPtrOutput) ToChannelHlsSettingsPtrOutput() ChannelHlsSettingsPtrOutput

func (ChannelHlsSettingsPtrOutput) ToChannelHlsSettingsPtrOutputWithContext

func (o ChannelHlsSettingsPtrOutput) ToChannelHlsSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsSettingsPtrOutput

func (ChannelHlsSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelHlsWebdavSettings

type ChannelHlsWebdavSettings struct {
	ConnectionRetryInterval *int    `pulumi:"connectionRetryInterval"`
	FilecacheDuration       *int    `pulumi:"filecacheDuration"`
	HttpTransferMode        *string `pulumi:"httpTransferMode"`
	NumRetries              *int    `pulumi:"numRetries"`
	RestartDelay            *int    `pulumi:"restartDelay"`
}

type ChannelHlsWebdavSettingsArgs

type ChannelHlsWebdavSettingsArgs struct {
	ConnectionRetryInterval pulumi.IntPtrInput    `pulumi:"connectionRetryInterval"`
	FilecacheDuration       pulumi.IntPtrInput    `pulumi:"filecacheDuration"`
	HttpTransferMode        pulumi.StringPtrInput `pulumi:"httpTransferMode"`
	NumRetries              pulumi.IntPtrInput    `pulumi:"numRetries"`
	RestartDelay            pulumi.IntPtrInput    `pulumi:"restartDelay"`
}

func (ChannelHlsWebdavSettingsArgs) ElementType

func (ChannelHlsWebdavSettingsArgs) ToChannelHlsWebdavSettingsOutput

func (i ChannelHlsWebdavSettingsArgs) ToChannelHlsWebdavSettingsOutput() ChannelHlsWebdavSettingsOutput

func (ChannelHlsWebdavSettingsArgs) ToChannelHlsWebdavSettingsOutputWithContext

func (i ChannelHlsWebdavSettingsArgs) ToChannelHlsWebdavSettingsOutputWithContext(ctx context.Context) ChannelHlsWebdavSettingsOutput

func (ChannelHlsWebdavSettingsArgs) ToChannelHlsWebdavSettingsPtrOutput

func (i ChannelHlsWebdavSettingsArgs) ToChannelHlsWebdavSettingsPtrOutput() ChannelHlsWebdavSettingsPtrOutput

func (ChannelHlsWebdavSettingsArgs) ToChannelHlsWebdavSettingsPtrOutputWithContext

func (i ChannelHlsWebdavSettingsArgs) ToChannelHlsWebdavSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsWebdavSettingsPtrOutput

func (ChannelHlsWebdavSettingsArgs) ToOutput added in v0.76.0

type ChannelHlsWebdavSettingsInput

type ChannelHlsWebdavSettingsInput interface {
	pulumi.Input

	ToChannelHlsWebdavSettingsOutput() ChannelHlsWebdavSettingsOutput
	ToChannelHlsWebdavSettingsOutputWithContext(context.Context) ChannelHlsWebdavSettingsOutput
}

ChannelHlsWebdavSettingsInput is an input type that accepts ChannelHlsWebdavSettingsArgs and ChannelHlsWebdavSettingsOutput values. You can construct a concrete instance of `ChannelHlsWebdavSettingsInput` via:

ChannelHlsWebdavSettingsArgs{...}

type ChannelHlsWebdavSettingsOutput

type ChannelHlsWebdavSettingsOutput struct{ *pulumi.OutputState }

func (ChannelHlsWebdavSettingsOutput) ConnectionRetryInterval

func (o ChannelHlsWebdavSettingsOutput) ConnectionRetryInterval() pulumi.IntPtrOutput

func (ChannelHlsWebdavSettingsOutput) ElementType

func (ChannelHlsWebdavSettingsOutput) FilecacheDuration

func (o ChannelHlsWebdavSettingsOutput) FilecacheDuration() pulumi.IntPtrOutput

func (ChannelHlsWebdavSettingsOutput) HttpTransferMode

func (ChannelHlsWebdavSettingsOutput) NumRetries

func (ChannelHlsWebdavSettingsOutput) RestartDelay

func (ChannelHlsWebdavSettingsOutput) ToChannelHlsWebdavSettingsOutput

func (o ChannelHlsWebdavSettingsOutput) ToChannelHlsWebdavSettingsOutput() ChannelHlsWebdavSettingsOutput

func (ChannelHlsWebdavSettingsOutput) ToChannelHlsWebdavSettingsOutputWithContext

func (o ChannelHlsWebdavSettingsOutput) ToChannelHlsWebdavSettingsOutputWithContext(ctx context.Context) ChannelHlsWebdavSettingsOutput

func (ChannelHlsWebdavSettingsOutput) ToChannelHlsWebdavSettingsPtrOutput

func (o ChannelHlsWebdavSettingsOutput) ToChannelHlsWebdavSettingsPtrOutput() ChannelHlsWebdavSettingsPtrOutput

func (ChannelHlsWebdavSettingsOutput) ToChannelHlsWebdavSettingsPtrOutputWithContext

func (o ChannelHlsWebdavSettingsOutput) ToChannelHlsWebdavSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsWebdavSettingsPtrOutput

func (ChannelHlsWebdavSettingsOutput) ToOutput added in v0.76.0

type ChannelHlsWebdavSettingsPtrInput

type ChannelHlsWebdavSettingsPtrInput interface {
	pulumi.Input

	ToChannelHlsWebdavSettingsPtrOutput() ChannelHlsWebdavSettingsPtrOutput
	ToChannelHlsWebdavSettingsPtrOutputWithContext(context.Context) ChannelHlsWebdavSettingsPtrOutput
}

ChannelHlsWebdavSettingsPtrInput is an input type that accepts ChannelHlsWebdavSettingsArgs, ChannelHlsWebdavSettingsPtr and ChannelHlsWebdavSettingsPtrOutput values. You can construct a concrete instance of `ChannelHlsWebdavSettingsPtrInput` via:

        ChannelHlsWebdavSettingsArgs{...}

or:

        nil

type ChannelHlsWebdavSettingsPtrOutput

type ChannelHlsWebdavSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelHlsWebdavSettingsPtrOutput) ConnectionRetryInterval

func (o ChannelHlsWebdavSettingsPtrOutput) ConnectionRetryInterval() pulumi.IntPtrOutput

func (ChannelHlsWebdavSettingsPtrOutput) Elem

func (ChannelHlsWebdavSettingsPtrOutput) ElementType

func (ChannelHlsWebdavSettingsPtrOutput) FilecacheDuration

func (ChannelHlsWebdavSettingsPtrOutput) HttpTransferMode

func (ChannelHlsWebdavSettingsPtrOutput) NumRetries

func (ChannelHlsWebdavSettingsPtrOutput) RestartDelay

func (ChannelHlsWebdavSettingsPtrOutput) ToChannelHlsWebdavSettingsPtrOutput

func (o ChannelHlsWebdavSettingsPtrOutput) ToChannelHlsWebdavSettingsPtrOutput() ChannelHlsWebdavSettingsPtrOutput

func (ChannelHlsWebdavSettingsPtrOutput) ToChannelHlsWebdavSettingsPtrOutputWithContext

func (o ChannelHlsWebdavSettingsPtrOutput) ToChannelHlsWebdavSettingsPtrOutputWithContext(ctx context.Context) ChannelHlsWebdavSettingsPtrOutput

func (ChannelHlsWebdavSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelHtmlMotionGraphicsSettings

type ChannelHtmlMotionGraphicsSettings struct {
}

type ChannelHtmlMotionGraphicsSettingsArgs

type ChannelHtmlMotionGraphicsSettingsArgs struct {
}

func (ChannelHtmlMotionGraphicsSettingsArgs) ElementType

func (ChannelHtmlMotionGraphicsSettingsArgs) ToChannelHtmlMotionGraphicsSettingsOutput

func (i ChannelHtmlMotionGraphicsSettingsArgs) ToChannelHtmlMotionGraphicsSettingsOutput() ChannelHtmlMotionGraphicsSettingsOutput

func (ChannelHtmlMotionGraphicsSettingsArgs) ToChannelHtmlMotionGraphicsSettingsOutputWithContext

func (i ChannelHtmlMotionGraphicsSettingsArgs) ToChannelHtmlMotionGraphicsSettingsOutputWithContext(ctx context.Context) ChannelHtmlMotionGraphicsSettingsOutput

func (ChannelHtmlMotionGraphicsSettingsArgs) ToChannelHtmlMotionGraphicsSettingsPtrOutput

func (i ChannelHtmlMotionGraphicsSettingsArgs) ToChannelHtmlMotionGraphicsSettingsPtrOutput() ChannelHtmlMotionGraphicsSettingsPtrOutput

func (ChannelHtmlMotionGraphicsSettingsArgs) ToChannelHtmlMotionGraphicsSettingsPtrOutputWithContext

func (i ChannelHtmlMotionGraphicsSettingsArgs) ToChannelHtmlMotionGraphicsSettingsPtrOutputWithContext(ctx context.Context) ChannelHtmlMotionGraphicsSettingsPtrOutput

func (ChannelHtmlMotionGraphicsSettingsArgs) ToOutput added in v0.76.0

type ChannelHtmlMotionGraphicsSettingsInput

type ChannelHtmlMotionGraphicsSettingsInput interface {
	pulumi.Input

	ToChannelHtmlMotionGraphicsSettingsOutput() ChannelHtmlMotionGraphicsSettingsOutput
	ToChannelHtmlMotionGraphicsSettingsOutputWithContext(context.Context) ChannelHtmlMotionGraphicsSettingsOutput
}

ChannelHtmlMotionGraphicsSettingsInput is an input type that accepts ChannelHtmlMotionGraphicsSettingsArgs and ChannelHtmlMotionGraphicsSettingsOutput values. You can construct a concrete instance of `ChannelHtmlMotionGraphicsSettingsInput` via:

ChannelHtmlMotionGraphicsSettingsArgs{...}

type ChannelHtmlMotionGraphicsSettingsOutput

type ChannelHtmlMotionGraphicsSettingsOutput struct{ *pulumi.OutputState }

func (ChannelHtmlMotionGraphicsSettingsOutput) ElementType

func (ChannelHtmlMotionGraphicsSettingsOutput) ToChannelHtmlMotionGraphicsSettingsOutput

func (o ChannelHtmlMotionGraphicsSettingsOutput) ToChannelHtmlMotionGraphicsSettingsOutput() ChannelHtmlMotionGraphicsSettingsOutput

func (ChannelHtmlMotionGraphicsSettingsOutput) ToChannelHtmlMotionGraphicsSettingsOutputWithContext

func (o ChannelHtmlMotionGraphicsSettingsOutput) ToChannelHtmlMotionGraphicsSettingsOutputWithContext(ctx context.Context) ChannelHtmlMotionGraphicsSettingsOutput

func (ChannelHtmlMotionGraphicsSettingsOutput) ToChannelHtmlMotionGraphicsSettingsPtrOutput

func (o ChannelHtmlMotionGraphicsSettingsOutput) ToChannelHtmlMotionGraphicsSettingsPtrOutput() ChannelHtmlMotionGraphicsSettingsPtrOutput

func (ChannelHtmlMotionGraphicsSettingsOutput) ToChannelHtmlMotionGraphicsSettingsPtrOutputWithContext

func (o ChannelHtmlMotionGraphicsSettingsOutput) ToChannelHtmlMotionGraphicsSettingsPtrOutputWithContext(ctx context.Context) ChannelHtmlMotionGraphicsSettingsPtrOutput

func (ChannelHtmlMotionGraphicsSettingsOutput) ToOutput added in v0.76.0

type ChannelHtmlMotionGraphicsSettingsPtrInput

type ChannelHtmlMotionGraphicsSettingsPtrInput interface {
	pulumi.Input

	ToChannelHtmlMotionGraphicsSettingsPtrOutput() ChannelHtmlMotionGraphicsSettingsPtrOutput
	ToChannelHtmlMotionGraphicsSettingsPtrOutputWithContext(context.Context) ChannelHtmlMotionGraphicsSettingsPtrOutput
}

ChannelHtmlMotionGraphicsSettingsPtrInput is an input type that accepts ChannelHtmlMotionGraphicsSettingsArgs, ChannelHtmlMotionGraphicsSettingsPtr and ChannelHtmlMotionGraphicsSettingsPtrOutput values. You can construct a concrete instance of `ChannelHtmlMotionGraphicsSettingsPtrInput` via:

        ChannelHtmlMotionGraphicsSettingsArgs{...}

or:

        nil

type ChannelHtmlMotionGraphicsSettingsPtrOutput

type ChannelHtmlMotionGraphicsSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelHtmlMotionGraphicsSettingsPtrOutput) Elem

func (ChannelHtmlMotionGraphicsSettingsPtrOutput) ElementType

func (ChannelHtmlMotionGraphicsSettingsPtrOutput) ToChannelHtmlMotionGraphicsSettingsPtrOutput

func (o ChannelHtmlMotionGraphicsSettingsPtrOutput) ToChannelHtmlMotionGraphicsSettingsPtrOutput() ChannelHtmlMotionGraphicsSettingsPtrOutput

func (ChannelHtmlMotionGraphicsSettingsPtrOutput) ToChannelHtmlMotionGraphicsSettingsPtrOutputWithContext

func (o ChannelHtmlMotionGraphicsSettingsPtrOutput) ToChannelHtmlMotionGraphicsSettingsPtrOutputWithContext(ctx context.Context) ChannelHtmlMotionGraphicsSettingsPtrOutput

func (ChannelHtmlMotionGraphicsSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelInput

type ChannelInput interface {
	pulumi.Input

	ToChannelOutput() ChannelOutput
	ToChannelOutputWithContext(ctx context.Context) ChannelOutput
}

type ChannelInputAttachment

type ChannelInputAttachment struct {
	AutomaticInputFailoverSettings *ChannelAutomaticInputFailoverSettings `pulumi:"automaticInputFailoverSettings"`
	InputAttachmentName            *string                                `pulumi:"inputAttachmentName"`
	InputId                        *string                                `pulumi:"inputId"`
	InputSettings                  *ChannelInputSettings                  `pulumi:"inputSettings"`
}

type ChannelInputAttachmentArgs

type ChannelInputAttachmentArgs struct {
	AutomaticInputFailoverSettings ChannelAutomaticInputFailoverSettingsPtrInput `pulumi:"automaticInputFailoverSettings"`
	InputAttachmentName            pulumi.StringPtrInput                         `pulumi:"inputAttachmentName"`
	InputId                        pulumi.StringPtrInput                         `pulumi:"inputId"`
	InputSettings                  ChannelInputSettingsPtrInput                  `pulumi:"inputSettings"`
}

func (ChannelInputAttachmentArgs) ElementType

func (ChannelInputAttachmentArgs) ElementType() reflect.Type

func (ChannelInputAttachmentArgs) ToChannelInputAttachmentOutput

func (i ChannelInputAttachmentArgs) ToChannelInputAttachmentOutput() ChannelInputAttachmentOutput

func (ChannelInputAttachmentArgs) ToChannelInputAttachmentOutputWithContext

func (i ChannelInputAttachmentArgs) ToChannelInputAttachmentOutputWithContext(ctx context.Context) ChannelInputAttachmentOutput

func (ChannelInputAttachmentArgs) ToOutput added in v0.76.0

type ChannelInputAttachmentArray

type ChannelInputAttachmentArray []ChannelInputAttachmentInput

func (ChannelInputAttachmentArray) ElementType

func (ChannelInputAttachmentArray) ToChannelInputAttachmentArrayOutput

func (i ChannelInputAttachmentArray) ToChannelInputAttachmentArrayOutput() ChannelInputAttachmentArrayOutput

func (ChannelInputAttachmentArray) ToChannelInputAttachmentArrayOutputWithContext

func (i ChannelInputAttachmentArray) ToChannelInputAttachmentArrayOutputWithContext(ctx context.Context) ChannelInputAttachmentArrayOutput

func (ChannelInputAttachmentArray) ToOutput added in v0.76.0

type ChannelInputAttachmentArrayInput

type ChannelInputAttachmentArrayInput interface {
	pulumi.Input

	ToChannelInputAttachmentArrayOutput() ChannelInputAttachmentArrayOutput
	ToChannelInputAttachmentArrayOutputWithContext(context.Context) ChannelInputAttachmentArrayOutput
}

ChannelInputAttachmentArrayInput is an input type that accepts ChannelInputAttachmentArray and ChannelInputAttachmentArrayOutput values. You can construct a concrete instance of `ChannelInputAttachmentArrayInput` via:

ChannelInputAttachmentArray{ ChannelInputAttachmentArgs{...} }

type ChannelInputAttachmentArrayOutput

type ChannelInputAttachmentArrayOutput struct{ *pulumi.OutputState }

func (ChannelInputAttachmentArrayOutput) ElementType

func (ChannelInputAttachmentArrayOutput) Index

func (ChannelInputAttachmentArrayOutput) ToChannelInputAttachmentArrayOutput

func (o ChannelInputAttachmentArrayOutput) ToChannelInputAttachmentArrayOutput() ChannelInputAttachmentArrayOutput

func (ChannelInputAttachmentArrayOutput) ToChannelInputAttachmentArrayOutputWithContext

func (o ChannelInputAttachmentArrayOutput) ToChannelInputAttachmentArrayOutputWithContext(ctx context.Context) ChannelInputAttachmentArrayOutput

func (ChannelInputAttachmentArrayOutput) ToOutput added in v0.76.0

type ChannelInputAttachmentInput

type ChannelInputAttachmentInput interface {
	pulumi.Input

	ToChannelInputAttachmentOutput() ChannelInputAttachmentOutput
	ToChannelInputAttachmentOutputWithContext(context.Context) ChannelInputAttachmentOutput
}

ChannelInputAttachmentInput is an input type that accepts ChannelInputAttachmentArgs and ChannelInputAttachmentOutput values. You can construct a concrete instance of `ChannelInputAttachmentInput` via:

ChannelInputAttachmentArgs{...}

type ChannelInputAttachmentOutput

type ChannelInputAttachmentOutput struct{ *pulumi.OutputState }

func (ChannelInputAttachmentOutput) AutomaticInputFailoverSettings

func (ChannelInputAttachmentOutput) ElementType

func (ChannelInputAttachmentOutput) InputAttachmentName

func (o ChannelInputAttachmentOutput) InputAttachmentName() pulumi.StringPtrOutput

func (ChannelInputAttachmentOutput) InputId

func (ChannelInputAttachmentOutput) InputSettings

func (ChannelInputAttachmentOutput) ToChannelInputAttachmentOutput

func (o ChannelInputAttachmentOutput) ToChannelInputAttachmentOutput() ChannelInputAttachmentOutput

func (ChannelInputAttachmentOutput) ToChannelInputAttachmentOutputWithContext

func (o ChannelInputAttachmentOutput) ToChannelInputAttachmentOutputWithContext(ctx context.Context) ChannelInputAttachmentOutput

func (ChannelInputAttachmentOutput) ToOutput added in v0.76.0

type ChannelInputChannelLevel

type ChannelInputChannelLevel struct {
	Gain         *int `pulumi:"gain"`
	InputChannel *int `pulumi:"inputChannel"`
}

type ChannelInputChannelLevelArgs

type ChannelInputChannelLevelArgs struct {
	Gain         pulumi.IntPtrInput `pulumi:"gain"`
	InputChannel pulumi.IntPtrInput `pulumi:"inputChannel"`
}

func (ChannelInputChannelLevelArgs) ElementType

func (ChannelInputChannelLevelArgs) ToChannelInputChannelLevelOutput

func (i ChannelInputChannelLevelArgs) ToChannelInputChannelLevelOutput() ChannelInputChannelLevelOutput

func (ChannelInputChannelLevelArgs) ToChannelInputChannelLevelOutputWithContext

func (i ChannelInputChannelLevelArgs) ToChannelInputChannelLevelOutputWithContext(ctx context.Context) ChannelInputChannelLevelOutput

func (ChannelInputChannelLevelArgs) ToOutput added in v0.76.0

type ChannelInputChannelLevelArray

type ChannelInputChannelLevelArray []ChannelInputChannelLevelInput

func (ChannelInputChannelLevelArray) ElementType

func (ChannelInputChannelLevelArray) ToChannelInputChannelLevelArrayOutput

func (i ChannelInputChannelLevelArray) ToChannelInputChannelLevelArrayOutput() ChannelInputChannelLevelArrayOutput

func (ChannelInputChannelLevelArray) ToChannelInputChannelLevelArrayOutputWithContext

func (i ChannelInputChannelLevelArray) ToChannelInputChannelLevelArrayOutputWithContext(ctx context.Context) ChannelInputChannelLevelArrayOutput

func (ChannelInputChannelLevelArray) ToOutput added in v0.76.0

type ChannelInputChannelLevelArrayInput

type ChannelInputChannelLevelArrayInput interface {
	pulumi.Input

	ToChannelInputChannelLevelArrayOutput() ChannelInputChannelLevelArrayOutput
	ToChannelInputChannelLevelArrayOutputWithContext(context.Context) ChannelInputChannelLevelArrayOutput
}

ChannelInputChannelLevelArrayInput is an input type that accepts ChannelInputChannelLevelArray and ChannelInputChannelLevelArrayOutput values. You can construct a concrete instance of `ChannelInputChannelLevelArrayInput` via:

ChannelInputChannelLevelArray{ ChannelInputChannelLevelArgs{...} }

type ChannelInputChannelLevelArrayOutput

type ChannelInputChannelLevelArrayOutput struct{ *pulumi.OutputState }

func (ChannelInputChannelLevelArrayOutput) ElementType

func (ChannelInputChannelLevelArrayOutput) Index

func (ChannelInputChannelLevelArrayOutput) ToChannelInputChannelLevelArrayOutput

func (o ChannelInputChannelLevelArrayOutput) ToChannelInputChannelLevelArrayOutput() ChannelInputChannelLevelArrayOutput

func (ChannelInputChannelLevelArrayOutput) ToChannelInputChannelLevelArrayOutputWithContext

func (o ChannelInputChannelLevelArrayOutput) ToChannelInputChannelLevelArrayOutputWithContext(ctx context.Context) ChannelInputChannelLevelArrayOutput

func (ChannelInputChannelLevelArrayOutput) ToOutput added in v0.76.0

type ChannelInputChannelLevelInput

type ChannelInputChannelLevelInput interface {
	pulumi.Input

	ToChannelInputChannelLevelOutput() ChannelInputChannelLevelOutput
	ToChannelInputChannelLevelOutputWithContext(context.Context) ChannelInputChannelLevelOutput
}

ChannelInputChannelLevelInput is an input type that accepts ChannelInputChannelLevelArgs and ChannelInputChannelLevelOutput values. You can construct a concrete instance of `ChannelInputChannelLevelInput` via:

ChannelInputChannelLevelArgs{...}

type ChannelInputChannelLevelOutput

type ChannelInputChannelLevelOutput struct{ *pulumi.OutputState }

func (ChannelInputChannelLevelOutput) ElementType

func (ChannelInputChannelLevelOutput) Gain

func (ChannelInputChannelLevelOutput) InputChannel

func (ChannelInputChannelLevelOutput) ToChannelInputChannelLevelOutput

func (o ChannelInputChannelLevelOutput) ToChannelInputChannelLevelOutput() ChannelInputChannelLevelOutput

func (ChannelInputChannelLevelOutput) ToChannelInputChannelLevelOutputWithContext

func (o ChannelInputChannelLevelOutput) ToChannelInputChannelLevelOutputWithContext(ctx context.Context) ChannelInputChannelLevelOutput

func (ChannelInputChannelLevelOutput) ToOutput added in v0.76.0

type ChannelInputLocation

type ChannelInputLocation struct {
	PasswordParam *string `pulumi:"passwordParam"`
	Uri           *string `pulumi:"uri"`
	Username      *string `pulumi:"username"`
}

type ChannelInputLocationArgs

type ChannelInputLocationArgs struct {
	PasswordParam pulumi.StringPtrInput `pulumi:"passwordParam"`
	Uri           pulumi.StringPtrInput `pulumi:"uri"`
	Username      pulumi.StringPtrInput `pulumi:"username"`
}

func (ChannelInputLocationArgs) ElementType

func (ChannelInputLocationArgs) ElementType() reflect.Type

func (ChannelInputLocationArgs) ToChannelInputLocationOutput

func (i ChannelInputLocationArgs) ToChannelInputLocationOutput() ChannelInputLocationOutput

func (ChannelInputLocationArgs) ToChannelInputLocationOutputWithContext

func (i ChannelInputLocationArgs) ToChannelInputLocationOutputWithContext(ctx context.Context) ChannelInputLocationOutput

func (ChannelInputLocationArgs) ToChannelInputLocationPtrOutput

func (i ChannelInputLocationArgs) ToChannelInputLocationPtrOutput() ChannelInputLocationPtrOutput

func (ChannelInputLocationArgs) ToChannelInputLocationPtrOutputWithContext

func (i ChannelInputLocationArgs) ToChannelInputLocationPtrOutputWithContext(ctx context.Context) ChannelInputLocationPtrOutput

func (ChannelInputLocationArgs) ToOutput added in v0.76.0

type ChannelInputLocationInput

type ChannelInputLocationInput interface {
	pulumi.Input

	ToChannelInputLocationOutput() ChannelInputLocationOutput
	ToChannelInputLocationOutputWithContext(context.Context) ChannelInputLocationOutput
}

ChannelInputLocationInput is an input type that accepts ChannelInputLocationArgs and ChannelInputLocationOutput values. You can construct a concrete instance of `ChannelInputLocationInput` via:

ChannelInputLocationArgs{...}

type ChannelInputLocationOutput

type ChannelInputLocationOutput struct{ *pulumi.OutputState }

func (ChannelInputLocationOutput) ElementType

func (ChannelInputLocationOutput) ElementType() reflect.Type

func (ChannelInputLocationOutput) PasswordParam

func (ChannelInputLocationOutput) ToChannelInputLocationOutput

func (o ChannelInputLocationOutput) ToChannelInputLocationOutput() ChannelInputLocationOutput

func (ChannelInputLocationOutput) ToChannelInputLocationOutputWithContext

func (o ChannelInputLocationOutput) ToChannelInputLocationOutputWithContext(ctx context.Context) ChannelInputLocationOutput

func (ChannelInputLocationOutput) ToChannelInputLocationPtrOutput

func (o ChannelInputLocationOutput) ToChannelInputLocationPtrOutput() ChannelInputLocationPtrOutput

func (ChannelInputLocationOutput) ToChannelInputLocationPtrOutputWithContext

func (o ChannelInputLocationOutput) ToChannelInputLocationPtrOutputWithContext(ctx context.Context) ChannelInputLocationPtrOutput

func (ChannelInputLocationOutput) ToOutput added in v0.76.0

func (ChannelInputLocationOutput) Uri

func (ChannelInputLocationOutput) Username

type ChannelInputLocationPtrInput

type ChannelInputLocationPtrInput interface {
	pulumi.Input

	ToChannelInputLocationPtrOutput() ChannelInputLocationPtrOutput
	ToChannelInputLocationPtrOutputWithContext(context.Context) ChannelInputLocationPtrOutput
}

ChannelInputLocationPtrInput is an input type that accepts ChannelInputLocationArgs, ChannelInputLocationPtr and ChannelInputLocationPtrOutput values. You can construct a concrete instance of `ChannelInputLocationPtrInput` via:

        ChannelInputLocationArgs{...}

or:

        nil

type ChannelInputLocationPtrOutput

type ChannelInputLocationPtrOutput struct{ *pulumi.OutputState }

func (ChannelInputLocationPtrOutput) Elem

func (ChannelInputLocationPtrOutput) ElementType

func (ChannelInputLocationPtrOutput) PasswordParam

func (ChannelInputLocationPtrOutput) ToChannelInputLocationPtrOutput

func (o ChannelInputLocationPtrOutput) ToChannelInputLocationPtrOutput() ChannelInputLocationPtrOutput

func (ChannelInputLocationPtrOutput) ToChannelInputLocationPtrOutputWithContext

func (o ChannelInputLocationPtrOutput) ToChannelInputLocationPtrOutputWithContext(ctx context.Context) ChannelInputLocationPtrOutput

func (ChannelInputLocationPtrOutput) ToOutput added in v0.76.0

func (ChannelInputLocationPtrOutput) Uri

func (ChannelInputLocationPtrOutput) Username

type ChannelInputLossBehavior

type ChannelInputLossBehavior struct {
	BlackFrameMsec      *int                  `pulumi:"blackFrameMsec"`
	InputLossImageColor *string               `pulumi:"inputLossImageColor"`
	InputLossImageSlate *ChannelInputLocation `pulumi:"inputLossImageSlate"`
	InputLossImageType  *string               `pulumi:"inputLossImageType"`
	RepeatFrameMsec     *int                  `pulumi:"repeatFrameMsec"`
}

type ChannelInputLossBehaviorArgs

type ChannelInputLossBehaviorArgs struct {
	BlackFrameMsec      pulumi.IntPtrInput           `pulumi:"blackFrameMsec"`
	InputLossImageColor pulumi.StringPtrInput        `pulumi:"inputLossImageColor"`
	InputLossImageSlate ChannelInputLocationPtrInput `pulumi:"inputLossImageSlate"`
	InputLossImageType  pulumi.StringPtrInput        `pulumi:"inputLossImageType"`
	RepeatFrameMsec     pulumi.IntPtrInput           `pulumi:"repeatFrameMsec"`
}

func (ChannelInputLossBehaviorArgs) ElementType

func (ChannelInputLossBehaviorArgs) ToChannelInputLossBehaviorOutput

func (i ChannelInputLossBehaviorArgs) ToChannelInputLossBehaviorOutput() ChannelInputLossBehaviorOutput

func (ChannelInputLossBehaviorArgs) ToChannelInputLossBehaviorOutputWithContext

func (i ChannelInputLossBehaviorArgs) ToChannelInputLossBehaviorOutputWithContext(ctx context.Context) ChannelInputLossBehaviorOutput

func (ChannelInputLossBehaviorArgs) ToChannelInputLossBehaviorPtrOutput

func (i ChannelInputLossBehaviorArgs) ToChannelInputLossBehaviorPtrOutput() ChannelInputLossBehaviorPtrOutput

func (ChannelInputLossBehaviorArgs) ToChannelInputLossBehaviorPtrOutputWithContext

func (i ChannelInputLossBehaviorArgs) ToChannelInputLossBehaviorPtrOutputWithContext(ctx context.Context) ChannelInputLossBehaviorPtrOutput

func (ChannelInputLossBehaviorArgs) ToOutput added in v0.76.0

type ChannelInputLossBehaviorInput

type ChannelInputLossBehaviorInput interface {
	pulumi.Input

	ToChannelInputLossBehaviorOutput() ChannelInputLossBehaviorOutput
	ToChannelInputLossBehaviorOutputWithContext(context.Context) ChannelInputLossBehaviorOutput
}

ChannelInputLossBehaviorInput is an input type that accepts ChannelInputLossBehaviorArgs and ChannelInputLossBehaviorOutput values. You can construct a concrete instance of `ChannelInputLossBehaviorInput` via:

ChannelInputLossBehaviorArgs{...}

type ChannelInputLossBehaviorOutput

type ChannelInputLossBehaviorOutput struct{ *pulumi.OutputState }

func (ChannelInputLossBehaviorOutput) BlackFrameMsec

func (ChannelInputLossBehaviorOutput) ElementType

func (ChannelInputLossBehaviorOutput) InputLossImageColor

func (o ChannelInputLossBehaviorOutput) InputLossImageColor() pulumi.StringPtrOutput

func (ChannelInputLossBehaviorOutput) InputLossImageSlate

func (ChannelInputLossBehaviorOutput) InputLossImageType

func (o ChannelInputLossBehaviorOutput) InputLossImageType() pulumi.StringPtrOutput

func (ChannelInputLossBehaviorOutput) RepeatFrameMsec

func (ChannelInputLossBehaviorOutput) ToChannelInputLossBehaviorOutput

func (o ChannelInputLossBehaviorOutput) ToChannelInputLossBehaviorOutput() ChannelInputLossBehaviorOutput

func (ChannelInputLossBehaviorOutput) ToChannelInputLossBehaviorOutputWithContext

func (o ChannelInputLossBehaviorOutput) ToChannelInputLossBehaviorOutputWithContext(ctx context.Context) ChannelInputLossBehaviorOutput

func (ChannelInputLossBehaviorOutput) ToChannelInputLossBehaviorPtrOutput

func (o ChannelInputLossBehaviorOutput) ToChannelInputLossBehaviorPtrOutput() ChannelInputLossBehaviorPtrOutput

func (ChannelInputLossBehaviorOutput) ToChannelInputLossBehaviorPtrOutputWithContext

func (o ChannelInputLossBehaviorOutput) ToChannelInputLossBehaviorPtrOutputWithContext(ctx context.Context) ChannelInputLossBehaviorPtrOutput

func (ChannelInputLossBehaviorOutput) ToOutput added in v0.76.0

type ChannelInputLossBehaviorPtrInput

type ChannelInputLossBehaviorPtrInput interface {
	pulumi.Input

	ToChannelInputLossBehaviorPtrOutput() ChannelInputLossBehaviorPtrOutput
	ToChannelInputLossBehaviorPtrOutputWithContext(context.Context) ChannelInputLossBehaviorPtrOutput
}

ChannelInputLossBehaviorPtrInput is an input type that accepts ChannelInputLossBehaviorArgs, ChannelInputLossBehaviorPtr and ChannelInputLossBehaviorPtrOutput values. You can construct a concrete instance of `ChannelInputLossBehaviorPtrInput` via:

        ChannelInputLossBehaviorArgs{...}

or:

        nil

type ChannelInputLossBehaviorPtrOutput

type ChannelInputLossBehaviorPtrOutput struct{ *pulumi.OutputState }

func (ChannelInputLossBehaviorPtrOutput) BlackFrameMsec

func (ChannelInputLossBehaviorPtrOutput) Elem

func (ChannelInputLossBehaviorPtrOutput) ElementType

func (ChannelInputLossBehaviorPtrOutput) InputLossImageColor

func (ChannelInputLossBehaviorPtrOutput) InputLossImageSlate

func (ChannelInputLossBehaviorPtrOutput) InputLossImageType

func (ChannelInputLossBehaviorPtrOutput) RepeatFrameMsec

func (ChannelInputLossBehaviorPtrOutput) ToChannelInputLossBehaviorPtrOutput

func (o ChannelInputLossBehaviorPtrOutput) ToChannelInputLossBehaviorPtrOutput() ChannelInputLossBehaviorPtrOutput

func (ChannelInputLossBehaviorPtrOutput) ToChannelInputLossBehaviorPtrOutputWithContext

func (o ChannelInputLossBehaviorPtrOutput) ToChannelInputLossBehaviorPtrOutputWithContext(ctx context.Context) ChannelInputLossBehaviorPtrOutput

func (ChannelInputLossBehaviorPtrOutput) ToOutput added in v0.76.0

type ChannelInputLossFailoverSettings

type ChannelInputLossFailoverSettings struct {
	InputLossThresholdMsec *int `pulumi:"inputLossThresholdMsec"`
}

type ChannelInputLossFailoverSettingsArgs

type ChannelInputLossFailoverSettingsArgs struct {
	InputLossThresholdMsec pulumi.IntPtrInput `pulumi:"inputLossThresholdMsec"`
}

func (ChannelInputLossFailoverSettingsArgs) ElementType

func (ChannelInputLossFailoverSettingsArgs) ToChannelInputLossFailoverSettingsOutput

func (i ChannelInputLossFailoverSettingsArgs) ToChannelInputLossFailoverSettingsOutput() ChannelInputLossFailoverSettingsOutput

func (ChannelInputLossFailoverSettingsArgs) ToChannelInputLossFailoverSettingsOutputWithContext

func (i ChannelInputLossFailoverSettingsArgs) ToChannelInputLossFailoverSettingsOutputWithContext(ctx context.Context) ChannelInputLossFailoverSettingsOutput

func (ChannelInputLossFailoverSettingsArgs) ToChannelInputLossFailoverSettingsPtrOutput

func (i ChannelInputLossFailoverSettingsArgs) ToChannelInputLossFailoverSettingsPtrOutput() ChannelInputLossFailoverSettingsPtrOutput

func (ChannelInputLossFailoverSettingsArgs) ToChannelInputLossFailoverSettingsPtrOutputWithContext

func (i ChannelInputLossFailoverSettingsArgs) ToChannelInputLossFailoverSettingsPtrOutputWithContext(ctx context.Context) ChannelInputLossFailoverSettingsPtrOutput

func (ChannelInputLossFailoverSettingsArgs) ToOutput added in v0.76.0

type ChannelInputLossFailoverSettingsInput

type ChannelInputLossFailoverSettingsInput interface {
	pulumi.Input

	ToChannelInputLossFailoverSettingsOutput() ChannelInputLossFailoverSettingsOutput
	ToChannelInputLossFailoverSettingsOutputWithContext(context.Context) ChannelInputLossFailoverSettingsOutput
}

ChannelInputLossFailoverSettingsInput is an input type that accepts ChannelInputLossFailoverSettingsArgs and ChannelInputLossFailoverSettingsOutput values. You can construct a concrete instance of `ChannelInputLossFailoverSettingsInput` via:

ChannelInputLossFailoverSettingsArgs{...}

type ChannelInputLossFailoverSettingsOutput

type ChannelInputLossFailoverSettingsOutput struct{ *pulumi.OutputState }

func (ChannelInputLossFailoverSettingsOutput) ElementType

func (ChannelInputLossFailoverSettingsOutput) InputLossThresholdMsec

func (o ChannelInputLossFailoverSettingsOutput) InputLossThresholdMsec() pulumi.IntPtrOutput

func (ChannelInputLossFailoverSettingsOutput) ToChannelInputLossFailoverSettingsOutput

func (o ChannelInputLossFailoverSettingsOutput) ToChannelInputLossFailoverSettingsOutput() ChannelInputLossFailoverSettingsOutput

func (ChannelInputLossFailoverSettingsOutput) ToChannelInputLossFailoverSettingsOutputWithContext

func (o ChannelInputLossFailoverSettingsOutput) ToChannelInputLossFailoverSettingsOutputWithContext(ctx context.Context) ChannelInputLossFailoverSettingsOutput

func (ChannelInputLossFailoverSettingsOutput) ToChannelInputLossFailoverSettingsPtrOutput

func (o ChannelInputLossFailoverSettingsOutput) ToChannelInputLossFailoverSettingsPtrOutput() ChannelInputLossFailoverSettingsPtrOutput

func (ChannelInputLossFailoverSettingsOutput) ToChannelInputLossFailoverSettingsPtrOutputWithContext

func (o ChannelInputLossFailoverSettingsOutput) ToChannelInputLossFailoverSettingsPtrOutputWithContext(ctx context.Context) ChannelInputLossFailoverSettingsPtrOutput

func (ChannelInputLossFailoverSettingsOutput) ToOutput added in v0.76.0

type ChannelInputLossFailoverSettingsPtrInput

type ChannelInputLossFailoverSettingsPtrInput interface {
	pulumi.Input

	ToChannelInputLossFailoverSettingsPtrOutput() ChannelInputLossFailoverSettingsPtrOutput
	ToChannelInputLossFailoverSettingsPtrOutputWithContext(context.Context) ChannelInputLossFailoverSettingsPtrOutput
}

ChannelInputLossFailoverSettingsPtrInput is an input type that accepts ChannelInputLossFailoverSettingsArgs, ChannelInputLossFailoverSettingsPtr and ChannelInputLossFailoverSettingsPtrOutput values. You can construct a concrete instance of `ChannelInputLossFailoverSettingsPtrInput` via:

        ChannelInputLossFailoverSettingsArgs{...}

or:

        nil

type ChannelInputLossFailoverSettingsPtrOutput

type ChannelInputLossFailoverSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelInputLossFailoverSettingsPtrOutput) Elem

func (ChannelInputLossFailoverSettingsPtrOutput) ElementType

func (ChannelInputLossFailoverSettingsPtrOutput) InputLossThresholdMsec

func (ChannelInputLossFailoverSettingsPtrOutput) ToChannelInputLossFailoverSettingsPtrOutput

func (o ChannelInputLossFailoverSettingsPtrOutput) ToChannelInputLossFailoverSettingsPtrOutput() ChannelInputLossFailoverSettingsPtrOutput

func (ChannelInputLossFailoverSettingsPtrOutput) ToChannelInputLossFailoverSettingsPtrOutputWithContext

func (o ChannelInputLossFailoverSettingsPtrOutput) ToChannelInputLossFailoverSettingsPtrOutputWithContext(ctx context.Context) ChannelInputLossFailoverSettingsPtrOutput

func (ChannelInputLossFailoverSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelInputSettings

type ChannelInputSettings struct {
	AudioSelectors          []ChannelAudioSelector       `pulumi:"audioSelectors"`
	CaptionSelectors        []ChannelCaptionSelector     `pulumi:"captionSelectors"`
	DeblockFilter           *string                      `pulumi:"deblockFilter"`
	DenoiseFilter           *string                      `pulumi:"denoiseFilter"`
	FilterStrength          *int                         `pulumi:"filterStrength"`
	InputFilter             *string                      `pulumi:"inputFilter"`
	NetworkInputSettings    *ChannelNetworkInputSettings `pulumi:"networkInputSettings"`
	Scte35Pid               *int                         `pulumi:"scte35Pid"`
	Smpte2038DataPreference *string                      `pulumi:"smpte2038DataPreference"`
	SourceEndBehavior       *string                      `pulumi:"sourceEndBehavior"`
	VideoSelector           *ChannelVideoSelector        `pulumi:"videoSelector"`
}

type ChannelInputSettingsArgs

type ChannelInputSettingsArgs struct {
	AudioSelectors          ChannelAudioSelectorArrayInput      `pulumi:"audioSelectors"`
	CaptionSelectors        ChannelCaptionSelectorArrayInput    `pulumi:"captionSelectors"`
	DeblockFilter           pulumi.StringPtrInput               `pulumi:"deblockFilter"`
	DenoiseFilter           pulumi.StringPtrInput               `pulumi:"denoiseFilter"`
	FilterStrength          pulumi.IntPtrInput                  `pulumi:"filterStrength"`
	InputFilter             pulumi.StringPtrInput               `pulumi:"inputFilter"`
	NetworkInputSettings    ChannelNetworkInputSettingsPtrInput `pulumi:"networkInputSettings"`
	Scte35Pid               pulumi.IntPtrInput                  `pulumi:"scte35Pid"`
	Smpte2038DataPreference pulumi.StringPtrInput               `pulumi:"smpte2038DataPreference"`
	SourceEndBehavior       pulumi.StringPtrInput               `pulumi:"sourceEndBehavior"`
	VideoSelector           ChannelVideoSelectorPtrInput        `pulumi:"videoSelector"`
}

func (ChannelInputSettingsArgs) ElementType

func (ChannelInputSettingsArgs) ElementType() reflect.Type

func (ChannelInputSettingsArgs) ToChannelInputSettingsOutput

func (i ChannelInputSettingsArgs) ToChannelInputSettingsOutput() ChannelInputSettingsOutput

func (ChannelInputSettingsArgs) ToChannelInputSettingsOutputWithContext

func (i ChannelInputSettingsArgs) ToChannelInputSettingsOutputWithContext(ctx context.Context) ChannelInputSettingsOutput

func (ChannelInputSettingsArgs) ToChannelInputSettingsPtrOutput

func (i ChannelInputSettingsArgs) ToChannelInputSettingsPtrOutput() ChannelInputSettingsPtrOutput

func (ChannelInputSettingsArgs) ToChannelInputSettingsPtrOutputWithContext

func (i ChannelInputSettingsArgs) ToChannelInputSettingsPtrOutputWithContext(ctx context.Context) ChannelInputSettingsPtrOutput

func (ChannelInputSettingsArgs) ToOutput added in v0.76.0

type ChannelInputSettingsInput

type ChannelInputSettingsInput interface {
	pulumi.Input

	ToChannelInputSettingsOutput() ChannelInputSettingsOutput
	ToChannelInputSettingsOutputWithContext(context.Context) ChannelInputSettingsOutput
}

ChannelInputSettingsInput is an input type that accepts ChannelInputSettingsArgs and ChannelInputSettingsOutput values. You can construct a concrete instance of `ChannelInputSettingsInput` via:

ChannelInputSettingsArgs{...}

type ChannelInputSettingsOutput

type ChannelInputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelInputSettingsOutput) AudioSelectors

func (ChannelInputSettingsOutput) CaptionSelectors

func (ChannelInputSettingsOutput) DeblockFilter

func (ChannelInputSettingsOutput) DenoiseFilter

func (ChannelInputSettingsOutput) ElementType

func (ChannelInputSettingsOutput) ElementType() reflect.Type

func (ChannelInputSettingsOutput) FilterStrength

func (o ChannelInputSettingsOutput) FilterStrength() pulumi.IntPtrOutput

func (ChannelInputSettingsOutput) InputFilter

func (ChannelInputSettingsOutput) NetworkInputSettings

func (ChannelInputSettingsOutput) Scte35Pid added in v0.10.0

func (ChannelInputSettingsOutput) Smpte2038DataPreference

func (o ChannelInputSettingsOutput) Smpte2038DataPreference() pulumi.StringPtrOutput

func (ChannelInputSettingsOutput) SourceEndBehavior

func (o ChannelInputSettingsOutput) SourceEndBehavior() pulumi.StringPtrOutput

func (ChannelInputSettingsOutput) ToChannelInputSettingsOutput

func (o ChannelInputSettingsOutput) ToChannelInputSettingsOutput() ChannelInputSettingsOutput

func (ChannelInputSettingsOutput) ToChannelInputSettingsOutputWithContext

func (o ChannelInputSettingsOutput) ToChannelInputSettingsOutputWithContext(ctx context.Context) ChannelInputSettingsOutput

func (ChannelInputSettingsOutput) ToChannelInputSettingsPtrOutput

func (o ChannelInputSettingsOutput) ToChannelInputSettingsPtrOutput() ChannelInputSettingsPtrOutput

func (ChannelInputSettingsOutput) ToChannelInputSettingsPtrOutputWithContext

func (o ChannelInputSettingsOutput) ToChannelInputSettingsPtrOutputWithContext(ctx context.Context) ChannelInputSettingsPtrOutput

func (ChannelInputSettingsOutput) ToOutput added in v0.76.0

func (ChannelInputSettingsOutput) VideoSelector

type ChannelInputSettingsPtrInput

type ChannelInputSettingsPtrInput interface {
	pulumi.Input

	ToChannelInputSettingsPtrOutput() ChannelInputSettingsPtrOutput
	ToChannelInputSettingsPtrOutputWithContext(context.Context) ChannelInputSettingsPtrOutput
}

ChannelInputSettingsPtrInput is an input type that accepts ChannelInputSettingsArgs, ChannelInputSettingsPtr and ChannelInputSettingsPtrOutput values. You can construct a concrete instance of `ChannelInputSettingsPtrInput` via:

        ChannelInputSettingsArgs{...}

or:

        nil

type ChannelInputSettingsPtrOutput

type ChannelInputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelInputSettingsPtrOutput) AudioSelectors

func (ChannelInputSettingsPtrOutput) CaptionSelectors

func (ChannelInputSettingsPtrOutput) DeblockFilter

func (ChannelInputSettingsPtrOutput) DenoiseFilter

func (ChannelInputSettingsPtrOutput) Elem

func (ChannelInputSettingsPtrOutput) ElementType

func (ChannelInputSettingsPtrOutput) FilterStrength

func (ChannelInputSettingsPtrOutput) InputFilter

func (ChannelInputSettingsPtrOutput) NetworkInputSettings

func (ChannelInputSettingsPtrOutput) Scte35Pid added in v0.10.0

func (ChannelInputSettingsPtrOutput) Smpte2038DataPreference

func (o ChannelInputSettingsPtrOutput) Smpte2038DataPreference() pulumi.StringPtrOutput

func (ChannelInputSettingsPtrOutput) SourceEndBehavior

func (ChannelInputSettingsPtrOutput) ToChannelInputSettingsPtrOutput

func (o ChannelInputSettingsPtrOutput) ToChannelInputSettingsPtrOutput() ChannelInputSettingsPtrOutput

func (ChannelInputSettingsPtrOutput) ToChannelInputSettingsPtrOutputWithContext

func (o ChannelInputSettingsPtrOutput) ToChannelInputSettingsPtrOutputWithContext(ctx context.Context) ChannelInputSettingsPtrOutput

func (ChannelInputSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelInputSettingsPtrOutput) VideoSelector

type ChannelInputSpecification

type ChannelInputSpecification struct {
	Codec          *string `pulumi:"codec"`
	MaximumBitrate *string `pulumi:"maximumBitrate"`
	Resolution     *string `pulumi:"resolution"`
}

type ChannelInputSpecificationArgs

type ChannelInputSpecificationArgs struct {
	Codec          pulumi.StringPtrInput `pulumi:"codec"`
	MaximumBitrate pulumi.StringPtrInput `pulumi:"maximumBitrate"`
	Resolution     pulumi.StringPtrInput `pulumi:"resolution"`
}

func (ChannelInputSpecificationArgs) ElementType

func (ChannelInputSpecificationArgs) ToChannelInputSpecificationOutput

func (i ChannelInputSpecificationArgs) ToChannelInputSpecificationOutput() ChannelInputSpecificationOutput

func (ChannelInputSpecificationArgs) ToChannelInputSpecificationOutputWithContext

func (i ChannelInputSpecificationArgs) ToChannelInputSpecificationOutputWithContext(ctx context.Context) ChannelInputSpecificationOutput

func (ChannelInputSpecificationArgs) ToChannelInputSpecificationPtrOutput

func (i ChannelInputSpecificationArgs) ToChannelInputSpecificationPtrOutput() ChannelInputSpecificationPtrOutput

func (ChannelInputSpecificationArgs) ToChannelInputSpecificationPtrOutputWithContext

func (i ChannelInputSpecificationArgs) ToChannelInputSpecificationPtrOutputWithContext(ctx context.Context) ChannelInputSpecificationPtrOutput

func (ChannelInputSpecificationArgs) ToOutput added in v0.76.0

type ChannelInputSpecificationInput

type ChannelInputSpecificationInput interface {
	pulumi.Input

	ToChannelInputSpecificationOutput() ChannelInputSpecificationOutput
	ToChannelInputSpecificationOutputWithContext(context.Context) ChannelInputSpecificationOutput
}

ChannelInputSpecificationInput is an input type that accepts ChannelInputSpecificationArgs and ChannelInputSpecificationOutput values. You can construct a concrete instance of `ChannelInputSpecificationInput` via:

ChannelInputSpecificationArgs{...}

type ChannelInputSpecificationOutput

type ChannelInputSpecificationOutput struct{ *pulumi.OutputState }

func (ChannelInputSpecificationOutput) Codec

func (ChannelInputSpecificationOutput) ElementType

func (ChannelInputSpecificationOutput) MaximumBitrate

func (ChannelInputSpecificationOutput) Resolution

func (ChannelInputSpecificationOutput) ToChannelInputSpecificationOutput

func (o ChannelInputSpecificationOutput) ToChannelInputSpecificationOutput() ChannelInputSpecificationOutput

func (ChannelInputSpecificationOutput) ToChannelInputSpecificationOutputWithContext

func (o ChannelInputSpecificationOutput) ToChannelInputSpecificationOutputWithContext(ctx context.Context) ChannelInputSpecificationOutput

func (ChannelInputSpecificationOutput) ToChannelInputSpecificationPtrOutput

func (o ChannelInputSpecificationOutput) ToChannelInputSpecificationPtrOutput() ChannelInputSpecificationPtrOutput

func (ChannelInputSpecificationOutput) ToChannelInputSpecificationPtrOutputWithContext

func (o ChannelInputSpecificationOutput) ToChannelInputSpecificationPtrOutputWithContext(ctx context.Context) ChannelInputSpecificationPtrOutput

func (ChannelInputSpecificationOutput) ToOutput added in v0.76.0

type ChannelInputSpecificationPtrInput

type ChannelInputSpecificationPtrInput interface {
	pulumi.Input

	ToChannelInputSpecificationPtrOutput() ChannelInputSpecificationPtrOutput
	ToChannelInputSpecificationPtrOutputWithContext(context.Context) ChannelInputSpecificationPtrOutput
}

ChannelInputSpecificationPtrInput is an input type that accepts ChannelInputSpecificationArgs, ChannelInputSpecificationPtr and ChannelInputSpecificationPtrOutput values. You can construct a concrete instance of `ChannelInputSpecificationPtrInput` via:

        ChannelInputSpecificationArgs{...}

or:

        nil

type ChannelInputSpecificationPtrOutput

type ChannelInputSpecificationPtrOutput struct{ *pulumi.OutputState }

func (ChannelInputSpecificationPtrOutput) Codec

func (ChannelInputSpecificationPtrOutput) Elem

func (ChannelInputSpecificationPtrOutput) ElementType

func (ChannelInputSpecificationPtrOutput) MaximumBitrate

func (ChannelInputSpecificationPtrOutput) Resolution

func (ChannelInputSpecificationPtrOutput) ToChannelInputSpecificationPtrOutput

func (o ChannelInputSpecificationPtrOutput) ToChannelInputSpecificationPtrOutput() ChannelInputSpecificationPtrOutput

func (ChannelInputSpecificationPtrOutput) ToChannelInputSpecificationPtrOutputWithContext

func (o ChannelInputSpecificationPtrOutput) ToChannelInputSpecificationPtrOutputWithContext(ctx context.Context) ChannelInputSpecificationPtrOutput

func (ChannelInputSpecificationPtrOutput) ToOutput added in v0.76.0

type ChannelKeyProviderSettings

type ChannelKeyProviderSettings struct {
	StaticKeySettings *ChannelStaticKeySettings `pulumi:"staticKeySettings"`
}

type ChannelKeyProviderSettingsArgs

type ChannelKeyProviderSettingsArgs struct {
	StaticKeySettings ChannelStaticKeySettingsPtrInput `pulumi:"staticKeySettings"`
}

func (ChannelKeyProviderSettingsArgs) ElementType

func (ChannelKeyProviderSettingsArgs) ToChannelKeyProviderSettingsOutput

func (i ChannelKeyProviderSettingsArgs) ToChannelKeyProviderSettingsOutput() ChannelKeyProviderSettingsOutput

func (ChannelKeyProviderSettingsArgs) ToChannelKeyProviderSettingsOutputWithContext

func (i ChannelKeyProviderSettingsArgs) ToChannelKeyProviderSettingsOutputWithContext(ctx context.Context) ChannelKeyProviderSettingsOutput

func (ChannelKeyProviderSettingsArgs) ToChannelKeyProviderSettingsPtrOutput

func (i ChannelKeyProviderSettingsArgs) ToChannelKeyProviderSettingsPtrOutput() ChannelKeyProviderSettingsPtrOutput

func (ChannelKeyProviderSettingsArgs) ToChannelKeyProviderSettingsPtrOutputWithContext

func (i ChannelKeyProviderSettingsArgs) ToChannelKeyProviderSettingsPtrOutputWithContext(ctx context.Context) ChannelKeyProviderSettingsPtrOutput

func (ChannelKeyProviderSettingsArgs) ToOutput added in v0.76.0

type ChannelKeyProviderSettingsInput

type ChannelKeyProviderSettingsInput interface {
	pulumi.Input

	ToChannelKeyProviderSettingsOutput() ChannelKeyProviderSettingsOutput
	ToChannelKeyProviderSettingsOutputWithContext(context.Context) ChannelKeyProviderSettingsOutput
}

ChannelKeyProviderSettingsInput is an input type that accepts ChannelKeyProviderSettingsArgs and ChannelKeyProviderSettingsOutput values. You can construct a concrete instance of `ChannelKeyProviderSettingsInput` via:

ChannelKeyProviderSettingsArgs{...}

type ChannelKeyProviderSettingsOutput

type ChannelKeyProviderSettingsOutput struct{ *pulumi.OutputState }

func (ChannelKeyProviderSettingsOutput) ElementType

func (ChannelKeyProviderSettingsOutput) StaticKeySettings

func (ChannelKeyProviderSettingsOutput) ToChannelKeyProviderSettingsOutput

func (o ChannelKeyProviderSettingsOutput) ToChannelKeyProviderSettingsOutput() ChannelKeyProviderSettingsOutput

func (ChannelKeyProviderSettingsOutput) ToChannelKeyProviderSettingsOutputWithContext

func (o ChannelKeyProviderSettingsOutput) ToChannelKeyProviderSettingsOutputWithContext(ctx context.Context) ChannelKeyProviderSettingsOutput

func (ChannelKeyProviderSettingsOutput) ToChannelKeyProviderSettingsPtrOutput

func (o ChannelKeyProviderSettingsOutput) ToChannelKeyProviderSettingsPtrOutput() ChannelKeyProviderSettingsPtrOutput

func (ChannelKeyProviderSettingsOutput) ToChannelKeyProviderSettingsPtrOutputWithContext

func (o ChannelKeyProviderSettingsOutput) ToChannelKeyProviderSettingsPtrOutputWithContext(ctx context.Context) ChannelKeyProviderSettingsPtrOutput

func (ChannelKeyProviderSettingsOutput) ToOutput added in v0.76.0

type ChannelKeyProviderSettingsPtrInput

type ChannelKeyProviderSettingsPtrInput interface {
	pulumi.Input

	ToChannelKeyProviderSettingsPtrOutput() ChannelKeyProviderSettingsPtrOutput
	ToChannelKeyProviderSettingsPtrOutputWithContext(context.Context) ChannelKeyProviderSettingsPtrOutput
}

ChannelKeyProviderSettingsPtrInput is an input type that accepts ChannelKeyProviderSettingsArgs, ChannelKeyProviderSettingsPtr and ChannelKeyProviderSettingsPtrOutput values. You can construct a concrete instance of `ChannelKeyProviderSettingsPtrInput` via:

        ChannelKeyProviderSettingsArgs{...}

or:

        nil

type ChannelKeyProviderSettingsPtrOutput

type ChannelKeyProviderSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelKeyProviderSettingsPtrOutput) Elem

func (ChannelKeyProviderSettingsPtrOutput) ElementType

func (ChannelKeyProviderSettingsPtrOutput) StaticKeySettings

func (ChannelKeyProviderSettingsPtrOutput) ToChannelKeyProviderSettingsPtrOutput

func (o ChannelKeyProviderSettingsPtrOutput) ToChannelKeyProviderSettingsPtrOutput() ChannelKeyProviderSettingsPtrOutput

func (ChannelKeyProviderSettingsPtrOutput) ToChannelKeyProviderSettingsPtrOutputWithContext

func (o ChannelKeyProviderSettingsPtrOutput) ToChannelKeyProviderSettingsPtrOutputWithContext(ctx context.Context) ChannelKeyProviderSettingsPtrOutput

func (ChannelKeyProviderSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelM2tsSettings

type ChannelM2tsSettings struct {
	AbsentInputAudioBehavior        *string                `pulumi:"absentInputAudioBehavior"`
	Arib                            *string                `pulumi:"arib"`
	AribCaptionsPid                 *string                `pulumi:"aribCaptionsPid"`
	AribCaptionsPidControl          *string                `pulumi:"aribCaptionsPidControl"`
	AudioBufferModel                *string                `pulumi:"audioBufferModel"`
	AudioFramesPerPes               *int                   `pulumi:"audioFramesPerPes"`
	AudioPids                       *string                `pulumi:"audioPids"`
	AudioStreamType                 *string                `pulumi:"audioStreamType"`
	Bitrate                         *int                   `pulumi:"bitrate"`
	BufferModel                     *string                `pulumi:"bufferModel"`
	CcDescriptor                    *string                `pulumi:"ccDescriptor"`
	DvbNitSettings                  *ChannelDvbNitSettings `pulumi:"dvbNitSettings"`
	DvbSdtSettings                  *ChannelDvbSdtSettings `pulumi:"dvbSdtSettings"`
	DvbSubPids                      *string                `pulumi:"dvbSubPids"`
	DvbTdtSettings                  *ChannelDvbTdtSettings `pulumi:"dvbTdtSettings"`
	DvbTeletextPid                  *string                `pulumi:"dvbTeletextPid"`
	Ebif                            *string                `pulumi:"ebif"`
	EbpAudioInterval                *string                `pulumi:"ebpAudioInterval"`
	EbpLookaheadMs                  *int                   `pulumi:"ebpLookaheadMs"`
	EbpPlacement                    *string                `pulumi:"ebpPlacement"`
	EcmPid                          *string                `pulumi:"ecmPid"`
	EsRateInPes                     *string                `pulumi:"esRateInPes"`
	EtvPlatformPid                  *string                `pulumi:"etvPlatformPid"`
	EtvSignalPid                    *string                `pulumi:"etvSignalPid"`
	FragmentTime                    *float64               `pulumi:"fragmentTime"`
	Klv                             *string                `pulumi:"klv"`
	KlvDataPids                     *string                `pulumi:"klvDataPids"`
	NielsenId3Behavior              *string                `pulumi:"nielsenId3Behavior"`
	NullPacketBitrate               *float64               `pulumi:"nullPacketBitrate"`
	PatInterval                     *int                   `pulumi:"patInterval"`
	PcrControl                      *string                `pulumi:"pcrControl"`
	PcrPeriod                       *int                   `pulumi:"pcrPeriod"`
	PcrPid                          *string                `pulumi:"pcrPid"`
	PmtInterval                     *int                   `pulumi:"pmtInterval"`
	PmtPid                          *string                `pulumi:"pmtPid"`
	ProgramNum                      *int                   `pulumi:"programNum"`
	RateMode                        *string                `pulumi:"rateMode"`
	Scte27Pids                      *string                `pulumi:"scte27Pids"`
	Scte35Control                   *string                `pulumi:"scte35Control"`
	Scte35Pid                       *string                `pulumi:"scte35Pid"`
	Scte35PrerollPullupMilliseconds *float64               `pulumi:"scte35PrerollPullupMilliseconds"`
	SegmentationMarkers             *string                `pulumi:"segmentationMarkers"`
	SegmentationStyle               *string                `pulumi:"segmentationStyle"`
	SegmentationTime                *float64               `pulumi:"segmentationTime"`
	TimedMetadataBehavior           *string                `pulumi:"timedMetadataBehavior"`
	TimedMetadataPid                *string                `pulumi:"timedMetadataPid"`
	TransportStreamId               *int                   `pulumi:"transportStreamId"`
	VideoPid                        *string                `pulumi:"videoPid"`
}

type ChannelM2tsSettingsArgs

type ChannelM2tsSettingsArgs struct {
	AbsentInputAudioBehavior        pulumi.StringPtrInput         `pulumi:"absentInputAudioBehavior"`
	Arib                            pulumi.StringPtrInput         `pulumi:"arib"`
	AribCaptionsPid                 pulumi.StringPtrInput         `pulumi:"aribCaptionsPid"`
	AribCaptionsPidControl          pulumi.StringPtrInput         `pulumi:"aribCaptionsPidControl"`
	AudioBufferModel                pulumi.StringPtrInput         `pulumi:"audioBufferModel"`
	AudioFramesPerPes               pulumi.IntPtrInput            `pulumi:"audioFramesPerPes"`
	AudioPids                       pulumi.StringPtrInput         `pulumi:"audioPids"`
	AudioStreamType                 pulumi.StringPtrInput         `pulumi:"audioStreamType"`
	Bitrate                         pulumi.IntPtrInput            `pulumi:"bitrate"`
	BufferModel                     pulumi.StringPtrInput         `pulumi:"bufferModel"`
	CcDescriptor                    pulumi.StringPtrInput         `pulumi:"ccDescriptor"`
	DvbNitSettings                  ChannelDvbNitSettingsPtrInput `pulumi:"dvbNitSettings"`
	DvbSdtSettings                  ChannelDvbSdtSettingsPtrInput `pulumi:"dvbSdtSettings"`
	DvbSubPids                      pulumi.StringPtrInput         `pulumi:"dvbSubPids"`
	DvbTdtSettings                  ChannelDvbTdtSettingsPtrInput `pulumi:"dvbTdtSettings"`
	DvbTeletextPid                  pulumi.StringPtrInput         `pulumi:"dvbTeletextPid"`
	Ebif                            pulumi.StringPtrInput         `pulumi:"ebif"`
	EbpAudioInterval                pulumi.StringPtrInput         `pulumi:"ebpAudioInterval"`
	EbpLookaheadMs                  pulumi.IntPtrInput            `pulumi:"ebpLookaheadMs"`
	EbpPlacement                    pulumi.StringPtrInput         `pulumi:"ebpPlacement"`
	EcmPid                          pulumi.StringPtrInput         `pulumi:"ecmPid"`
	EsRateInPes                     pulumi.StringPtrInput         `pulumi:"esRateInPes"`
	EtvPlatformPid                  pulumi.StringPtrInput         `pulumi:"etvPlatformPid"`
	EtvSignalPid                    pulumi.StringPtrInput         `pulumi:"etvSignalPid"`
	FragmentTime                    pulumi.Float64PtrInput        `pulumi:"fragmentTime"`
	Klv                             pulumi.StringPtrInput         `pulumi:"klv"`
	KlvDataPids                     pulumi.StringPtrInput         `pulumi:"klvDataPids"`
	NielsenId3Behavior              pulumi.StringPtrInput         `pulumi:"nielsenId3Behavior"`
	NullPacketBitrate               pulumi.Float64PtrInput        `pulumi:"nullPacketBitrate"`
	PatInterval                     pulumi.IntPtrInput            `pulumi:"patInterval"`
	PcrControl                      pulumi.StringPtrInput         `pulumi:"pcrControl"`
	PcrPeriod                       pulumi.IntPtrInput            `pulumi:"pcrPeriod"`
	PcrPid                          pulumi.StringPtrInput         `pulumi:"pcrPid"`
	PmtInterval                     pulumi.IntPtrInput            `pulumi:"pmtInterval"`
	PmtPid                          pulumi.StringPtrInput         `pulumi:"pmtPid"`
	ProgramNum                      pulumi.IntPtrInput            `pulumi:"programNum"`
	RateMode                        pulumi.StringPtrInput         `pulumi:"rateMode"`
	Scte27Pids                      pulumi.StringPtrInput         `pulumi:"scte27Pids"`
	Scte35Control                   pulumi.StringPtrInput         `pulumi:"scte35Control"`
	Scte35Pid                       pulumi.StringPtrInput         `pulumi:"scte35Pid"`
	Scte35PrerollPullupMilliseconds pulumi.Float64PtrInput        `pulumi:"scte35PrerollPullupMilliseconds"`
	SegmentationMarkers             pulumi.StringPtrInput         `pulumi:"segmentationMarkers"`
	SegmentationStyle               pulumi.StringPtrInput         `pulumi:"segmentationStyle"`
	SegmentationTime                pulumi.Float64PtrInput        `pulumi:"segmentationTime"`
	TimedMetadataBehavior           pulumi.StringPtrInput         `pulumi:"timedMetadataBehavior"`
	TimedMetadataPid                pulumi.StringPtrInput         `pulumi:"timedMetadataPid"`
	TransportStreamId               pulumi.IntPtrInput            `pulumi:"transportStreamId"`
	VideoPid                        pulumi.StringPtrInput         `pulumi:"videoPid"`
}

func (ChannelM2tsSettingsArgs) ElementType

func (ChannelM2tsSettingsArgs) ElementType() reflect.Type

func (ChannelM2tsSettingsArgs) ToChannelM2tsSettingsOutput

func (i ChannelM2tsSettingsArgs) ToChannelM2tsSettingsOutput() ChannelM2tsSettingsOutput

func (ChannelM2tsSettingsArgs) ToChannelM2tsSettingsOutputWithContext

func (i ChannelM2tsSettingsArgs) ToChannelM2tsSettingsOutputWithContext(ctx context.Context) ChannelM2tsSettingsOutput

func (ChannelM2tsSettingsArgs) ToChannelM2tsSettingsPtrOutput

func (i ChannelM2tsSettingsArgs) ToChannelM2tsSettingsPtrOutput() ChannelM2tsSettingsPtrOutput

func (ChannelM2tsSettingsArgs) ToChannelM2tsSettingsPtrOutputWithContext

func (i ChannelM2tsSettingsArgs) ToChannelM2tsSettingsPtrOutputWithContext(ctx context.Context) ChannelM2tsSettingsPtrOutput

func (ChannelM2tsSettingsArgs) ToOutput added in v0.76.0

type ChannelM2tsSettingsInput

type ChannelM2tsSettingsInput interface {
	pulumi.Input

	ToChannelM2tsSettingsOutput() ChannelM2tsSettingsOutput
	ToChannelM2tsSettingsOutputWithContext(context.Context) ChannelM2tsSettingsOutput
}

ChannelM2tsSettingsInput is an input type that accepts ChannelM2tsSettingsArgs and ChannelM2tsSettingsOutput values. You can construct a concrete instance of `ChannelM2tsSettingsInput` via:

ChannelM2tsSettingsArgs{...}

type ChannelM2tsSettingsOutput

type ChannelM2tsSettingsOutput struct{ *pulumi.OutputState }

func (ChannelM2tsSettingsOutput) AbsentInputAudioBehavior

func (o ChannelM2tsSettingsOutput) AbsentInputAudioBehavior() pulumi.StringPtrOutput

func (ChannelM2tsSettingsOutput) Arib

func (ChannelM2tsSettingsOutput) AribCaptionsPid

func (o ChannelM2tsSettingsOutput) AribCaptionsPid() pulumi.StringPtrOutput

func (ChannelM2tsSettingsOutput) AribCaptionsPidControl

func (o ChannelM2tsSettingsOutput) AribCaptionsPidControl() pulumi.StringPtrOutput

func (ChannelM2tsSettingsOutput) AudioBufferModel

func (o ChannelM2tsSettingsOutput) AudioBufferModel() pulumi.StringPtrOutput

func (ChannelM2tsSettingsOutput) AudioFramesPerPes

func (o ChannelM2tsSettingsOutput) AudioFramesPerPes() pulumi.IntPtrOutput

func (ChannelM2tsSettingsOutput) AudioPids

func (ChannelM2tsSettingsOutput) AudioStreamType

func (o ChannelM2tsSettingsOutput) AudioStreamType() pulumi.StringPtrOutput

func (ChannelM2tsSettingsOutput) Bitrate

func (ChannelM2tsSettingsOutput) BufferModel

func (ChannelM2tsSettingsOutput) CcDescriptor

func (ChannelM2tsSettingsOutput) DvbNitSettings

func (ChannelM2tsSettingsOutput) DvbSdtSettings

func (ChannelM2tsSettingsOutput) DvbSubPids

func (ChannelM2tsSettingsOutput) DvbTdtSettings

func (ChannelM2tsSettingsOutput) DvbTeletextPid

func (ChannelM2tsSettingsOutput) Ebif

func (ChannelM2tsSettingsOutput) EbpAudioInterval

func (o ChannelM2tsSettingsOutput) EbpAudioInterval() pulumi.StringPtrOutput

func (ChannelM2tsSettingsOutput) EbpLookaheadMs

func (o ChannelM2tsSettingsOutput) EbpLookaheadMs() pulumi.IntPtrOutput

func (ChannelM2tsSettingsOutput) EbpPlacement

func (ChannelM2tsSettingsOutput) EcmPid

func (ChannelM2tsSettingsOutput) ElementType

func (ChannelM2tsSettingsOutput) ElementType() reflect.Type

func (ChannelM2tsSettingsOutput) EsRateInPes

func (ChannelM2tsSettingsOutput) EtvPlatformPid

func (ChannelM2tsSettingsOutput) EtvSignalPid

func (ChannelM2tsSettingsOutput) FragmentTime

func (ChannelM2tsSettingsOutput) Klv

func (ChannelM2tsSettingsOutput) KlvDataPids

func (ChannelM2tsSettingsOutput) NielsenId3Behavior

func (o ChannelM2tsSettingsOutput) NielsenId3Behavior() pulumi.StringPtrOutput

func (ChannelM2tsSettingsOutput) NullPacketBitrate

func (o ChannelM2tsSettingsOutput) NullPacketBitrate() pulumi.Float64PtrOutput

func (ChannelM2tsSettingsOutput) PatInterval

func (ChannelM2tsSettingsOutput) PcrControl

func (ChannelM2tsSettingsOutput) PcrPeriod

func (ChannelM2tsSettingsOutput) PcrPid

func (ChannelM2tsSettingsOutput) PmtInterval

func (ChannelM2tsSettingsOutput) PmtPid

func (ChannelM2tsSettingsOutput) ProgramNum

func (ChannelM2tsSettingsOutput) RateMode

func (ChannelM2tsSettingsOutput) Scte27Pids

func (ChannelM2tsSettingsOutput) Scte35Control

func (ChannelM2tsSettingsOutput) Scte35Pid

func (ChannelM2tsSettingsOutput) Scte35PrerollPullupMilliseconds added in v0.59.0

func (o ChannelM2tsSettingsOutput) Scte35PrerollPullupMilliseconds() pulumi.Float64PtrOutput

func (ChannelM2tsSettingsOutput) SegmentationMarkers

func (o ChannelM2tsSettingsOutput) SegmentationMarkers() pulumi.StringPtrOutput

func (ChannelM2tsSettingsOutput) SegmentationStyle

func (o ChannelM2tsSettingsOutput) SegmentationStyle() pulumi.StringPtrOutput

func (ChannelM2tsSettingsOutput) SegmentationTime

func (o ChannelM2tsSettingsOutput) SegmentationTime() pulumi.Float64PtrOutput

func (ChannelM2tsSettingsOutput) TimedMetadataBehavior

func (o ChannelM2tsSettingsOutput) TimedMetadataBehavior() pulumi.StringPtrOutput

func (ChannelM2tsSettingsOutput) TimedMetadataPid

func (o ChannelM2tsSettingsOutput) TimedMetadataPid() pulumi.StringPtrOutput

func (ChannelM2tsSettingsOutput) ToChannelM2tsSettingsOutput

func (o ChannelM2tsSettingsOutput) ToChannelM2tsSettingsOutput() ChannelM2tsSettingsOutput

func (ChannelM2tsSettingsOutput) ToChannelM2tsSettingsOutputWithContext

func (o ChannelM2tsSettingsOutput) ToChannelM2tsSettingsOutputWithContext(ctx context.Context) ChannelM2tsSettingsOutput

func (ChannelM2tsSettingsOutput) ToChannelM2tsSettingsPtrOutput

func (o ChannelM2tsSettingsOutput) ToChannelM2tsSettingsPtrOutput() ChannelM2tsSettingsPtrOutput

func (ChannelM2tsSettingsOutput) ToChannelM2tsSettingsPtrOutputWithContext

func (o ChannelM2tsSettingsOutput) ToChannelM2tsSettingsPtrOutputWithContext(ctx context.Context) ChannelM2tsSettingsPtrOutput

func (ChannelM2tsSettingsOutput) ToOutput added in v0.76.0

func (ChannelM2tsSettingsOutput) TransportStreamId

func (o ChannelM2tsSettingsOutput) TransportStreamId() pulumi.IntPtrOutput

func (ChannelM2tsSettingsOutput) VideoPid

type ChannelM2tsSettingsPtrInput

type ChannelM2tsSettingsPtrInput interface {
	pulumi.Input

	ToChannelM2tsSettingsPtrOutput() ChannelM2tsSettingsPtrOutput
	ToChannelM2tsSettingsPtrOutputWithContext(context.Context) ChannelM2tsSettingsPtrOutput
}

ChannelM2tsSettingsPtrInput is an input type that accepts ChannelM2tsSettingsArgs, ChannelM2tsSettingsPtr and ChannelM2tsSettingsPtrOutput values. You can construct a concrete instance of `ChannelM2tsSettingsPtrInput` via:

        ChannelM2tsSettingsArgs{...}

or:

        nil

type ChannelM2tsSettingsPtrOutput

type ChannelM2tsSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelM2tsSettingsPtrOutput) AbsentInputAudioBehavior

func (o ChannelM2tsSettingsPtrOutput) AbsentInputAudioBehavior() pulumi.StringPtrOutput

func (ChannelM2tsSettingsPtrOutput) Arib

func (ChannelM2tsSettingsPtrOutput) AribCaptionsPid

func (ChannelM2tsSettingsPtrOutput) AribCaptionsPidControl

func (o ChannelM2tsSettingsPtrOutput) AribCaptionsPidControl() pulumi.StringPtrOutput

func (ChannelM2tsSettingsPtrOutput) AudioBufferModel

func (ChannelM2tsSettingsPtrOutput) AudioFramesPerPes

func (o ChannelM2tsSettingsPtrOutput) AudioFramesPerPes() pulumi.IntPtrOutput

func (ChannelM2tsSettingsPtrOutput) AudioPids

func (ChannelM2tsSettingsPtrOutput) AudioStreamType

func (ChannelM2tsSettingsPtrOutput) Bitrate

func (ChannelM2tsSettingsPtrOutput) BufferModel

func (ChannelM2tsSettingsPtrOutput) CcDescriptor

func (ChannelM2tsSettingsPtrOutput) DvbNitSettings

func (ChannelM2tsSettingsPtrOutput) DvbSdtSettings

func (ChannelM2tsSettingsPtrOutput) DvbSubPids

func (ChannelM2tsSettingsPtrOutput) DvbTdtSettings

func (ChannelM2tsSettingsPtrOutput) DvbTeletextPid

func (ChannelM2tsSettingsPtrOutput) Ebif

func (ChannelM2tsSettingsPtrOutput) EbpAudioInterval

func (ChannelM2tsSettingsPtrOutput) EbpLookaheadMs

func (ChannelM2tsSettingsPtrOutput) EbpPlacement

func (ChannelM2tsSettingsPtrOutput) EcmPid

func (ChannelM2tsSettingsPtrOutput) Elem

func (ChannelM2tsSettingsPtrOutput) ElementType

func (ChannelM2tsSettingsPtrOutput) EsRateInPes

func (ChannelM2tsSettingsPtrOutput) EtvPlatformPid

func (ChannelM2tsSettingsPtrOutput) EtvSignalPid

func (ChannelM2tsSettingsPtrOutput) FragmentTime

func (ChannelM2tsSettingsPtrOutput) Klv

func (ChannelM2tsSettingsPtrOutput) KlvDataPids

func (ChannelM2tsSettingsPtrOutput) NielsenId3Behavior

func (o ChannelM2tsSettingsPtrOutput) NielsenId3Behavior() pulumi.StringPtrOutput

func (ChannelM2tsSettingsPtrOutput) NullPacketBitrate

func (ChannelM2tsSettingsPtrOutput) PatInterval

func (ChannelM2tsSettingsPtrOutput) PcrControl

func (ChannelM2tsSettingsPtrOutput) PcrPeriod

func (ChannelM2tsSettingsPtrOutput) PcrPid

func (ChannelM2tsSettingsPtrOutput) PmtInterval

func (ChannelM2tsSettingsPtrOutput) PmtPid

func (ChannelM2tsSettingsPtrOutput) ProgramNum

func (ChannelM2tsSettingsPtrOutput) RateMode

func (ChannelM2tsSettingsPtrOutput) Scte27Pids

func (ChannelM2tsSettingsPtrOutput) Scte35Control

func (ChannelM2tsSettingsPtrOutput) Scte35Pid

func (ChannelM2tsSettingsPtrOutput) Scte35PrerollPullupMilliseconds added in v0.59.0

func (o ChannelM2tsSettingsPtrOutput) Scte35PrerollPullupMilliseconds() pulumi.Float64PtrOutput

func (ChannelM2tsSettingsPtrOutput) SegmentationMarkers

func (o ChannelM2tsSettingsPtrOutput) SegmentationMarkers() pulumi.StringPtrOutput

func (ChannelM2tsSettingsPtrOutput) SegmentationStyle

func (o ChannelM2tsSettingsPtrOutput) SegmentationStyle() pulumi.StringPtrOutput

func (ChannelM2tsSettingsPtrOutput) SegmentationTime

func (ChannelM2tsSettingsPtrOutput) TimedMetadataBehavior

func (o ChannelM2tsSettingsPtrOutput) TimedMetadataBehavior() pulumi.StringPtrOutput

func (ChannelM2tsSettingsPtrOutput) TimedMetadataPid

func (ChannelM2tsSettingsPtrOutput) ToChannelM2tsSettingsPtrOutput

func (o ChannelM2tsSettingsPtrOutput) ToChannelM2tsSettingsPtrOutput() ChannelM2tsSettingsPtrOutput

func (ChannelM2tsSettingsPtrOutput) ToChannelM2tsSettingsPtrOutputWithContext

func (o ChannelM2tsSettingsPtrOutput) ToChannelM2tsSettingsPtrOutputWithContext(ctx context.Context) ChannelM2tsSettingsPtrOutput

func (ChannelM2tsSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelM2tsSettingsPtrOutput) TransportStreamId

func (o ChannelM2tsSettingsPtrOutput) TransportStreamId() pulumi.IntPtrOutput

func (ChannelM2tsSettingsPtrOutput) VideoPid

type ChannelM3u8Settings

type ChannelM3u8Settings struct {
	AudioFramesPerPes     *int    `pulumi:"audioFramesPerPes"`
	AudioPids             *string `pulumi:"audioPids"`
	EcmPid                *string `pulumi:"ecmPid"`
	KlvBehavior           *string `pulumi:"klvBehavior"`
	KlvDataPids           *string `pulumi:"klvDataPids"`
	NielsenId3Behavior    *string `pulumi:"nielsenId3Behavior"`
	PatInterval           *int    `pulumi:"patInterval"`
	PcrControl            *string `pulumi:"pcrControl"`
	PcrPeriod             *int    `pulumi:"pcrPeriod"`
	PcrPid                *string `pulumi:"pcrPid"`
	PmtInterval           *int    `pulumi:"pmtInterval"`
	PmtPid                *string `pulumi:"pmtPid"`
	ProgramNum            *int    `pulumi:"programNum"`
	Scte35Behavior        *string `pulumi:"scte35Behavior"`
	Scte35Pid             *string `pulumi:"scte35Pid"`
	TimedMetadataBehavior *string `pulumi:"timedMetadataBehavior"`
	TimedMetadataPid      *string `pulumi:"timedMetadataPid"`
	TransportStreamId     *int    `pulumi:"transportStreamId"`
	VideoPid              *string `pulumi:"videoPid"`
}

type ChannelM3u8SettingsArgs

type ChannelM3u8SettingsArgs struct {
	AudioFramesPerPes     pulumi.IntPtrInput    `pulumi:"audioFramesPerPes"`
	AudioPids             pulumi.StringPtrInput `pulumi:"audioPids"`
	EcmPid                pulumi.StringPtrInput `pulumi:"ecmPid"`
	KlvBehavior           pulumi.StringPtrInput `pulumi:"klvBehavior"`
	KlvDataPids           pulumi.StringPtrInput `pulumi:"klvDataPids"`
	NielsenId3Behavior    pulumi.StringPtrInput `pulumi:"nielsenId3Behavior"`
	PatInterval           pulumi.IntPtrInput    `pulumi:"patInterval"`
	PcrControl            pulumi.StringPtrInput `pulumi:"pcrControl"`
	PcrPeriod             pulumi.IntPtrInput    `pulumi:"pcrPeriod"`
	PcrPid                pulumi.StringPtrInput `pulumi:"pcrPid"`
	PmtInterval           pulumi.IntPtrInput    `pulumi:"pmtInterval"`
	PmtPid                pulumi.StringPtrInput `pulumi:"pmtPid"`
	ProgramNum            pulumi.IntPtrInput    `pulumi:"programNum"`
	Scte35Behavior        pulumi.StringPtrInput `pulumi:"scte35Behavior"`
	Scte35Pid             pulumi.StringPtrInput `pulumi:"scte35Pid"`
	TimedMetadataBehavior pulumi.StringPtrInput `pulumi:"timedMetadataBehavior"`
	TimedMetadataPid      pulumi.StringPtrInput `pulumi:"timedMetadataPid"`
	TransportStreamId     pulumi.IntPtrInput    `pulumi:"transportStreamId"`
	VideoPid              pulumi.StringPtrInput `pulumi:"videoPid"`
}

func (ChannelM3u8SettingsArgs) ElementType

func (ChannelM3u8SettingsArgs) ElementType() reflect.Type

func (ChannelM3u8SettingsArgs) ToChannelM3u8SettingsOutput

func (i ChannelM3u8SettingsArgs) ToChannelM3u8SettingsOutput() ChannelM3u8SettingsOutput

func (ChannelM3u8SettingsArgs) ToChannelM3u8SettingsOutputWithContext

func (i ChannelM3u8SettingsArgs) ToChannelM3u8SettingsOutputWithContext(ctx context.Context) ChannelM3u8SettingsOutput

func (ChannelM3u8SettingsArgs) ToChannelM3u8SettingsPtrOutput

func (i ChannelM3u8SettingsArgs) ToChannelM3u8SettingsPtrOutput() ChannelM3u8SettingsPtrOutput

func (ChannelM3u8SettingsArgs) ToChannelM3u8SettingsPtrOutputWithContext

func (i ChannelM3u8SettingsArgs) ToChannelM3u8SettingsPtrOutputWithContext(ctx context.Context) ChannelM3u8SettingsPtrOutput

func (ChannelM3u8SettingsArgs) ToOutput added in v0.76.0

type ChannelM3u8SettingsInput

type ChannelM3u8SettingsInput interface {
	pulumi.Input

	ToChannelM3u8SettingsOutput() ChannelM3u8SettingsOutput
	ToChannelM3u8SettingsOutputWithContext(context.Context) ChannelM3u8SettingsOutput
}

ChannelM3u8SettingsInput is an input type that accepts ChannelM3u8SettingsArgs and ChannelM3u8SettingsOutput values. You can construct a concrete instance of `ChannelM3u8SettingsInput` via:

ChannelM3u8SettingsArgs{...}

type ChannelM3u8SettingsOutput

type ChannelM3u8SettingsOutput struct{ *pulumi.OutputState }

func (ChannelM3u8SettingsOutput) AudioFramesPerPes

func (o ChannelM3u8SettingsOutput) AudioFramesPerPes() pulumi.IntPtrOutput

func (ChannelM3u8SettingsOutput) AudioPids

func (ChannelM3u8SettingsOutput) EcmPid

func (ChannelM3u8SettingsOutput) ElementType

func (ChannelM3u8SettingsOutput) ElementType() reflect.Type

func (ChannelM3u8SettingsOutput) KlvBehavior added in v0.76.0

func (ChannelM3u8SettingsOutput) KlvDataPids added in v0.76.0

func (ChannelM3u8SettingsOutput) NielsenId3Behavior

func (o ChannelM3u8SettingsOutput) NielsenId3Behavior() pulumi.StringPtrOutput

func (ChannelM3u8SettingsOutput) PatInterval

func (ChannelM3u8SettingsOutput) PcrControl

func (ChannelM3u8SettingsOutput) PcrPeriod

func (ChannelM3u8SettingsOutput) PcrPid

func (ChannelM3u8SettingsOutput) PmtInterval

func (ChannelM3u8SettingsOutput) PmtPid

func (ChannelM3u8SettingsOutput) ProgramNum

func (ChannelM3u8SettingsOutput) Scte35Behavior

func (ChannelM3u8SettingsOutput) Scte35Pid

func (ChannelM3u8SettingsOutput) TimedMetadataBehavior

func (o ChannelM3u8SettingsOutput) TimedMetadataBehavior() pulumi.StringPtrOutput

func (ChannelM3u8SettingsOutput) TimedMetadataPid

func (o ChannelM3u8SettingsOutput) TimedMetadataPid() pulumi.StringPtrOutput

func (ChannelM3u8SettingsOutput) ToChannelM3u8SettingsOutput

func (o ChannelM3u8SettingsOutput) ToChannelM3u8SettingsOutput() ChannelM3u8SettingsOutput

func (ChannelM3u8SettingsOutput) ToChannelM3u8SettingsOutputWithContext

func (o ChannelM3u8SettingsOutput) ToChannelM3u8SettingsOutputWithContext(ctx context.Context) ChannelM3u8SettingsOutput

func (ChannelM3u8SettingsOutput) ToChannelM3u8SettingsPtrOutput

func (o ChannelM3u8SettingsOutput) ToChannelM3u8SettingsPtrOutput() ChannelM3u8SettingsPtrOutput

func (ChannelM3u8SettingsOutput) ToChannelM3u8SettingsPtrOutputWithContext

func (o ChannelM3u8SettingsOutput) ToChannelM3u8SettingsPtrOutputWithContext(ctx context.Context) ChannelM3u8SettingsPtrOutput

func (ChannelM3u8SettingsOutput) ToOutput added in v0.76.0

func (ChannelM3u8SettingsOutput) TransportStreamId

func (o ChannelM3u8SettingsOutput) TransportStreamId() pulumi.IntPtrOutput

func (ChannelM3u8SettingsOutput) VideoPid

type ChannelM3u8SettingsPtrInput

type ChannelM3u8SettingsPtrInput interface {
	pulumi.Input

	ToChannelM3u8SettingsPtrOutput() ChannelM3u8SettingsPtrOutput
	ToChannelM3u8SettingsPtrOutputWithContext(context.Context) ChannelM3u8SettingsPtrOutput
}

ChannelM3u8SettingsPtrInput is an input type that accepts ChannelM3u8SettingsArgs, ChannelM3u8SettingsPtr and ChannelM3u8SettingsPtrOutput values. You can construct a concrete instance of `ChannelM3u8SettingsPtrInput` via:

        ChannelM3u8SettingsArgs{...}

or:

        nil

type ChannelM3u8SettingsPtrOutput

type ChannelM3u8SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelM3u8SettingsPtrOutput) AudioFramesPerPes

func (o ChannelM3u8SettingsPtrOutput) AudioFramesPerPes() pulumi.IntPtrOutput

func (ChannelM3u8SettingsPtrOutput) AudioPids

func (ChannelM3u8SettingsPtrOutput) EcmPid

func (ChannelM3u8SettingsPtrOutput) Elem

func (ChannelM3u8SettingsPtrOutput) ElementType

func (ChannelM3u8SettingsPtrOutput) KlvBehavior added in v0.76.0

func (ChannelM3u8SettingsPtrOutput) KlvDataPids added in v0.76.0

func (ChannelM3u8SettingsPtrOutput) NielsenId3Behavior

func (o ChannelM3u8SettingsPtrOutput) NielsenId3Behavior() pulumi.StringPtrOutput

func (ChannelM3u8SettingsPtrOutput) PatInterval

func (ChannelM3u8SettingsPtrOutput) PcrControl

func (ChannelM3u8SettingsPtrOutput) PcrPeriod

func (ChannelM3u8SettingsPtrOutput) PcrPid

func (ChannelM3u8SettingsPtrOutput) PmtInterval

func (ChannelM3u8SettingsPtrOutput) PmtPid

func (ChannelM3u8SettingsPtrOutput) ProgramNum

func (ChannelM3u8SettingsPtrOutput) Scte35Behavior

func (ChannelM3u8SettingsPtrOutput) Scte35Pid

func (ChannelM3u8SettingsPtrOutput) TimedMetadataBehavior

func (o ChannelM3u8SettingsPtrOutput) TimedMetadataBehavior() pulumi.StringPtrOutput

func (ChannelM3u8SettingsPtrOutput) TimedMetadataPid

func (ChannelM3u8SettingsPtrOutput) ToChannelM3u8SettingsPtrOutput

func (o ChannelM3u8SettingsPtrOutput) ToChannelM3u8SettingsPtrOutput() ChannelM3u8SettingsPtrOutput

func (ChannelM3u8SettingsPtrOutput) ToChannelM3u8SettingsPtrOutputWithContext

func (o ChannelM3u8SettingsPtrOutput) ToChannelM3u8SettingsPtrOutputWithContext(ctx context.Context) ChannelM3u8SettingsPtrOutput

func (ChannelM3u8SettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelM3u8SettingsPtrOutput) TransportStreamId

func (o ChannelM3u8SettingsPtrOutput) TransportStreamId() pulumi.IntPtrOutput

func (ChannelM3u8SettingsPtrOutput) VideoPid

type ChannelMaintenanceCreateSettings added in v0.59.0

type ChannelMaintenanceCreateSettings struct {
	MaintenanceDay       *string `pulumi:"maintenanceDay"`
	MaintenanceStartTime *string `pulumi:"maintenanceStartTime"`
}

type ChannelMaintenanceCreateSettingsArgs added in v0.59.0

type ChannelMaintenanceCreateSettingsArgs struct {
	MaintenanceDay       pulumi.StringPtrInput `pulumi:"maintenanceDay"`
	MaintenanceStartTime pulumi.StringPtrInput `pulumi:"maintenanceStartTime"`
}

func (ChannelMaintenanceCreateSettingsArgs) ElementType added in v0.59.0

func (ChannelMaintenanceCreateSettingsArgs) ToChannelMaintenanceCreateSettingsOutput added in v0.59.0

func (i ChannelMaintenanceCreateSettingsArgs) ToChannelMaintenanceCreateSettingsOutput() ChannelMaintenanceCreateSettingsOutput

func (ChannelMaintenanceCreateSettingsArgs) ToChannelMaintenanceCreateSettingsOutputWithContext added in v0.59.0

func (i ChannelMaintenanceCreateSettingsArgs) ToChannelMaintenanceCreateSettingsOutputWithContext(ctx context.Context) ChannelMaintenanceCreateSettingsOutput

func (ChannelMaintenanceCreateSettingsArgs) ToChannelMaintenanceCreateSettingsPtrOutput added in v0.59.0

func (i ChannelMaintenanceCreateSettingsArgs) ToChannelMaintenanceCreateSettingsPtrOutput() ChannelMaintenanceCreateSettingsPtrOutput

func (ChannelMaintenanceCreateSettingsArgs) ToChannelMaintenanceCreateSettingsPtrOutputWithContext added in v0.59.0

func (i ChannelMaintenanceCreateSettingsArgs) ToChannelMaintenanceCreateSettingsPtrOutputWithContext(ctx context.Context) ChannelMaintenanceCreateSettingsPtrOutput

func (ChannelMaintenanceCreateSettingsArgs) ToOutput added in v0.76.0

type ChannelMaintenanceCreateSettingsInput added in v0.59.0

type ChannelMaintenanceCreateSettingsInput interface {
	pulumi.Input

	ToChannelMaintenanceCreateSettingsOutput() ChannelMaintenanceCreateSettingsOutput
	ToChannelMaintenanceCreateSettingsOutputWithContext(context.Context) ChannelMaintenanceCreateSettingsOutput
}

ChannelMaintenanceCreateSettingsInput is an input type that accepts ChannelMaintenanceCreateSettingsArgs and ChannelMaintenanceCreateSettingsOutput values. You can construct a concrete instance of `ChannelMaintenanceCreateSettingsInput` via:

ChannelMaintenanceCreateSettingsArgs{...}

type ChannelMaintenanceCreateSettingsOutput added in v0.59.0

type ChannelMaintenanceCreateSettingsOutput struct{ *pulumi.OutputState }

func (ChannelMaintenanceCreateSettingsOutput) ElementType added in v0.59.0

func (ChannelMaintenanceCreateSettingsOutput) MaintenanceDay added in v0.59.0

func (ChannelMaintenanceCreateSettingsOutput) MaintenanceStartTime added in v0.59.0

func (ChannelMaintenanceCreateSettingsOutput) ToChannelMaintenanceCreateSettingsOutput added in v0.59.0

func (o ChannelMaintenanceCreateSettingsOutput) ToChannelMaintenanceCreateSettingsOutput() ChannelMaintenanceCreateSettingsOutput

func (ChannelMaintenanceCreateSettingsOutput) ToChannelMaintenanceCreateSettingsOutputWithContext added in v0.59.0

func (o ChannelMaintenanceCreateSettingsOutput) ToChannelMaintenanceCreateSettingsOutputWithContext(ctx context.Context) ChannelMaintenanceCreateSettingsOutput

func (ChannelMaintenanceCreateSettingsOutput) ToChannelMaintenanceCreateSettingsPtrOutput added in v0.59.0

func (o ChannelMaintenanceCreateSettingsOutput) ToChannelMaintenanceCreateSettingsPtrOutput() ChannelMaintenanceCreateSettingsPtrOutput

func (ChannelMaintenanceCreateSettingsOutput) ToChannelMaintenanceCreateSettingsPtrOutputWithContext added in v0.59.0

func (o ChannelMaintenanceCreateSettingsOutput) ToChannelMaintenanceCreateSettingsPtrOutputWithContext(ctx context.Context) ChannelMaintenanceCreateSettingsPtrOutput

func (ChannelMaintenanceCreateSettingsOutput) ToOutput added in v0.76.0

type ChannelMaintenanceCreateSettingsPtrInput added in v0.59.0

type ChannelMaintenanceCreateSettingsPtrInput interface {
	pulumi.Input

	ToChannelMaintenanceCreateSettingsPtrOutput() ChannelMaintenanceCreateSettingsPtrOutput
	ToChannelMaintenanceCreateSettingsPtrOutputWithContext(context.Context) ChannelMaintenanceCreateSettingsPtrOutput
}

ChannelMaintenanceCreateSettingsPtrInput is an input type that accepts ChannelMaintenanceCreateSettingsArgs, ChannelMaintenanceCreateSettingsPtr and ChannelMaintenanceCreateSettingsPtrOutput values. You can construct a concrete instance of `ChannelMaintenanceCreateSettingsPtrInput` via:

        ChannelMaintenanceCreateSettingsArgs{...}

or:

        nil

type ChannelMaintenanceCreateSettingsPtrOutput added in v0.59.0

type ChannelMaintenanceCreateSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelMaintenanceCreateSettingsPtrOutput) Elem added in v0.59.0

func (ChannelMaintenanceCreateSettingsPtrOutput) ElementType added in v0.59.0

func (ChannelMaintenanceCreateSettingsPtrOutput) MaintenanceDay added in v0.59.0

func (ChannelMaintenanceCreateSettingsPtrOutput) MaintenanceStartTime added in v0.59.0

func (ChannelMaintenanceCreateSettingsPtrOutput) ToChannelMaintenanceCreateSettingsPtrOutput added in v0.59.0

func (o ChannelMaintenanceCreateSettingsPtrOutput) ToChannelMaintenanceCreateSettingsPtrOutput() ChannelMaintenanceCreateSettingsPtrOutput

func (ChannelMaintenanceCreateSettingsPtrOutput) ToChannelMaintenanceCreateSettingsPtrOutputWithContext added in v0.59.0

func (o ChannelMaintenanceCreateSettingsPtrOutput) ToChannelMaintenanceCreateSettingsPtrOutputWithContext(ctx context.Context) ChannelMaintenanceCreateSettingsPtrOutput

func (ChannelMaintenanceCreateSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelMediaPackageGroupSettings

type ChannelMediaPackageGroupSettings struct {
	Destination *ChannelOutputLocationRef `pulumi:"destination"`
}

type ChannelMediaPackageGroupSettingsArgs

type ChannelMediaPackageGroupSettingsArgs struct {
	Destination ChannelOutputLocationRefPtrInput `pulumi:"destination"`
}

func (ChannelMediaPackageGroupSettingsArgs) ElementType

func (ChannelMediaPackageGroupSettingsArgs) ToChannelMediaPackageGroupSettingsOutput

func (i ChannelMediaPackageGroupSettingsArgs) ToChannelMediaPackageGroupSettingsOutput() ChannelMediaPackageGroupSettingsOutput

func (ChannelMediaPackageGroupSettingsArgs) ToChannelMediaPackageGroupSettingsOutputWithContext

func (i ChannelMediaPackageGroupSettingsArgs) ToChannelMediaPackageGroupSettingsOutputWithContext(ctx context.Context) ChannelMediaPackageGroupSettingsOutput

func (ChannelMediaPackageGroupSettingsArgs) ToChannelMediaPackageGroupSettingsPtrOutput

func (i ChannelMediaPackageGroupSettingsArgs) ToChannelMediaPackageGroupSettingsPtrOutput() ChannelMediaPackageGroupSettingsPtrOutput

func (ChannelMediaPackageGroupSettingsArgs) ToChannelMediaPackageGroupSettingsPtrOutputWithContext

func (i ChannelMediaPackageGroupSettingsArgs) ToChannelMediaPackageGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelMediaPackageGroupSettingsPtrOutput

func (ChannelMediaPackageGroupSettingsArgs) ToOutput added in v0.76.0

type ChannelMediaPackageGroupSettingsInput

type ChannelMediaPackageGroupSettingsInput interface {
	pulumi.Input

	ToChannelMediaPackageGroupSettingsOutput() ChannelMediaPackageGroupSettingsOutput
	ToChannelMediaPackageGroupSettingsOutputWithContext(context.Context) ChannelMediaPackageGroupSettingsOutput
}

ChannelMediaPackageGroupSettingsInput is an input type that accepts ChannelMediaPackageGroupSettingsArgs and ChannelMediaPackageGroupSettingsOutput values. You can construct a concrete instance of `ChannelMediaPackageGroupSettingsInput` via:

ChannelMediaPackageGroupSettingsArgs{...}

type ChannelMediaPackageGroupSettingsOutput

type ChannelMediaPackageGroupSettingsOutput struct{ *pulumi.OutputState }

func (ChannelMediaPackageGroupSettingsOutput) Destination

func (ChannelMediaPackageGroupSettingsOutput) ElementType

func (ChannelMediaPackageGroupSettingsOutput) ToChannelMediaPackageGroupSettingsOutput

func (o ChannelMediaPackageGroupSettingsOutput) ToChannelMediaPackageGroupSettingsOutput() ChannelMediaPackageGroupSettingsOutput

func (ChannelMediaPackageGroupSettingsOutput) ToChannelMediaPackageGroupSettingsOutputWithContext

func (o ChannelMediaPackageGroupSettingsOutput) ToChannelMediaPackageGroupSettingsOutputWithContext(ctx context.Context) ChannelMediaPackageGroupSettingsOutput

func (ChannelMediaPackageGroupSettingsOutput) ToChannelMediaPackageGroupSettingsPtrOutput

func (o ChannelMediaPackageGroupSettingsOutput) ToChannelMediaPackageGroupSettingsPtrOutput() ChannelMediaPackageGroupSettingsPtrOutput

func (ChannelMediaPackageGroupSettingsOutput) ToChannelMediaPackageGroupSettingsPtrOutputWithContext

func (o ChannelMediaPackageGroupSettingsOutput) ToChannelMediaPackageGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelMediaPackageGroupSettingsPtrOutput

func (ChannelMediaPackageGroupSettingsOutput) ToOutput added in v0.76.0

type ChannelMediaPackageGroupSettingsPtrInput

type ChannelMediaPackageGroupSettingsPtrInput interface {
	pulumi.Input

	ToChannelMediaPackageGroupSettingsPtrOutput() ChannelMediaPackageGroupSettingsPtrOutput
	ToChannelMediaPackageGroupSettingsPtrOutputWithContext(context.Context) ChannelMediaPackageGroupSettingsPtrOutput
}

ChannelMediaPackageGroupSettingsPtrInput is an input type that accepts ChannelMediaPackageGroupSettingsArgs, ChannelMediaPackageGroupSettingsPtr and ChannelMediaPackageGroupSettingsPtrOutput values. You can construct a concrete instance of `ChannelMediaPackageGroupSettingsPtrInput` via:

        ChannelMediaPackageGroupSettingsArgs{...}

or:

        nil

type ChannelMediaPackageGroupSettingsPtrOutput

type ChannelMediaPackageGroupSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelMediaPackageGroupSettingsPtrOutput) Destination

func (ChannelMediaPackageGroupSettingsPtrOutput) Elem

func (ChannelMediaPackageGroupSettingsPtrOutput) ElementType

func (ChannelMediaPackageGroupSettingsPtrOutput) ToChannelMediaPackageGroupSettingsPtrOutput

func (o ChannelMediaPackageGroupSettingsPtrOutput) ToChannelMediaPackageGroupSettingsPtrOutput() ChannelMediaPackageGroupSettingsPtrOutput

func (ChannelMediaPackageGroupSettingsPtrOutput) ToChannelMediaPackageGroupSettingsPtrOutputWithContext

func (o ChannelMediaPackageGroupSettingsPtrOutput) ToChannelMediaPackageGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelMediaPackageGroupSettingsPtrOutput

func (ChannelMediaPackageGroupSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelMediaPackageOutputDestinationSettings

type ChannelMediaPackageOutputDestinationSettings struct {
	ChannelId *string `pulumi:"channelId"`
}

type ChannelMediaPackageOutputDestinationSettingsArgs

type ChannelMediaPackageOutputDestinationSettingsArgs struct {
	ChannelId pulumi.StringPtrInput `pulumi:"channelId"`
}

func (ChannelMediaPackageOutputDestinationSettingsArgs) ElementType

func (ChannelMediaPackageOutputDestinationSettingsArgs) ToChannelMediaPackageOutputDestinationSettingsOutput

func (i ChannelMediaPackageOutputDestinationSettingsArgs) ToChannelMediaPackageOutputDestinationSettingsOutput() ChannelMediaPackageOutputDestinationSettingsOutput

func (ChannelMediaPackageOutputDestinationSettingsArgs) ToChannelMediaPackageOutputDestinationSettingsOutputWithContext

func (i ChannelMediaPackageOutputDestinationSettingsArgs) ToChannelMediaPackageOutputDestinationSettingsOutputWithContext(ctx context.Context) ChannelMediaPackageOutputDestinationSettingsOutput

func (ChannelMediaPackageOutputDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelMediaPackageOutputDestinationSettingsArray

type ChannelMediaPackageOutputDestinationSettingsArray []ChannelMediaPackageOutputDestinationSettingsInput

func (ChannelMediaPackageOutputDestinationSettingsArray) ElementType

func (ChannelMediaPackageOutputDestinationSettingsArray) ToChannelMediaPackageOutputDestinationSettingsArrayOutput

func (i ChannelMediaPackageOutputDestinationSettingsArray) ToChannelMediaPackageOutputDestinationSettingsArrayOutput() ChannelMediaPackageOutputDestinationSettingsArrayOutput

func (ChannelMediaPackageOutputDestinationSettingsArray) ToChannelMediaPackageOutputDestinationSettingsArrayOutputWithContext

func (i ChannelMediaPackageOutputDestinationSettingsArray) ToChannelMediaPackageOutputDestinationSettingsArrayOutputWithContext(ctx context.Context) ChannelMediaPackageOutputDestinationSettingsArrayOutput

func (ChannelMediaPackageOutputDestinationSettingsArray) ToOutput added in v0.76.0

type ChannelMediaPackageOutputDestinationSettingsArrayInput

type ChannelMediaPackageOutputDestinationSettingsArrayInput interface {
	pulumi.Input

	ToChannelMediaPackageOutputDestinationSettingsArrayOutput() ChannelMediaPackageOutputDestinationSettingsArrayOutput
	ToChannelMediaPackageOutputDestinationSettingsArrayOutputWithContext(context.Context) ChannelMediaPackageOutputDestinationSettingsArrayOutput
}

ChannelMediaPackageOutputDestinationSettingsArrayInput is an input type that accepts ChannelMediaPackageOutputDestinationSettingsArray and ChannelMediaPackageOutputDestinationSettingsArrayOutput values. You can construct a concrete instance of `ChannelMediaPackageOutputDestinationSettingsArrayInput` via:

ChannelMediaPackageOutputDestinationSettingsArray{ ChannelMediaPackageOutputDestinationSettingsArgs{...} }

type ChannelMediaPackageOutputDestinationSettingsArrayOutput

type ChannelMediaPackageOutputDestinationSettingsArrayOutput struct{ *pulumi.OutputState }

func (ChannelMediaPackageOutputDestinationSettingsArrayOutput) ElementType

func (ChannelMediaPackageOutputDestinationSettingsArrayOutput) Index

func (ChannelMediaPackageOutputDestinationSettingsArrayOutput) ToChannelMediaPackageOutputDestinationSettingsArrayOutput

func (ChannelMediaPackageOutputDestinationSettingsArrayOutput) ToChannelMediaPackageOutputDestinationSettingsArrayOutputWithContext

func (o ChannelMediaPackageOutputDestinationSettingsArrayOutput) ToChannelMediaPackageOutputDestinationSettingsArrayOutputWithContext(ctx context.Context) ChannelMediaPackageOutputDestinationSettingsArrayOutput

func (ChannelMediaPackageOutputDestinationSettingsArrayOutput) ToOutput added in v0.76.0

type ChannelMediaPackageOutputDestinationSettingsInput

type ChannelMediaPackageOutputDestinationSettingsInput interface {
	pulumi.Input

	ToChannelMediaPackageOutputDestinationSettingsOutput() ChannelMediaPackageOutputDestinationSettingsOutput
	ToChannelMediaPackageOutputDestinationSettingsOutputWithContext(context.Context) ChannelMediaPackageOutputDestinationSettingsOutput
}

ChannelMediaPackageOutputDestinationSettingsInput is an input type that accepts ChannelMediaPackageOutputDestinationSettingsArgs and ChannelMediaPackageOutputDestinationSettingsOutput values. You can construct a concrete instance of `ChannelMediaPackageOutputDestinationSettingsInput` via:

ChannelMediaPackageOutputDestinationSettingsArgs{...}

type ChannelMediaPackageOutputDestinationSettingsOutput

type ChannelMediaPackageOutputDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelMediaPackageOutputDestinationSettingsOutput) ChannelId

func (ChannelMediaPackageOutputDestinationSettingsOutput) ElementType

func (ChannelMediaPackageOutputDestinationSettingsOutput) ToChannelMediaPackageOutputDestinationSettingsOutput

func (o ChannelMediaPackageOutputDestinationSettingsOutput) ToChannelMediaPackageOutputDestinationSettingsOutput() ChannelMediaPackageOutputDestinationSettingsOutput

func (ChannelMediaPackageOutputDestinationSettingsOutput) ToChannelMediaPackageOutputDestinationSettingsOutputWithContext

func (o ChannelMediaPackageOutputDestinationSettingsOutput) ToChannelMediaPackageOutputDestinationSettingsOutputWithContext(ctx context.Context) ChannelMediaPackageOutputDestinationSettingsOutput

func (ChannelMediaPackageOutputDestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelMediaPackageOutputSettings

type ChannelMediaPackageOutputSettings struct {
}

type ChannelMediaPackageOutputSettingsArgs

type ChannelMediaPackageOutputSettingsArgs struct {
}

func (ChannelMediaPackageOutputSettingsArgs) ElementType

func (ChannelMediaPackageOutputSettingsArgs) ToChannelMediaPackageOutputSettingsOutput

func (i ChannelMediaPackageOutputSettingsArgs) ToChannelMediaPackageOutputSettingsOutput() ChannelMediaPackageOutputSettingsOutput

func (ChannelMediaPackageOutputSettingsArgs) ToChannelMediaPackageOutputSettingsOutputWithContext

func (i ChannelMediaPackageOutputSettingsArgs) ToChannelMediaPackageOutputSettingsOutputWithContext(ctx context.Context) ChannelMediaPackageOutputSettingsOutput

func (ChannelMediaPackageOutputSettingsArgs) ToChannelMediaPackageOutputSettingsPtrOutput

func (i ChannelMediaPackageOutputSettingsArgs) ToChannelMediaPackageOutputSettingsPtrOutput() ChannelMediaPackageOutputSettingsPtrOutput

func (ChannelMediaPackageOutputSettingsArgs) ToChannelMediaPackageOutputSettingsPtrOutputWithContext

func (i ChannelMediaPackageOutputSettingsArgs) ToChannelMediaPackageOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelMediaPackageOutputSettingsPtrOutput

func (ChannelMediaPackageOutputSettingsArgs) ToOutput added in v0.76.0

type ChannelMediaPackageOutputSettingsInput

type ChannelMediaPackageOutputSettingsInput interface {
	pulumi.Input

	ToChannelMediaPackageOutputSettingsOutput() ChannelMediaPackageOutputSettingsOutput
	ToChannelMediaPackageOutputSettingsOutputWithContext(context.Context) ChannelMediaPackageOutputSettingsOutput
}

ChannelMediaPackageOutputSettingsInput is an input type that accepts ChannelMediaPackageOutputSettingsArgs and ChannelMediaPackageOutputSettingsOutput values. You can construct a concrete instance of `ChannelMediaPackageOutputSettingsInput` via:

ChannelMediaPackageOutputSettingsArgs{...}

type ChannelMediaPackageOutputSettingsOutput

type ChannelMediaPackageOutputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelMediaPackageOutputSettingsOutput) ElementType

func (ChannelMediaPackageOutputSettingsOutput) ToChannelMediaPackageOutputSettingsOutput

func (o ChannelMediaPackageOutputSettingsOutput) ToChannelMediaPackageOutputSettingsOutput() ChannelMediaPackageOutputSettingsOutput

func (ChannelMediaPackageOutputSettingsOutput) ToChannelMediaPackageOutputSettingsOutputWithContext

func (o ChannelMediaPackageOutputSettingsOutput) ToChannelMediaPackageOutputSettingsOutputWithContext(ctx context.Context) ChannelMediaPackageOutputSettingsOutput

func (ChannelMediaPackageOutputSettingsOutput) ToChannelMediaPackageOutputSettingsPtrOutput

func (o ChannelMediaPackageOutputSettingsOutput) ToChannelMediaPackageOutputSettingsPtrOutput() ChannelMediaPackageOutputSettingsPtrOutput

func (ChannelMediaPackageOutputSettingsOutput) ToChannelMediaPackageOutputSettingsPtrOutputWithContext

func (o ChannelMediaPackageOutputSettingsOutput) ToChannelMediaPackageOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelMediaPackageOutputSettingsPtrOutput

func (ChannelMediaPackageOutputSettingsOutput) ToOutput added in v0.76.0

type ChannelMediaPackageOutputSettingsPtrInput

type ChannelMediaPackageOutputSettingsPtrInput interface {
	pulumi.Input

	ToChannelMediaPackageOutputSettingsPtrOutput() ChannelMediaPackageOutputSettingsPtrOutput
	ToChannelMediaPackageOutputSettingsPtrOutputWithContext(context.Context) ChannelMediaPackageOutputSettingsPtrOutput
}

ChannelMediaPackageOutputSettingsPtrInput is an input type that accepts ChannelMediaPackageOutputSettingsArgs, ChannelMediaPackageOutputSettingsPtr and ChannelMediaPackageOutputSettingsPtrOutput values. You can construct a concrete instance of `ChannelMediaPackageOutputSettingsPtrInput` via:

        ChannelMediaPackageOutputSettingsArgs{...}

or:

        nil

type ChannelMediaPackageOutputSettingsPtrOutput

type ChannelMediaPackageOutputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelMediaPackageOutputSettingsPtrOutput) Elem

func (ChannelMediaPackageOutputSettingsPtrOutput) ElementType

func (ChannelMediaPackageOutputSettingsPtrOutput) ToChannelMediaPackageOutputSettingsPtrOutput

func (o ChannelMediaPackageOutputSettingsPtrOutput) ToChannelMediaPackageOutputSettingsPtrOutput() ChannelMediaPackageOutputSettingsPtrOutput

func (ChannelMediaPackageOutputSettingsPtrOutput) ToChannelMediaPackageOutputSettingsPtrOutputWithContext

func (o ChannelMediaPackageOutputSettingsPtrOutput) ToChannelMediaPackageOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelMediaPackageOutputSettingsPtrOutput

func (ChannelMediaPackageOutputSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelMotionGraphicsConfiguration

type ChannelMotionGraphicsConfiguration struct {
	MotionGraphicsInsertion *string                        `pulumi:"motionGraphicsInsertion"`
	MotionGraphicsSettings  *ChannelMotionGraphicsSettings `pulumi:"motionGraphicsSettings"`
}

type ChannelMotionGraphicsConfigurationArgs

type ChannelMotionGraphicsConfigurationArgs struct {
	MotionGraphicsInsertion pulumi.StringPtrInput                 `pulumi:"motionGraphicsInsertion"`
	MotionGraphicsSettings  ChannelMotionGraphicsSettingsPtrInput `pulumi:"motionGraphicsSettings"`
}

func (ChannelMotionGraphicsConfigurationArgs) ElementType

func (ChannelMotionGraphicsConfigurationArgs) ToChannelMotionGraphicsConfigurationOutput

func (i ChannelMotionGraphicsConfigurationArgs) ToChannelMotionGraphicsConfigurationOutput() ChannelMotionGraphicsConfigurationOutput

func (ChannelMotionGraphicsConfigurationArgs) ToChannelMotionGraphicsConfigurationOutputWithContext

func (i ChannelMotionGraphicsConfigurationArgs) ToChannelMotionGraphicsConfigurationOutputWithContext(ctx context.Context) ChannelMotionGraphicsConfigurationOutput

func (ChannelMotionGraphicsConfigurationArgs) ToChannelMotionGraphicsConfigurationPtrOutput

func (i ChannelMotionGraphicsConfigurationArgs) ToChannelMotionGraphicsConfigurationPtrOutput() ChannelMotionGraphicsConfigurationPtrOutput

func (ChannelMotionGraphicsConfigurationArgs) ToChannelMotionGraphicsConfigurationPtrOutputWithContext

func (i ChannelMotionGraphicsConfigurationArgs) ToChannelMotionGraphicsConfigurationPtrOutputWithContext(ctx context.Context) ChannelMotionGraphicsConfigurationPtrOutput

func (ChannelMotionGraphicsConfigurationArgs) ToOutput added in v0.76.0

type ChannelMotionGraphicsConfigurationInput

type ChannelMotionGraphicsConfigurationInput interface {
	pulumi.Input

	ToChannelMotionGraphicsConfigurationOutput() ChannelMotionGraphicsConfigurationOutput
	ToChannelMotionGraphicsConfigurationOutputWithContext(context.Context) ChannelMotionGraphicsConfigurationOutput
}

ChannelMotionGraphicsConfigurationInput is an input type that accepts ChannelMotionGraphicsConfigurationArgs and ChannelMotionGraphicsConfigurationOutput values. You can construct a concrete instance of `ChannelMotionGraphicsConfigurationInput` via:

ChannelMotionGraphicsConfigurationArgs{...}

type ChannelMotionGraphicsConfigurationOutput

type ChannelMotionGraphicsConfigurationOutput struct{ *pulumi.OutputState }

func (ChannelMotionGraphicsConfigurationOutput) ElementType

func (ChannelMotionGraphicsConfigurationOutput) MotionGraphicsInsertion

func (ChannelMotionGraphicsConfigurationOutput) MotionGraphicsSettings

func (ChannelMotionGraphicsConfigurationOutput) ToChannelMotionGraphicsConfigurationOutput

func (o ChannelMotionGraphicsConfigurationOutput) ToChannelMotionGraphicsConfigurationOutput() ChannelMotionGraphicsConfigurationOutput

func (ChannelMotionGraphicsConfigurationOutput) ToChannelMotionGraphicsConfigurationOutputWithContext

func (o ChannelMotionGraphicsConfigurationOutput) ToChannelMotionGraphicsConfigurationOutputWithContext(ctx context.Context) ChannelMotionGraphicsConfigurationOutput

func (ChannelMotionGraphicsConfigurationOutput) ToChannelMotionGraphicsConfigurationPtrOutput

func (o ChannelMotionGraphicsConfigurationOutput) ToChannelMotionGraphicsConfigurationPtrOutput() ChannelMotionGraphicsConfigurationPtrOutput

func (ChannelMotionGraphicsConfigurationOutput) ToChannelMotionGraphicsConfigurationPtrOutputWithContext

func (o ChannelMotionGraphicsConfigurationOutput) ToChannelMotionGraphicsConfigurationPtrOutputWithContext(ctx context.Context) ChannelMotionGraphicsConfigurationPtrOutput

func (ChannelMotionGraphicsConfigurationOutput) ToOutput added in v0.76.0

type ChannelMotionGraphicsConfigurationPtrInput

type ChannelMotionGraphicsConfigurationPtrInput interface {
	pulumi.Input

	ToChannelMotionGraphicsConfigurationPtrOutput() ChannelMotionGraphicsConfigurationPtrOutput
	ToChannelMotionGraphicsConfigurationPtrOutputWithContext(context.Context) ChannelMotionGraphicsConfigurationPtrOutput
}

ChannelMotionGraphicsConfigurationPtrInput is an input type that accepts ChannelMotionGraphicsConfigurationArgs, ChannelMotionGraphicsConfigurationPtr and ChannelMotionGraphicsConfigurationPtrOutput values. You can construct a concrete instance of `ChannelMotionGraphicsConfigurationPtrInput` via:

        ChannelMotionGraphicsConfigurationArgs{...}

or:

        nil

type ChannelMotionGraphicsConfigurationPtrOutput

type ChannelMotionGraphicsConfigurationPtrOutput struct{ *pulumi.OutputState }

func (ChannelMotionGraphicsConfigurationPtrOutput) Elem

func (ChannelMotionGraphicsConfigurationPtrOutput) ElementType

func (ChannelMotionGraphicsConfigurationPtrOutput) MotionGraphicsInsertion

func (ChannelMotionGraphicsConfigurationPtrOutput) MotionGraphicsSettings

func (ChannelMotionGraphicsConfigurationPtrOutput) ToChannelMotionGraphicsConfigurationPtrOutput

func (o ChannelMotionGraphicsConfigurationPtrOutput) ToChannelMotionGraphicsConfigurationPtrOutput() ChannelMotionGraphicsConfigurationPtrOutput

func (ChannelMotionGraphicsConfigurationPtrOutput) ToChannelMotionGraphicsConfigurationPtrOutputWithContext

func (o ChannelMotionGraphicsConfigurationPtrOutput) ToChannelMotionGraphicsConfigurationPtrOutputWithContext(ctx context.Context) ChannelMotionGraphicsConfigurationPtrOutput

func (ChannelMotionGraphicsConfigurationPtrOutput) ToOutput added in v0.76.0

type ChannelMotionGraphicsSettings

type ChannelMotionGraphicsSettings struct {
	HtmlMotionGraphicsSettings *ChannelHtmlMotionGraphicsSettings `pulumi:"htmlMotionGraphicsSettings"`
}

type ChannelMotionGraphicsSettingsArgs

type ChannelMotionGraphicsSettingsArgs struct {
	HtmlMotionGraphicsSettings ChannelHtmlMotionGraphicsSettingsPtrInput `pulumi:"htmlMotionGraphicsSettings"`
}

func (ChannelMotionGraphicsSettingsArgs) ElementType

func (ChannelMotionGraphicsSettingsArgs) ToChannelMotionGraphicsSettingsOutput

func (i ChannelMotionGraphicsSettingsArgs) ToChannelMotionGraphicsSettingsOutput() ChannelMotionGraphicsSettingsOutput

func (ChannelMotionGraphicsSettingsArgs) ToChannelMotionGraphicsSettingsOutputWithContext

func (i ChannelMotionGraphicsSettingsArgs) ToChannelMotionGraphicsSettingsOutputWithContext(ctx context.Context) ChannelMotionGraphicsSettingsOutput

func (ChannelMotionGraphicsSettingsArgs) ToChannelMotionGraphicsSettingsPtrOutput

func (i ChannelMotionGraphicsSettingsArgs) ToChannelMotionGraphicsSettingsPtrOutput() ChannelMotionGraphicsSettingsPtrOutput

func (ChannelMotionGraphicsSettingsArgs) ToChannelMotionGraphicsSettingsPtrOutputWithContext

func (i ChannelMotionGraphicsSettingsArgs) ToChannelMotionGraphicsSettingsPtrOutputWithContext(ctx context.Context) ChannelMotionGraphicsSettingsPtrOutput

func (ChannelMotionGraphicsSettingsArgs) ToOutput added in v0.76.0

type ChannelMotionGraphicsSettingsInput

type ChannelMotionGraphicsSettingsInput interface {
	pulumi.Input

	ToChannelMotionGraphicsSettingsOutput() ChannelMotionGraphicsSettingsOutput
	ToChannelMotionGraphicsSettingsOutputWithContext(context.Context) ChannelMotionGraphicsSettingsOutput
}

ChannelMotionGraphicsSettingsInput is an input type that accepts ChannelMotionGraphicsSettingsArgs and ChannelMotionGraphicsSettingsOutput values. You can construct a concrete instance of `ChannelMotionGraphicsSettingsInput` via:

ChannelMotionGraphicsSettingsArgs{...}

type ChannelMotionGraphicsSettingsOutput

type ChannelMotionGraphicsSettingsOutput struct{ *pulumi.OutputState }

func (ChannelMotionGraphicsSettingsOutput) ElementType

func (ChannelMotionGraphicsSettingsOutput) HtmlMotionGraphicsSettings

func (ChannelMotionGraphicsSettingsOutput) ToChannelMotionGraphicsSettingsOutput

func (o ChannelMotionGraphicsSettingsOutput) ToChannelMotionGraphicsSettingsOutput() ChannelMotionGraphicsSettingsOutput

func (ChannelMotionGraphicsSettingsOutput) ToChannelMotionGraphicsSettingsOutputWithContext

func (o ChannelMotionGraphicsSettingsOutput) ToChannelMotionGraphicsSettingsOutputWithContext(ctx context.Context) ChannelMotionGraphicsSettingsOutput

func (ChannelMotionGraphicsSettingsOutput) ToChannelMotionGraphicsSettingsPtrOutput

func (o ChannelMotionGraphicsSettingsOutput) ToChannelMotionGraphicsSettingsPtrOutput() ChannelMotionGraphicsSettingsPtrOutput

func (ChannelMotionGraphicsSettingsOutput) ToChannelMotionGraphicsSettingsPtrOutputWithContext

func (o ChannelMotionGraphicsSettingsOutput) ToChannelMotionGraphicsSettingsPtrOutputWithContext(ctx context.Context) ChannelMotionGraphicsSettingsPtrOutput

func (ChannelMotionGraphicsSettingsOutput) ToOutput added in v0.76.0

type ChannelMotionGraphicsSettingsPtrInput

type ChannelMotionGraphicsSettingsPtrInput interface {
	pulumi.Input

	ToChannelMotionGraphicsSettingsPtrOutput() ChannelMotionGraphicsSettingsPtrOutput
	ToChannelMotionGraphicsSettingsPtrOutputWithContext(context.Context) ChannelMotionGraphicsSettingsPtrOutput
}

ChannelMotionGraphicsSettingsPtrInput is an input type that accepts ChannelMotionGraphicsSettingsArgs, ChannelMotionGraphicsSettingsPtr and ChannelMotionGraphicsSettingsPtrOutput values. You can construct a concrete instance of `ChannelMotionGraphicsSettingsPtrInput` via:

        ChannelMotionGraphicsSettingsArgs{...}

or:

        nil

type ChannelMotionGraphicsSettingsPtrOutput

type ChannelMotionGraphicsSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelMotionGraphicsSettingsPtrOutput) Elem

func (ChannelMotionGraphicsSettingsPtrOutput) ElementType

func (ChannelMotionGraphicsSettingsPtrOutput) HtmlMotionGraphicsSettings

func (ChannelMotionGraphicsSettingsPtrOutput) ToChannelMotionGraphicsSettingsPtrOutput

func (o ChannelMotionGraphicsSettingsPtrOutput) ToChannelMotionGraphicsSettingsPtrOutput() ChannelMotionGraphicsSettingsPtrOutput

func (ChannelMotionGraphicsSettingsPtrOutput) ToChannelMotionGraphicsSettingsPtrOutputWithContext

func (o ChannelMotionGraphicsSettingsPtrOutput) ToChannelMotionGraphicsSettingsPtrOutputWithContext(ctx context.Context) ChannelMotionGraphicsSettingsPtrOutput

func (ChannelMotionGraphicsSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelMp2Settings

type ChannelMp2Settings struct {
	Bitrate    *float64 `pulumi:"bitrate"`
	CodingMode *string  `pulumi:"codingMode"`
	SampleRate *float64 `pulumi:"sampleRate"`
}

type ChannelMp2SettingsArgs

type ChannelMp2SettingsArgs struct {
	Bitrate    pulumi.Float64PtrInput `pulumi:"bitrate"`
	CodingMode pulumi.StringPtrInput  `pulumi:"codingMode"`
	SampleRate pulumi.Float64PtrInput `pulumi:"sampleRate"`
}

func (ChannelMp2SettingsArgs) ElementType

func (ChannelMp2SettingsArgs) ElementType() reflect.Type

func (ChannelMp2SettingsArgs) ToChannelMp2SettingsOutput

func (i ChannelMp2SettingsArgs) ToChannelMp2SettingsOutput() ChannelMp2SettingsOutput

func (ChannelMp2SettingsArgs) ToChannelMp2SettingsOutputWithContext

func (i ChannelMp2SettingsArgs) ToChannelMp2SettingsOutputWithContext(ctx context.Context) ChannelMp2SettingsOutput

func (ChannelMp2SettingsArgs) ToChannelMp2SettingsPtrOutput

func (i ChannelMp2SettingsArgs) ToChannelMp2SettingsPtrOutput() ChannelMp2SettingsPtrOutput

func (ChannelMp2SettingsArgs) ToChannelMp2SettingsPtrOutputWithContext

func (i ChannelMp2SettingsArgs) ToChannelMp2SettingsPtrOutputWithContext(ctx context.Context) ChannelMp2SettingsPtrOutput

func (ChannelMp2SettingsArgs) ToOutput added in v0.76.0

type ChannelMp2SettingsInput

type ChannelMp2SettingsInput interface {
	pulumi.Input

	ToChannelMp2SettingsOutput() ChannelMp2SettingsOutput
	ToChannelMp2SettingsOutputWithContext(context.Context) ChannelMp2SettingsOutput
}

ChannelMp2SettingsInput is an input type that accepts ChannelMp2SettingsArgs and ChannelMp2SettingsOutput values. You can construct a concrete instance of `ChannelMp2SettingsInput` via:

ChannelMp2SettingsArgs{...}

type ChannelMp2SettingsOutput

type ChannelMp2SettingsOutput struct{ *pulumi.OutputState }

func (ChannelMp2SettingsOutput) Bitrate

func (ChannelMp2SettingsOutput) CodingMode

func (ChannelMp2SettingsOutput) ElementType

func (ChannelMp2SettingsOutput) ElementType() reflect.Type

func (ChannelMp2SettingsOutput) SampleRate

func (ChannelMp2SettingsOutput) ToChannelMp2SettingsOutput

func (o ChannelMp2SettingsOutput) ToChannelMp2SettingsOutput() ChannelMp2SettingsOutput

func (ChannelMp2SettingsOutput) ToChannelMp2SettingsOutputWithContext

func (o ChannelMp2SettingsOutput) ToChannelMp2SettingsOutputWithContext(ctx context.Context) ChannelMp2SettingsOutput

func (ChannelMp2SettingsOutput) ToChannelMp2SettingsPtrOutput

func (o ChannelMp2SettingsOutput) ToChannelMp2SettingsPtrOutput() ChannelMp2SettingsPtrOutput

func (ChannelMp2SettingsOutput) ToChannelMp2SettingsPtrOutputWithContext

func (o ChannelMp2SettingsOutput) ToChannelMp2SettingsPtrOutputWithContext(ctx context.Context) ChannelMp2SettingsPtrOutput

func (ChannelMp2SettingsOutput) ToOutput added in v0.76.0

type ChannelMp2SettingsPtrInput

type ChannelMp2SettingsPtrInput interface {
	pulumi.Input

	ToChannelMp2SettingsPtrOutput() ChannelMp2SettingsPtrOutput
	ToChannelMp2SettingsPtrOutputWithContext(context.Context) ChannelMp2SettingsPtrOutput
}

ChannelMp2SettingsPtrInput is an input type that accepts ChannelMp2SettingsArgs, ChannelMp2SettingsPtr and ChannelMp2SettingsPtrOutput values. You can construct a concrete instance of `ChannelMp2SettingsPtrInput` via:

        ChannelMp2SettingsArgs{...}

or:

        nil

type ChannelMp2SettingsPtrOutput

type ChannelMp2SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelMp2SettingsPtrOutput) Bitrate

func (ChannelMp2SettingsPtrOutput) CodingMode

func (ChannelMp2SettingsPtrOutput) Elem

func (ChannelMp2SettingsPtrOutput) ElementType

func (ChannelMp2SettingsPtrOutput) SampleRate

func (ChannelMp2SettingsPtrOutput) ToChannelMp2SettingsPtrOutput

func (o ChannelMp2SettingsPtrOutput) ToChannelMp2SettingsPtrOutput() ChannelMp2SettingsPtrOutput

func (ChannelMp2SettingsPtrOutput) ToChannelMp2SettingsPtrOutputWithContext

func (o ChannelMp2SettingsPtrOutput) ToChannelMp2SettingsPtrOutputWithContext(ctx context.Context) ChannelMp2SettingsPtrOutput

func (ChannelMp2SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelMpeg2FilterSettings

type ChannelMpeg2FilterSettings struct {
	TemporalFilterSettings *ChannelTemporalFilterSettings `pulumi:"temporalFilterSettings"`
}

type ChannelMpeg2FilterSettingsArgs

type ChannelMpeg2FilterSettingsArgs struct {
	TemporalFilterSettings ChannelTemporalFilterSettingsPtrInput `pulumi:"temporalFilterSettings"`
}

func (ChannelMpeg2FilterSettingsArgs) ElementType

func (ChannelMpeg2FilterSettingsArgs) ToChannelMpeg2FilterSettingsOutput

func (i ChannelMpeg2FilterSettingsArgs) ToChannelMpeg2FilterSettingsOutput() ChannelMpeg2FilterSettingsOutput

func (ChannelMpeg2FilterSettingsArgs) ToChannelMpeg2FilterSettingsOutputWithContext

func (i ChannelMpeg2FilterSettingsArgs) ToChannelMpeg2FilterSettingsOutputWithContext(ctx context.Context) ChannelMpeg2FilterSettingsOutput

func (ChannelMpeg2FilterSettingsArgs) ToChannelMpeg2FilterSettingsPtrOutput

func (i ChannelMpeg2FilterSettingsArgs) ToChannelMpeg2FilterSettingsPtrOutput() ChannelMpeg2FilterSettingsPtrOutput

func (ChannelMpeg2FilterSettingsArgs) ToChannelMpeg2FilterSettingsPtrOutputWithContext

func (i ChannelMpeg2FilterSettingsArgs) ToChannelMpeg2FilterSettingsPtrOutputWithContext(ctx context.Context) ChannelMpeg2FilterSettingsPtrOutput

func (ChannelMpeg2FilterSettingsArgs) ToOutput added in v0.76.0

type ChannelMpeg2FilterSettingsInput

type ChannelMpeg2FilterSettingsInput interface {
	pulumi.Input

	ToChannelMpeg2FilterSettingsOutput() ChannelMpeg2FilterSettingsOutput
	ToChannelMpeg2FilterSettingsOutputWithContext(context.Context) ChannelMpeg2FilterSettingsOutput
}

ChannelMpeg2FilterSettingsInput is an input type that accepts ChannelMpeg2FilterSettingsArgs and ChannelMpeg2FilterSettingsOutput values. You can construct a concrete instance of `ChannelMpeg2FilterSettingsInput` via:

ChannelMpeg2FilterSettingsArgs{...}

type ChannelMpeg2FilterSettingsOutput

type ChannelMpeg2FilterSettingsOutput struct{ *pulumi.OutputState }

func (ChannelMpeg2FilterSettingsOutput) ElementType

func (ChannelMpeg2FilterSettingsOutput) TemporalFilterSettings

func (ChannelMpeg2FilterSettingsOutput) ToChannelMpeg2FilterSettingsOutput

func (o ChannelMpeg2FilterSettingsOutput) ToChannelMpeg2FilterSettingsOutput() ChannelMpeg2FilterSettingsOutput

func (ChannelMpeg2FilterSettingsOutput) ToChannelMpeg2FilterSettingsOutputWithContext

func (o ChannelMpeg2FilterSettingsOutput) ToChannelMpeg2FilterSettingsOutputWithContext(ctx context.Context) ChannelMpeg2FilterSettingsOutput

func (ChannelMpeg2FilterSettingsOutput) ToChannelMpeg2FilterSettingsPtrOutput

func (o ChannelMpeg2FilterSettingsOutput) ToChannelMpeg2FilterSettingsPtrOutput() ChannelMpeg2FilterSettingsPtrOutput

func (ChannelMpeg2FilterSettingsOutput) ToChannelMpeg2FilterSettingsPtrOutputWithContext

func (o ChannelMpeg2FilterSettingsOutput) ToChannelMpeg2FilterSettingsPtrOutputWithContext(ctx context.Context) ChannelMpeg2FilterSettingsPtrOutput

func (ChannelMpeg2FilterSettingsOutput) ToOutput added in v0.76.0

type ChannelMpeg2FilterSettingsPtrInput

type ChannelMpeg2FilterSettingsPtrInput interface {
	pulumi.Input

	ToChannelMpeg2FilterSettingsPtrOutput() ChannelMpeg2FilterSettingsPtrOutput
	ToChannelMpeg2FilterSettingsPtrOutputWithContext(context.Context) ChannelMpeg2FilterSettingsPtrOutput
}

ChannelMpeg2FilterSettingsPtrInput is an input type that accepts ChannelMpeg2FilterSettingsArgs, ChannelMpeg2FilterSettingsPtr and ChannelMpeg2FilterSettingsPtrOutput values. You can construct a concrete instance of `ChannelMpeg2FilterSettingsPtrInput` via:

        ChannelMpeg2FilterSettingsArgs{...}

or:

        nil

type ChannelMpeg2FilterSettingsPtrOutput

type ChannelMpeg2FilterSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelMpeg2FilterSettingsPtrOutput) Elem

func (ChannelMpeg2FilterSettingsPtrOutput) ElementType

func (ChannelMpeg2FilterSettingsPtrOutput) TemporalFilterSettings

func (ChannelMpeg2FilterSettingsPtrOutput) ToChannelMpeg2FilterSettingsPtrOutput

func (o ChannelMpeg2FilterSettingsPtrOutput) ToChannelMpeg2FilterSettingsPtrOutput() ChannelMpeg2FilterSettingsPtrOutput

func (ChannelMpeg2FilterSettingsPtrOutput) ToChannelMpeg2FilterSettingsPtrOutputWithContext

func (o ChannelMpeg2FilterSettingsPtrOutput) ToChannelMpeg2FilterSettingsPtrOutputWithContext(ctx context.Context) ChannelMpeg2FilterSettingsPtrOutput

func (ChannelMpeg2FilterSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelMpeg2Settings

type ChannelMpeg2Settings struct {
	AdaptiveQuantization   *string                        `pulumi:"adaptiveQuantization"`
	AfdSignaling           *string                        `pulumi:"afdSignaling"`
	ColorMetadata          *string                        `pulumi:"colorMetadata"`
	ColorSpace             *string                        `pulumi:"colorSpace"`
	DisplayAspectRatio     *string                        `pulumi:"displayAspectRatio"`
	FilterSettings         *ChannelMpeg2FilterSettings    `pulumi:"filterSettings"`
	FixedAfd               *string                        `pulumi:"fixedAfd"`
	FramerateDenominator   *int                           `pulumi:"framerateDenominator"`
	FramerateNumerator     *int                           `pulumi:"framerateNumerator"`
	GopClosedCadence       *int                           `pulumi:"gopClosedCadence"`
	GopNumBFrames          *int                           `pulumi:"gopNumBFrames"`
	GopSize                *float64                       `pulumi:"gopSize"`
	GopSizeUnits           *string                        `pulumi:"gopSizeUnits"`
	ScanType               *string                        `pulumi:"scanType"`
	SubgopLength           *string                        `pulumi:"subgopLength"`
	TimecodeBurninSettings *ChannelTimecodeBurninSettings `pulumi:"timecodeBurninSettings"`
	TimecodeInsertion      *string                        `pulumi:"timecodeInsertion"`
}

type ChannelMpeg2SettingsArgs

type ChannelMpeg2SettingsArgs struct {
	AdaptiveQuantization   pulumi.StringPtrInput                 `pulumi:"adaptiveQuantization"`
	AfdSignaling           pulumi.StringPtrInput                 `pulumi:"afdSignaling"`
	ColorMetadata          pulumi.StringPtrInput                 `pulumi:"colorMetadata"`
	ColorSpace             pulumi.StringPtrInput                 `pulumi:"colorSpace"`
	DisplayAspectRatio     pulumi.StringPtrInput                 `pulumi:"displayAspectRatio"`
	FilterSettings         ChannelMpeg2FilterSettingsPtrInput    `pulumi:"filterSettings"`
	FixedAfd               pulumi.StringPtrInput                 `pulumi:"fixedAfd"`
	FramerateDenominator   pulumi.IntPtrInput                    `pulumi:"framerateDenominator"`
	FramerateNumerator     pulumi.IntPtrInput                    `pulumi:"framerateNumerator"`
	GopClosedCadence       pulumi.IntPtrInput                    `pulumi:"gopClosedCadence"`
	GopNumBFrames          pulumi.IntPtrInput                    `pulumi:"gopNumBFrames"`
	GopSize                pulumi.Float64PtrInput                `pulumi:"gopSize"`
	GopSizeUnits           pulumi.StringPtrInput                 `pulumi:"gopSizeUnits"`
	ScanType               pulumi.StringPtrInput                 `pulumi:"scanType"`
	SubgopLength           pulumi.StringPtrInput                 `pulumi:"subgopLength"`
	TimecodeBurninSettings ChannelTimecodeBurninSettingsPtrInput `pulumi:"timecodeBurninSettings"`
	TimecodeInsertion      pulumi.StringPtrInput                 `pulumi:"timecodeInsertion"`
}

func (ChannelMpeg2SettingsArgs) ElementType

func (ChannelMpeg2SettingsArgs) ElementType() reflect.Type

func (ChannelMpeg2SettingsArgs) ToChannelMpeg2SettingsOutput

func (i ChannelMpeg2SettingsArgs) ToChannelMpeg2SettingsOutput() ChannelMpeg2SettingsOutput

func (ChannelMpeg2SettingsArgs) ToChannelMpeg2SettingsOutputWithContext

func (i ChannelMpeg2SettingsArgs) ToChannelMpeg2SettingsOutputWithContext(ctx context.Context) ChannelMpeg2SettingsOutput

func (ChannelMpeg2SettingsArgs) ToChannelMpeg2SettingsPtrOutput

func (i ChannelMpeg2SettingsArgs) ToChannelMpeg2SettingsPtrOutput() ChannelMpeg2SettingsPtrOutput

func (ChannelMpeg2SettingsArgs) ToChannelMpeg2SettingsPtrOutputWithContext

func (i ChannelMpeg2SettingsArgs) ToChannelMpeg2SettingsPtrOutputWithContext(ctx context.Context) ChannelMpeg2SettingsPtrOutput

func (ChannelMpeg2SettingsArgs) ToOutput added in v0.76.0

type ChannelMpeg2SettingsInput

type ChannelMpeg2SettingsInput interface {
	pulumi.Input

	ToChannelMpeg2SettingsOutput() ChannelMpeg2SettingsOutput
	ToChannelMpeg2SettingsOutputWithContext(context.Context) ChannelMpeg2SettingsOutput
}

ChannelMpeg2SettingsInput is an input type that accepts ChannelMpeg2SettingsArgs and ChannelMpeg2SettingsOutput values. You can construct a concrete instance of `ChannelMpeg2SettingsInput` via:

ChannelMpeg2SettingsArgs{...}

type ChannelMpeg2SettingsOutput

type ChannelMpeg2SettingsOutput struct{ *pulumi.OutputState }

func (ChannelMpeg2SettingsOutput) AdaptiveQuantization

func (o ChannelMpeg2SettingsOutput) AdaptiveQuantization() pulumi.StringPtrOutput

func (ChannelMpeg2SettingsOutput) AfdSignaling

func (ChannelMpeg2SettingsOutput) ColorMetadata

func (ChannelMpeg2SettingsOutput) ColorSpace

func (ChannelMpeg2SettingsOutput) DisplayAspectRatio

func (o ChannelMpeg2SettingsOutput) DisplayAspectRatio() pulumi.StringPtrOutput

func (ChannelMpeg2SettingsOutput) ElementType

func (ChannelMpeg2SettingsOutput) ElementType() reflect.Type

func (ChannelMpeg2SettingsOutput) FilterSettings

func (ChannelMpeg2SettingsOutput) FixedAfd

func (ChannelMpeg2SettingsOutput) FramerateDenominator

func (o ChannelMpeg2SettingsOutput) FramerateDenominator() pulumi.IntPtrOutput

func (ChannelMpeg2SettingsOutput) FramerateNumerator

func (o ChannelMpeg2SettingsOutput) FramerateNumerator() pulumi.IntPtrOutput

func (ChannelMpeg2SettingsOutput) GopClosedCadence

func (o ChannelMpeg2SettingsOutput) GopClosedCadence() pulumi.IntPtrOutput

func (ChannelMpeg2SettingsOutput) GopNumBFrames

func (ChannelMpeg2SettingsOutput) GopSize

func (ChannelMpeg2SettingsOutput) GopSizeUnits

func (ChannelMpeg2SettingsOutput) ScanType

func (ChannelMpeg2SettingsOutput) SubgopLength

func (ChannelMpeg2SettingsOutput) TimecodeBurninSettings added in v0.59.0

func (ChannelMpeg2SettingsOutput) TimecodeInsertion

func (o ChannelMpeg2SettingsOutput) TimecodeInsertion() pulumi.StringPtrOutput

func (ChannelMpeg2SettingsOutput) ToChannelMpeg2SettingsOutput

func (o ChannelMpeg2SettingsOutput) ToChannelMpeg2SettingsOutput() ChannelMpeg2SettingsOutput

func (ChannelMpeg2SettingsOutput) ToChannelMpeg2SettingsOutputWithContext

func (o ChannelMpeg2SettingsOutput) ToChannelMpeg2SettingsOutputWithContext(ctx context.Context) ChannelMpeg2SettingsOutput

func (ChannelMpeg2SettingsOutput) ToChannelMpeg2SettingsPtrOutput

func (o ChannelMpeg2SettingsOutput) ToChannelMpeg2SettingsPtrOutput() ChannelMpeg2SettingsPtrOutput

func (ChannelMpeg2SettingsOutput) ToChannelMpeg2SettingsPtrOutputWithContext

func (o ChannelMpeg2SettingsOutput) ToChannelMpeg2SettingsPtrOutputWithContext(ctx context.Context) ChannelMpeg2SettingsPtrOutput

func (ChannelMpeg2SettingsOutput) ToOutput added in v0.76.0

type ChannelMpeg2SettingsPtrInput

type ChannelMpeg2SettingsPtrInput interface {
	pulumi.Input

	ToChannelMpeg2SettingsPtrOutput() ChannelMpeg2SettingsPtrOutput
	ToChannelMpeg2SettingsPtrOutputWithContext(context.Context) ChannelMpeg2SettingsPtrOutput
}

ChannelMpeg2SettingsPtrInput is an input type that accepts ChannelMpeg2SettingsArgs, ChannelMpeg2SettingsPtr and ChannelMpeg2SettingsPtrOutput values. You can construct a concrete instance of `ChannelMpeg2SettingsPtrInput` via:

        ChannelMpeg2SettingsArgs{...}

or:

        nil

type ChannelMpeg2SettingsPtrOutput

type ChannelMpeg2SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelMpeg2SettingsPtrOutput) AdaptiveQuantization

func (o ChannelMpeg2SettingsPtrOutput) AdaptiveQuantization() pulumi.StringPtrOutput

func (ChannelMpeg2SettingsPtrOutput) AfdSignaling

func (ChannelMpeg2SettingsPtrOutput) ColorMetadata

func (ChannelMpeg2SettingsPtrOutput) ColorSpace

func (ChannelMpeg2SettingsPtrOutput) DisplayAspectRatio

func (o ChannelMpeg2SettingsPtrOutput) DisplayAspectRatio() pulumi.StringPtrOutput

func (ChannelMpeg2SettingsPtrOutput) Elem

func (ChannelMpeg2SettingsPtrOutput) ElementType

func (ChannelMpeg2SettingsPtrOutput) FilterSettings

func (ChannelMpeg2SettingsPtrOutput) FixedAfd

func (ChannelMpeg2SettingsPtrOutput) FramerateDenominator

func (o ChannelMpeg2SettingsPtrOutput) FramerateDenominator() pulumi.IntPtrOutput

func (ChannelMpeg2SettingsPtrOutput) FramerateNumerator

func (o ChannelMpeg2SettingsPtrOutput) FramerateNumerator() pulumi.IntPtrOutput

func (ChannelMpeg2SettingsPtrOutput) GopClosedCadence

func (o ChannelMpeg2SettingsPtrOutput) GopClosedCadence() pulumi.IntPtrOutput

func (ChannelMpeg2SettingsPtrOutput) GopNumBFrames

func (ChannelMpeg2SettingsPtrOutput) GopSize

func (ChannelMpeg2SettingsPtrOutput) GopSizeUnits

func (ChannelMpeg2SettingsPtrOutput) ScanType

func (ChannelMpeg2SettingsPtrOutput) SubgopLength

func (ChannelMpeg2SettingsPtrOutput) TimecodeBurninSettings added in v0.59.0

func (ChannelMpeg2SettingsPtrOutput) TimecodeInsertion

func (ChannelMpeg2SettingsPtrOutput) ToChannelMpeg2SettingsPtrOutput

func (o ChannelMpeg2SettingsPtrOutput) ToChannelMpeg2SettingsPtrOutput() ChannelMpeg2SettingsPtrOutput

func (ChannelMpeg2SettingsPtrOutput) ToChannelMpeg2SettingsPtrOutputWithContext

func (o ChannelMpeg2SettingsPtrOutput) ToChannelMpeg2SettingsPtrOutputWithContext(ctx context.Context) ChannelMpeg2SettingsPtrOutput

func (ChannelMpeg2SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelMsSmoothGroupSettings

type ChannelMsSmoothGroupSettings struct {
	AcquisitionPointId       *string                   `pulumi:"acquisitionPointId"`
	AudioOnlyTimecodeControl *string                   `pulumi:"audioOnlyTimecodeControl"`
	CertificateMode          *string                   `pulumi:"certificateMode"`
	ConnectionRetryInterval  *int                      `pulumi:"connectionRetryInterval"`
	Destination              *ChannelOutputLocationRef `pulumi:"destination"`
	EventId                  *string                   `pulumi:"eventId"`
	EventIdMode              *string                   `pulumi:"eventIdMode"`
	EventStopBehavior        *string                   `pulumi:"eventStopBehavior"`
	FilecacheDuration        *int                      `pulumi:"filecacheDuration"`
	FragmentLength           *int                      `pulumi:"fragmentLength"`
	InputLossAction          *string                   `pulumi:"inputLossAction"`
	NumRetries               *int                      `pulumi:"numRetries"`
	RestartDelay             *int                      `pulumi:"restartDelay"`
	SegmentationMode         *string                   `pulumi:"segmentationMode"`
	SendDelayMs              *int                      `pulumi:"sendDelayMs"`
	SparseTrackType          *string                   `pulumi:"sparseTrackType"`
	StreamManifestBehavior   *string                   `pulumi:"streamManifestBehavior"`
	TimestampOffset          *string                   `pulumi:"timestampOffset"`
	TimestampOffsetMode      *string                   `pulumi:"timestampOffsetMode"`
}

type ChannelMsSmoothGroupSettingsArgs

type ChannelMsSmoothGroupSettingsArgs struct {
	AcquisitionPointId       pulumi.StringPtrInput            `pulumi:"acquisitionPointId"`
	AudioOnlyTimecodeControl pulumi.StringPtrInput            `pulumi:"audioOnlyTimecodeControl"`
	CertificateMode          pulumi.StringPtrInput            `pulumi:"certificateMode"`
	ConnectionRetryInterval  pulumi.IntPtrInput               `pulumi:"connectionRetryInterval"`
	Destination              ChannelOutputLocationRefPtrInput `pulumi:"destination"`
	EventId                  pulumi.StringPtrInput            `pulumi:"eventId"`
	EventIdMode              pulumi.StringPtrInput            `pulumi:"eventIdMode"`
	EventStopBehavior        pulumi.StringPtrInput            `pulumi:"eventStopBehavior"`
	FilecacheDuration        pulumi.IntPtrInput               `pulumi:"filecacheDuration"`
	FragmentLength           pulumi.IntPtrInput               `pulumi:"fragmentLength"`
	InputLossAction          pulumi.StringPtrInput            `pulumi:"inputLossAction"`
	NumRetries               pulumi.IntPtrInput               `pulumi:"numRetries"`
	RestartDelay             pulumi.IntPtrInput               `pulumi:"restartDelay"`
	SegmentationMode         pulumi.StringPtrInput            `pulumi:"segmentationMode"`
	SendDelayMs              pulumi.IntPtrInput               `pulumi:"sendDelayMs"`
	SparseTrackType          pulumi.StringPtrInput            `pulumi:"sparseTrackType"`
	StreamManifestBehavior   pulumi.StringPtrInput            `pulumi:"streamManifestBehavior"`
	TimestampOffset          pulumi.StringPtrInput            `pulumi:"timestampOffset"`
	TimestampOffsetMode      pulumi.StringPtrInput            `pulumi:"timestampOffsetMode"`
}

func (ChannelMsSmoothGroupSettingsArgs) ElementType

func (ChannelMsSmoothGroupSettingsArgs) ToChannelMsSmoothGroupSettingsOutput

func (i ChannelMsSmoothGroupSettingsArgs) ToChannelMsSmoothGroupSettingsOutput() ChannelMsSmoothGroupSettingsOutput

func (ChannelMsSmoothGroupSettingsArgs) ToChannelMsSmoothGroupSettingsOutputWithContext

func (i ChannelMsSmoothGroupSettingsArgs) ToChannelMsSmoothGroupSettingsOutputWithContext(ctx context.Context) ChannelMsSmoothGroupSettingsOutput

func (ChannelMsSmoothGroupSettingsArgs) ToChannelMsSmoothGroupSettingsPtrOutput

func (i ChannelMsSmoothGroupSettingsArgs) ToChannelMsSmoothGroupSettingsPtrOutput() ChannelMsSmoothGroupSettingsPtrOutput

func (ChannelMsSmoothGroupSettingsArgs) ToChannelMsSmoothGroupSettingsPtrOutputWithContext

func (i ChannelMsSmoothGroupSettingsArgs) ToChannelMsSmoothGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelMsSmoothGroupSettingsPtrOutput

func (ChannelMsSmoothGroupSettingsArgs) ToOutput added in v0.76.0

type ChannelMsSmoothGroupSettingsInput

type ChannelMsSmoothGroupSettingsInput interface {
	pulumi.Input

	ToChannelMsSmoothGroupSettingsOutput() ChannelMsSmoothGroupSettingsOutput
	ToChannelMsSmoothGroupSettingsOutputWithContext(context.Context) ChannelMsSmoothGroupSettingsOutput
}

ChannelMsSmoothGroupSettingsInput is an input type that accepts ChannelMsSmoothGroupSettingsArgs and ChannelMsSmoothGroupSettingsOutput values. You can construct a concrete instance of `ChannelMsSmoothGroupSettingsInput` via:

ChannelMsSmoothGroupSettingsArgs{...}

type ChannelMsSmoothGroupSettingsOutput

type ChannelMsSmoothGroupSettingsOutput struct{ *pulumi.OutputState }

func (ChannelMsSmoothGroupSettingsOutput) AcquisitionPointId

func (ChannelMsSmoothGroupSettingsOutput) AudioOnlyTimecodeControl

func (o ChannelMsSmoothGroupSettingsOutput) AudioOnlyTimecodeControl() pulumi.StringPtrOutput

func (ChannelMsSmoothGroupSettingsOutput) CertificateMode

func (ChannelMsSmoothGroupSettingsOutput) ConnectionRetryInterval

func (o ChannelMsSmoothGroupSettingsOutput) ConnectionRetryInterval() pulumi.IntPtrOutput

func (ChannelMsSmoothGroupSettingsOutput) Destination

func (ChannelMsSmoothGroupSettingsOutput) ElementType

func (ChannelMsSmoothGroupSettingsOutput) EventId

func (ChannelMsSmoothGroupSettingsOutput) EventIdMode

func (ChannelMsSmoothGroupSettingsOutput) EventStopBehavior

func (ChannelMsSmoothGroupSettingsOutput) FilecacheDuration

func (ChannelMsSmoothGroupSettingsOutput) FragmentLength

func (ChannelMsSmoothGroupSettingsOutput) InputLossAction

func (ChannelMsSmoothGroupSettingsOutput) NumRetries

func (ChannelMsSmoothGroupSettingsOutput) RestartDelay

func (ChannelMsSmoothGroupSettingsOutput) SegmentationMode

func (ChannelMsSmoothGroupSettingsOutput) SendDelayMs

func (ChannelMsSmoothGroupSettingsOutput) SparseTrackType

func (ChannelMsSmoothGroupSettingsOutput) StreamManifestBehavior

func (o ChannelMsSmoothGroupSettingsOutput) StreamManifestBehavior() pulumi.StringPtrOutput

func (ChannelMsSmoothGroupSettingsOutput) TimestampOffset

func (ChannelMsSmoothGroupSettingsOutput) TimestampOffsetMode

func (ChannelMsSmoothGroupSettingsOutput) ToChannelMsSmoothGroupSettingsOutput

func (o ChannelMsSmoothGroupSettingsOutput) ToChannelMsSmoothGroupSettingsOutput() ChannelMsSmoothGroupSettingsOutput

func (ChannelMsSmoothGroupSettingsOutput) ToChannelMsSmoothGroupSettingsOutputWithContext

func (o ChannelMsSmoothGroupSettingsOutput) ToChannelMsSmoothGroupSettingsOutputWithContext(ctx context.Context) ChannelMsSmoothGroupSettingsOutput

func (ChannelMsSmoothGroupSettingsOutput) ToChannelMsSmoothGroupSettingsPtrOutput

func (o ChannelMsSmoothGroupSettingsOutput) ToChannelMsSmoothGroupSettingsPtrOutput() ChannelMsSmoothGroupSettingsPtrOutput

func (ChannelMsSmoothGroupSettingsOutput) ToChannelMsSmoothGroupSettingsPtrOutputWithContext

func (o ChannelMsSmoothGroupSettingsOutput) ToChannelMsSmoothGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelMsSmoothGroupSettingsPtrOutput

func (ChannelMsSmoothGroupSettingsOutput) ToOutput added in v0.76.0

type ChannelMsSmoothGroupSettingsPtrInput

type ChannelMsSmoothGroupSettingsPtrInput interface {
	pulumi.Input

	ToChannelMsSmoothGroupSettingsPtrOutput() ChannelMsSmoothGroupSettingsPtrOutput
	ToChannelMsSmoothGroupSettingsPtrOutputWithContext(context.Context) ChannelMsSmoothGroupSettingsPtrOutput
}

ChannelMsSmoothGroupSettingsPtrInput is an input type that accepts ChannelMsSmoothGroupSettingsArgs, ChannelMsSmoothGroupSettingsPtr and ChannelMsSmoothGroupSettingsPtrOutput values. You can construct a concrete instance of `ChannelMsSmoothGroupSettingsPtrInput` via:

        ChannelMsSmoothGroupSettingsArgs{...}

or:

        nil

type ChannelMsSmoothGroupSettingsPtrOutput

type ChannelMsSmoothGroupSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelMsSmoothGroupSettingsPtrOutput) AcquisitionPointId

func (ChannelMsSmoothGroupSettingsPtrOutput) AudioOnlyTimecodeControl

func (o ChannelMsSmoothGroupSettingsPtrOutput) AudioOnlyTimecodeControl() pulumi.StringPtrOutput

func (ChannelMsSmoothGroupSettingsPtrOutput) CertificateMode

func (ChannelMsSmoothGroupSettingsPtrOutput) ConnectionRetryInterval

func (o ChannelMsSmoothGroupSettingsPtrOutput) ConnectionRetryInterval() pulumi.IntPtrOutput

func (ChannelMsSmoothGroupSettingsPtrOutput) Destination

func (ChannelMsSmoothGroupSettingsPtrOutput) Elem

func (ChannelMsSmoothGroupSettingsPtrOutput) ElementType

func (ChannelMsSmoothGroupSettingsPtrOutput) EventId

func (ChannelMsSmoothGroupSettingsPtrOutput) EventIdMode

func (ChannelMsSmoothGroupSettingsPtrOutput) EventStopBehavior

func (ChannelMsSmoothGroupSettingsPtrOutput) FilecacheDuration

func (ChannelMsSmoothGroupSettingsPtrOutput) FragmentLength

func (ChannelMsSmoothGroupSettingsPtrOutput) InputLossAction

func (ChannelMsSmoothGroupSettingsPtrOutput) NumRetries

func (ChannelMsSmoothGroupSettingsPtrOutput) RestartDelay

func (ChannelMsSmoothGroupSettingsPtrOutput) SegmentationMode

func (ChannelMsSmoothGroupSettingsPtrOutput) SendDelayMs

func (ChannelMsSmoothGroupSettingsPtrOutput) SparseTrackType

func (ChannelMsSmoothGroupSettingsPtrOutput) StreamManifestBehavior

func (ChannelMsSmoothGroupSettingsPtrOutput) TimestampOffset

func (ChannelMsSmoothGroupSettingsPtrOutput) TimestampOffsetMode

func (ChannelMsSmoothGroupSettingsPtrOutput) ToChannelMsSmoothGroupSettingsPtrOutput

func (o ChannelMsSmoothGroupSettingsPtrOutput) ToChannelMsSmoothGroupSettingsPtrOutput() ChannelMsSmoothGroupSettingsPtrOutput

func (ChannelMsSmoothGroupSettingsPtrOutput) ToChannelMsSmoothGroupSettingsPtrOutputWithContext

func (o ChannelMsSmoothGroupSettingsPtrOutput) ToChannelMsSmoothGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelMsSmoothGroupSettingsPtrOutput

func (ChannelMsSmoothGroupSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelMsSmoothOutputSettings

type ChannelMsSmoothOutputSettings struct {
	H265PackagingType *string `pulumi:"h265PackagingType"`
	NameModifier      *string `pulumi:"nameModifier"`
}

type ChannelMsSmoothOutputSettingsArgs

type ChannelMsSmoothOutputSettingsArgs struct {
	H265PackagingType pulumi.StringPtrInput `pulumi:"h265PackagingType"`
	NameModifier      pulumi.StringPtrInput `pulumi:"nameModifier"`
}

func (ChannelMsSmoothOutputSettingsArgs) ElementType

func (ChannelMsSmoothOutputSettingsArgs) ToChannelMsSmoothOutputSettingsOutput

func (i ChannelMsSmoothOutputSettingsArgs) ToChannelMsSmoothOutputSettingsOutput() ChannelMsSmoothOutputSettingsOutput

func (ChannelMsSmoothOutputSettingsArgs) ToChannelMsSmoothOutputSettingsOutputWithContext

func (i ChannelMsSmoothOutputSettingsArgs) ToChannelMsSmoothOutputSettingsOutputWithContext(ctx context.Context) ChannelMsSmoothOutputSettingsOutput

func (ChannelMsSmoothOutputSettingsArgs) ToChannelMsSmoothOutputSettingsPtrOutput

func (i ChannelMsSmoothOutputSettingsArgs) ToChannelMsSmoothOutputSettingsPtrOutput() ChannelMsSmoothOutputSettingsPtrOutput

func (ChannelMsSmoothOutputSettingsArgs) ToChannelMsSmoothOutputSettingsPtrOutputWithContext

func (i ChannelMsSmoothOutputSettingsArgs) ToChannelMsSmoothOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelMsSmoothOutputSettingsPtrOutput

func (ChannelMsSmoothOutputSettingsArgs) ToOutput added in v0.76.0

type ChannelMsSmoothOutputSettingsInput

type ChannelMsSmoothOutputSettingsInput interface {
	pulumi.Input

	ToChannelMsSmoothOutputSettingsOutput() ChannelMsSmoothOutputSettingsOutput
	ToChannelMsSmoothOutputSettingsOutputWithContext(context.Context) ChannelMsSmoothOutputSettingsOutput
}

ChannelMsSmoothOutputSettingsInput is an input type that accepts ChannelMsSmoothOutputSettingsArgs and ChannelMsSmoothOutputSettingsOutput values. You can construct a concrete instance of `ChannelMsSmoothOutputSettingsInput` via:

ChannelMsSmoothOutputSettingsArgs{...}

type ChannelMsSmoothOutputSettingsOutput

type ChannelMsSmoothOutputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelMsSmoothOutputSettingsOutput) ElementType

func (ChannelMsSmoothOutputSettingsOutput) H265PackagingType

func (ChannelMsSmoothOutputSettingsOutput) NameModifier

func (ChannelMsSmoothOutputSettingsOutput) ToChannelMsSmoothOutputSettingsOutput

func (o ChannelMsSmoothOutputSettingsOutput) ToChannelMsSmoothOutputSettingsOutput() ChannelMsSmoothOutputSettingsOutput

func (ChannelMsSmoothOutputSettingsOutput) ToChannelMsSmoothOutputSettingsOutputWithContext

func (o ChannelMsSmoothOutputSettingsOutput) ToChannelMsSmoothOutputSettingsOutputWithContext(ctx context.Context) ChannelMsSmoothOutputSettingsOutput

func (ChannelMsSmoothOutputSettingsOutput) ToChannelMsSmoothOutputSettingsPtrOutput

func (o ChannelMsSmoothOutputSettingsOutput) ToChannelMsSmoothOutputSettingsPtrOutput() ChannelMsSmoothOutputSettingsPtrOutput

func (ChannelMsSmoothOutputSettingsOutput) ToChannelMsSmoothOutputSettingsPtrOutputWithContext

func (o ChannelMsSmoothOutputSettingsOutput) ToChannelMsSmoothOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelMsSmoothOutputSettingsPtrOutput

func (ChannelMsSmoothOutputSettingsOutput) ToOutput added in v0.76.0

type ChannelMsSmoothOutputSettingsPtrInput

type ChannelMsSmoothOutputSettingsPtrInput interface {
	pulumi.Input

	ToChannelMsSmoothOutputSettingsPtrOutput() ChannelMsSmoothOutputSettingsPtrOutput
	ToChannelMsSmoothOutputSettingsPtrOutputWithContext(context.Context) ChannelMsSmoothOutputSettingsPtrOutput
}

ChannelMsSmoothOutputSettingsPtrInput is an input type that accepts ChannelMsSmoothOutputSettingsArgs, ChannelMsSmoothOutputSettingsPtr and ChannelMsSmoothOutputSettingsPtrOutput values. You can construct a concrete instance of `ChannelMsSmoothOutputSettingsPtrInput` via:

        ChannelMsSmoothOutputSettingsArgs{...}

or:

        nil

type ChannelMsSmoothOutputSettingsPtrOutput

type ChannelMsSmoothOutputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelMsSmoothOutputSettingsPtrOutput) Elem

func (ChannelMsSmoothOutputSettingsPtrOutput) ElementType

func (ChannelMsSmoothOutputSettingsPtrOutput) H265PackagingType

func (ChannelMsSmoothOutputSettingsPtrOutput) NameModifier

func (ChannelMsSmoothOutputSettingsPtrOutput) ToChannelMsSmoothOutputSettingsPtrOutput

func (o ChannelMsSmoothOutputSettingsPtrOutput) ToChannelMsSmoothOutputSettingsPtrOutput() ChannelMsSmoothOutputSettingsPtrOutput

func (ChannelMsSmoothOutputSettingsPtrOutput) ToChannelMsSmoothOutputSettingsPtrOutputWithContext

func (o ChannelMsSmoothOutputSettingsPtrOutput) ToChannelMsSmoothOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelMsSmoothOutputSettingsPtrOutput

func (ChannelMsSmoothOutputSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelMultiplexGroupSettings

type ChannelMultiplexGroupSettings struct {
}

type ChannelMultiplexGroupSettingsArgs

type ChannelMultiplexGroupSettingsArgs struct {
}

func (ChannelMultiplexGroupSettingsArgs) ElementType

func (ChannelMultiplexGroupSettingsArgs) ToChannelMultiplexGroupSettingsOutput

func (i ChannelMultiplexGroupSettingsArgs) ToChannelMultiplexGroupSettingsOutput() ChannelMultiplexGroupSettingsOutput

func (ChannelMultiplexGroupSettingsArgs) ToChannelMultiplexGroupSettingsOutputWithContext

func (i ChannelMultiplexGroupSettingsArgs) ToChannelMultiplexGroupSettingsOutputWithContext(ctx context.Context) ChannelMultiplexGroupSettingsOutput

func (ChannelMultiplexGroupSettingsArgs) ToChannelMultiplexGroupSettingsPtrOutput

func (i ChannelMultiplexGroupSettingsArgs) ToChannelMultiplexGroupSettingsPtrOutput() ChannelMultiplexGroupSettingsPtrOutput

func (ChannelMultiplexGroupSettingsArgs) ToChannelMultiplexGroupSettingsPtrOutputWithContext

func (i ChannelMultiplexGroupSettingsArgs) ToChannelMultiplexGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelMultiplexGroupSettingsPtrOutput

func (ChannelMultiplexGroupSettingsArgs) ToOutput added in v0.76.0

type ChannelMultiplexGroupSettingsInput

type ChannelMultiplexGroupSettingsInput interface {
	pulumi.Input

	ToChannelMultiplexGroupSettingsOutput() ChannelMultiplexGroupSettingsOutput
	ToChannelMultiplexGroupSettingsOutputWithContext(context.Context) ChannelMultiplexGroupSettingsOutput
}

ChannelMultiplexGroupSettingsInput is an input type that accepts ChannelMultiplexGroupSettingsArgs and ChannelMultiplexGroupSettingsOutput values. You can construct a concrete instance of `ChannelMultiplexGroupSettingsInput` via:

ChannelMultiplexGroupSettingsArgs{...}

type ChannelMultiplexGroupSettingsOutput

type ChannelMultiplexGroupSettingsOutput struct{ *pulumi.OutputState }

func (ChannelMultiplexGroupSettingsOutput) ElementType

func (ChannelMultiplexGroupSettingsOutput) ToChannelMultiplexGroupSettingsOutput

func (o ChannelMultiplexGroupSettingsOutput) ToChannelMultiplexGroupSettingsOutput() ChannelMultiplexGroupSettingsOutput

func (ChannelMultiplexGroupSettingsOutput) ToChannelMultiplexGroupSettingsOutputWithContext

func (o ChannelMultiplexGroupSettingsOutput) ToChannelMultiplexGroupSettingsOutputWithContext(ctx context.Context) ChannelMultiplexGroupSettingsOutput

func (ChannelMultiplexGroupSettingsOutput) ToChannelMultiplexGroupSettingsPtrOutput

func (o ChannelMultiplexGroupSettingsOutput) ToChannelMultiplexGroupSettingsPtrOutput() ChannelMultiplexGroupSettingsPtrOutput

func (ChannelMultiplexGroupSettingsOutput) ToChannelMultiplexGroupSettingsPtrOutputWithContext

func (o ChannelMultiplexGroupSettingsOutput) ToChannelMultiplexGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelMultiplexGroupSettingsPtrOutput

func (ChannelMultiplexGroupSettingsOutput) ToOutput added in v0.76.0

type ChannelMultiplexGroupSettingsPtrInput

type ChannelMultiplexGroupSettingsPtrInput interface {
	pulumi.Input

	ToChannelMultiplexGroupSettingsPtrOutput() ChannelMultiplexGroupSettingsPtrOutput
	ToChannelMultiplexGroupSettingsPtrOutputWithContext(context.Context) ChannelMultiplexGroupSettingsPtrOutput
}

ChannelMultiplexGroupSettingsPtrInput is an input type that accepts ChannelMultiplexGroupSettingsArgs, ChannelMultiplexGroupSettingsPtr and ChannelMultiplexGroupSettingsPtrOutput values. You can construct a concrete instance of `ChannelMultiplexGroupSettingsPtrInput` via:

        ChannelMultiplexGroupSettingsArgs{...}

or:

        nil

type ChannelMultiplexGroupSettingsPtrOutput

type ChannelMultiplexGroupSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelMultiplexGroupSettingsPtrOutput) Elem

func (ChannelMultiplexGroupSettingsPtrOutput) ElementType

func (ChannelMultiplexGroupSettingsPtrOutput) ToChannelMultiplexGroupSettingsPtrOutput

func (o ChannelMultiplexGroupSettingsPtrOutput) ToChannelMultiplexGroupSettingsPtrOutput() ChannelMultiplexGroupSettingsPtrOutput

func (ChannelMultiplexGroupSettingsPtrOutput) ToChannelMultiplexGroupSettingsPtrOutputWithContext

func (o ChannelMultiplexGroupSettingsPtrOutput) ToChannelMultiplexGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelMultiplexGroupSettingsPtrOutput

func (ChannelMultiplexGroupSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelMultiplexOutputSettings

type ChannelMultiplexOutputSettings struct {
	Destination *ChannelOutputLocationRef `pulumi:"destination"`
}

type ChannelMultiplexOutputSettingsArgs

type ChannelMultiplexOutputSettingsArgs struct {
	Destination ChannelOutputLocationRefPtrInput `pulumi:"destination"`
}

func (ChannelMultiplexOutputSettingsArgs) ElementType

func (ChannelMultiplexOutputSettingsArgs) ToChannelMultiplexOutputSettingsOutput

func (i ChannelMultiplexOutputSettingsArgs) ToChannelMultiplexOutputSettingsOutput() ChannelMultiplexOutputSettingsOutput

func (ChannelMultiplexOutputSettingsArgs) ToChannelMultiplexOutputSettingsOutputWithContext

func (i ChannelMultiplexOutputSettingsArgs) ToChannelMultiplexOutputSettingsOutputWithContext(ctx context.Context) ChannelMultiplexOutputSettingsOutput

func (ChannelMultiplexOutputSettingsArgs) ToChannelMultiplexOutputSettingsPtrOutput

func (i ChannelMultiplexOutputSettingsArgs) ToChannelMultiplexOutputSettingsPtrOutput() ChannelMultiplexOutputSettingsPtrOutput

func (ChannelMultiplexOutputSettingsArgs) ToChannelMultiplexOutputSettingsPtrOutputWithContext

func (i ChannelMultiplexOutputSettingsArgs) ToChannelMultiplexOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelMultiplexOutputSettingsPtrOutput

func (ChannelMultiplexOutputSettingsArgs) ToOutput added in v0.76.0

type ChannelMultiplexOutputSettingsInput

type ChannelMultiplexOutputSettingsInput interface {
	pulumi.Input

	ToChannelMultiplexOutputSettingsOutput() ChannelMultiplexOutputSettingsOutput
	ToChannelMultiplexOutputSettingsOutputWithContext(context.Context) ChannelMultiplexOutputSettingsOutput
}

ChannelMultiplexOutputSettingsInput is an input type that accepts ChannelMultiplexOutputSettingsArgs and ChannelMultiplexOutputSettingsOutput values. You can construct a concrete instance of `ChannelMultiplexOutputSettingsInput` via:

ChannelMultiplexOutputSettingsArgs{...}

type ChannelMultiplexOutputSettingsOutput

type ChannelMultiplexOutputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelMultiplexOutputSettingsOutput) Destination

func (ChannelMultiplexOutputSettingsOutput) ElementType

func (ChannelMultiplexOutputSettingsOutput) ToChannelMultiplexOutputSettingsOutput

func (o ChannelMultiplexOutputSettingsOutput) ToChannelMultiplexOutputSettingsOutput() ChannelMultiplexOutputSettingsOutput

func (ChannelMultiplexOutputSettingsOutput) ToChannelMultiplexOutputSettingsOutputWithContext

func (o ChannelMultiplexOutputSettingsOutput) ToChannelMultiplexOutputSettingsOutputWithContext(ctx context.Context) ChannelMultiplexOutputSettingsOutput

func (ChannelMultiplexOutputSettingsOutput) ToChannelMultiplexOutputSettingsPtrOutput

func (o ChannelMultiplexOutputSettingsOutput) ToChannelMultiplexOutputSettingsPtrOutput() ChannelMultiplexOutputSettingsPtrOutput

func (ChannelMultiplexOutputSettingsOutput) ToChannelMultiplexOutputSettingsPtrOutputWithContext

func (o ChannelMultiplexOutputSettingsOutput) ToChannelMultiplexOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelMultiplexOutputSettingsPtrOutput

func (ChannelMultiplexOutputSettingsOutput) ToOutput added in v0.76.0

type ChannelMultiplexOutputSettingsPtrInput

type ChannelMultiplexOutputSettingsPtrInput interface {
	pulumi.Input

	ToChannelMultiplexOutputSettingsPtrOutput() ChannelMultiplexOutputSettingsPtrOutput
	ToChannelMultiplexOutputSettingsPtrOutputWithContext(context.Context) ChannelMultiplexOutputSettingsPtrOutput
}

ChannelMultiplexOutputSettingsPtrInput is an input type that accepts ChannelMultiplexOutputSettingsArgs, ChannelMultiplexOutputSettingsPtr and ChannelMultiplexOutputSettingsPtrOutput values. You can construct a concrete instance of `ChannelMultiplexOutputSettingsPtrInput` via:

        ChannelMultiplexOutputSettingsArgs{...}

or:

        nil

type ChannelMultiplexOutputSettingsPtrOutput

type ChannelMultiplexOutputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelMultiplexOutputSettingsPtrOutput) Destination

func (ChannelMultiplexOutputSettingsPtrOutput) Elem

func (ChannelMultiplexOutputSettingsPtrOutput) ElementType

func (ChannelMultiplexOutputSettingsPtrOutput) ToChannelMultiplexOutputSettingsPtrOutput

func (o ChannelMultiplexOutputSettingsPtrOutput) ToChannelMultiplexOutputSettingsPtrOutput() ChannelMultiplexOutputSettingsPtrOutput

func (ChannelMultiplexOutputSettingsPtrOutput) ToChannelMultiplexOutputSettingsPtrOutputWithContext

func (o ChannelMultiplexOutputSettingsPtrOutput) ToChannelMultiplexOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelMultiplexOutputSettingsPtrOutput

func (ChannelMultiplexOutputSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelMultiplexProgramChannelDestinationSettings

type ChannelMultiplexProgramChannelDestinationSettings struct {
	MultiplexId *string `pulumi:"multiplexId"`
	ProgramName *string `pulumi:"programName"`
}

type ChannelMultiplexProgramChannelDestinationSettingsArgs

type ChannelMultiplexProgramChannelDestinationSettingsArgs struct {
	MultiplexId pulumi.StringPtrInput `pulumi:"multiplexId"`
	ProgramName pulumi.StringPtrInput `pulumi:"programName"`
}

func (ChannelMultiplexProgramChannelDestinationSettingsArgs) ElementType

func (ChannelMultiplexProgramChannelDestinationSettingsArgs) ToChannelMultiplexProgramChannelDestinationSettingsOutput

func (i ChannelMultiplexProgramChannelDestinationSettingsArgs) ToChannelMultiplexProgramChannelDestinationSettingsOutput() ChannelMultiplexProgramChannelDestinationSettingsOutput

func (ChannelMultiplexProgramChannelDestinationSettingsArgs) ToChannelMultiplexProgramChannelDestinationSettingsOutputWithContext

func (i ChannelMultiplexProgramChannelDestinationSettingsArgs) ToChannelMultiplexProgramChannelDestinationSettingsOutputWithContext(ctx context.Context) ChannelMultiplexProgramChannelDestinationSettingsOutput

func (ChannelMultiplexProgramChannelDestinationSettingsArgs) ToChannelMultiplexProgramChannelDestinationSettingsPtrOutput

func (i ChannelMultiplexProgramChannelDestinationSettingsArgs) ToChannelMultiplexProgramChannelDestinationSettingsPtrOutput() ChannelMultiplexProgramChannelDestinationSettingsPtrOutput

func (ChannelMultiplexProgramChannelDestinationSettingsArgs) ToChannelMultiplexProgramChannelDestinationSettingsPtrOutputWithContext

func (i ChannelMultiplexProgramChannelDestinationSettingsArgs) ToChannelMultiplexProgramChannelDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelMultiplexProgramChannelDestinationSettingsPtrOutput

func (ChannelMultiplexProgramChannelDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelMultiplexProgramChannelDestinationSettingsInput

type ChannelMultiplexProgramChannelDestinationSettingsInput interface {
	pulumi.Input

	ToChannelMultiplexProgramChannelDestinationSettingsOutput() ChannelMultiplexProgramChannelDestinationSettingsOutput
	ToChannelMultiplexProgramChannelDestinationSettingsOutputWithContext(context.Context) ChannelMultiplexProgramChannelDestinationSettingsOutput
}

ChannelMultiplexProgramChannelDestinationSettingsInput is an input type that accepts ChannelMultiplexProgramChannelDestinationSettingsArgs and ChannelMultiplexProgramChannelDestinationSettingsOutput values. You can construct a concrete instance of `ChannelMultiplexProgramChannelDestinationSettingsInput` via:

ChannelMultiplexProgramChannelDestinationSettingsArgs{...}

type ChannelMultiplexProgramChannelDestinationSettingsOutput

type ChannelMultiplexProgramChannelDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelMultiplexProgramChannelDestinationSettingsOutput) ElementType

func (ChannelMultiplexProgramChannelDestinationSettingsOutput) MultiplexId

func (ChannelMultiplexProgramChannelDestinationSettingsOutput) ProgramName

func (ChannelMultiplexProgramChannelDestinationSettingsOutput) ToChannelMultiplexProgramChannelDestinationSettingsOutput

func (ChannelMultiplexProgramChannelDestinationSettingsOutput) ToChannelMultiplexProgramChannelDestinationSettingsOutputWithContext

func (o ChannelMultiplexProgramChannelDestinationSettingsOutput) ToChannelMultiplexProgramChannelDestinationSettingsOutputWithContext(ctx context.Context) ChannelMultiplexProgramChannelDestinationSettingsOutput

func (ChannelMultiplexProgramChannelDestinationSettingsOutput) ToChannelMultiplexProgramChannelDestinationSettingsPtrOutput

func (ChannelMultiplexProgramChannelDestinationSettingsOutput) ToChannelMultiplexProgramChannelDestinationSettingsPtrOutputWithContext

func (o ChannelMultiplexProgramChannelDestinationSettingsOutput) ToChannelMultiplexProgramChannelDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelMultiplexProgramChannelDestinationSettingsPtrOutput

func (ChannelMultiplexProgramChannelDestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelMultiplexProgramChannelDestinationSettingsPtrInput

type ChannelMultiplexProgramChannelDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelMultiplexProgramChannelDestinationSettingsPtrOutput() ChannelMultiplexProgramChannelDestinationSettingsPtrOutput
	ToChannelMultiplexProgramChannelDestinationSettingsPtrOutputWithContext(context.Context) ChannelMultiplexProgramChannelDestinationSettingsPtrOutput
}

ChannelMultiplexProgramChannelDestinationSettingsPtrInput is an input type that accepts ChannelMultiplexProgramChannelDestinationSettingsArgs, ChannelMultiplexProgramChannelDestinationSettingsPtr and ChannelMultiplexProgramChannelDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelMultiplexProgramChannelDestinationSettingsPtrInput` via:

        ChannelMultiplexProgramChannelDestinationSettingsArgs{...}

or:

        nil

type ChannelMultiplexProgramChannelDestinationSettingsPtrOutput

type ChannelMultiplexProgramChannelDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelMultiplexProgramChannelDestinationSettingsPtrOutput) Elem

func (ChannelMultiplexProgramChannelDestinationSettingsPtrOutput) ElementType

func (ChannelMultiplexProgramChannelDestinationSettingsPtrOutput) MultiplexId

func (ChannelMultiplexProgramChannelDestinationSettingsPtrOutput) ProgramName

func (ChannelMultiplexProgramChannelDestinationSettingsPtrOutput) ToChannelMultiplexProgramChannelDestinationSettingsPtrOutput

func (ChannelMultiplexProgramChannelDestinationSettingsPtrOutput) ToChannelMultiplexProgramChannelDestinationSettingsPtrOutputWithContext

func (o ChannelMultiplexProgramChannelDestinationSettingsPtrOutput) ToChannelMultiplexProgramChannelDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelMultiplexProgramChannelDestinationSettingsPtrOutput

func (ChannelMultiplexProgramChannelDestinationSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelNetworkInputSettings

type ChannelNetworkInputSettings struct {
	HlsInputSettings *ChannelHlsInputSettings `pulumi:"hlsInputSettings"`
	ServerValidation *string                  `pulumi:"serverValidation"`
}

type ChannelNetworkInputSettingsArgs

type ChannelNetworkInputSettingsArgs struct {
	HlsInputSettings ChannelHlsInputSettingsPtrInput `pulumi:"hlsInputSettings"`
	ServerValidation pulumi.StringPtrInput           `pulumi:"serverValidation"`
}

func (ChannelNetworkInputSettingsArgs) ElementType

func (ChannelNetworkInputSettingsArgs) ToChannelNetworkInputSettingsOutput

func (i ChannelNetworkInputSettingsArgs) ToChannelNetworkInputSettingsOutput() ChannelNetworkInputSettingsOutput

func (ChannelNetworkInputSettingsArgs) ToChannelNetworkInputSettingsOutputWithContext

func (i ChannelNetworkInputSettingsArgs) ToChannelNetworkInputSettingsOutputWithContext(ctx context.Context) ChannelNetworkInputSettingsOutput

func (ChannelNetworkInputSettingsArgs) ToChannelNetworkInputSettingsPtrOutput

func (i ChannelNetworkInputSettingsArgs) ToChannelNetworkInputSettingsPtrOutput() ChannelNetworkInputSettingsPtrOutput

func (ChannelNetworkInputSettingsArgs) ToChannelNetworkInputSettingsPtrOutputWithContext

func (i ChannelNetworkInputSettingsArgs) ToChannelNetworkInputSettingsPtrOutputWithContext(ctx context.Context) ChannelNetworkInputSettingsPtrOutput

func (ChannelNetworkInputSettingsArgs) ToOutput added in v0.76.0

type ChannelNetworkInputSettingsInput

type ChannelNetworkInputSettingsInput interface {
	pulumi.Input

	ToChannelNetworkInputSettingsOutput() ChannelNetworkInputSettingsOutput
	ToChannelNetworkInputSettingsOutputWithContext(context.Context) ChannelNetworkInputSettingsOutput
}

ChannelNetworkInputSettingsInput is an input type that accepts ChannelNetworkInputSettingsArgs and ChannelNetworkInputSettingsOutput values. You can construct a concrete instance of `ChannelNetworkInputSettingsInput` via:

ChannelNetworkInputSettingsArgs{...}

type ChannelNetworkInputSettingsOutput

type ChannelNetworkInputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelNetworkInputSettingsOutput) ElementType

func (ChannelNetworkInputSettingsOutput) HlsInputSettings

func (ChannelNetworkInputSettingsOutput) ServerValidation

func (ChannelNetworkInputSettingsOutput) ToChannelNetworkInputSettingsOutput

func (o ChannelNetworkInputSettingsOutput) ToChannelNetworkInputSettingsOutput() ChannelNetworkInputSettingsOutput

func (ChannelNetworkInputSettingsOutput) ToChannelNetworkInputSettingsOutputWithContext

func (o ChannelNetworkInputSettingsOutput) ToChannelNetworkInputSettingsOutputWithContext(ctx context.Context) ChannelNetworkInputSettingsOutput

func (ChannelNetworkInputSettingsOutput) ToChannelNetworkInputSettingsPtrOutput

func (o ChannelNetworkInputSettingsOutput) ToChannelNetworkInputSettingsPtrOutput() ChannelNetworkInputSettingsPtrOutput

func (ChannelNetworkInputSettingsOutput) ToChannelNetworkInputSettingsPtrOutputWithContext

func (o ChannelNetworkInputSettingsOutput) ToChannelNetworkInputSettingsPtrOutputWithContext(ctx context.Context) ChannelNetworkInputSettingsPtrOutput

func (ChannelNetworkInputSettingsOutput) ToOutput added in v0.76.0

type ChannelNetworkInputSettingsPtrInput

type ChannelNetworkInputSettingsPtrInput interface {
	pulumi.Input

	ToChannelNetworkInputSettingsPtrOutput() ChannelNetworkInputSettingsPtrOutput
	ToChannelNetworkInputSettingsPtrOutputWithContext(context.Context) ChannelNetworkInputSettingsPtrOutput
}

ChannelNetworkInputSettingsPtrInput is an input type that accepts ChannelNetworkInputSettingsArgs, ChannelNetworkInputSettingsPtr and ChannelNetworkInputSettingsPtrOutput values. You can construct a concrete instance of `ChannelNetworkInputSettingsPtrInput` via:

        ChannelNetworkInputSettingsArgs{...}

or:

        nil

type ChannelNetworkInputSettingsPtrOutput

type ChannelNetworkInputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelNetworkInputSettingsPtrOutput) Elem

func (ChannelNetworkInputSettingsPtrOutput) ElementType

func (ChannelNetworkInputSettingsPtrOutput) HlsInputSettings

func (ChannelNetworkInputSettingsPtrOutput) ServerValidation

func (ChannelNetworkInputSettingsPtrOutput) ToChannelNetworkInputSettingsPtrOutput

func (o ChannelNetworkInputSettingsPtrOutput) ToChannelNetworkInputSettingsPtrOutput() ChannelNetworkInputSettingsPtrOutput

func (ChannelNetworkInputSettingsPtrOutput) ToChannelNetworkInputSettingsPtrOutputWithContext

func (o ChannelNetworkInputSettingsPtrOutput) ToChannelNetworkInputSettingsPtrOutputWithContext(ctx context.Context) ChannelNetworkInputSettingsPtrOutput

func (ChannelNetworkInputSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelNielsenCbet added in v0.72.0

type ChannelNielsenCbet struct {
	CbetCheckDigitString *string `pulumi:"cbetCheckDigitString"`
	CbetStepaside        *string `pulumi:"cbetStepaside"`
	Csid                 *string `pulumi:"csid"`
}

type ChannelNielsenCbetArgs added in v0.72.0

type ChannelNielsenCbetArgs struct {
	CbetCheckDigitString pulumi.StringPtrInput `pulumi:"cbetCheckDigitString"`
	CbetStepaside        pulumi.StringPtrInput `pulumi:"cbetStepaside"`
	Csid                 pulumi.StringPtrInput `pulumi:"csid"`
}

func (ChannelNielsenCbetArgs) ElementType added in v0.72.0

func (ChannelNielsenCbetArgs) ElementType() reflect.Type

func (ChannelNielsenCbetArgs) ToChannelNielsenCbetOutput added in v0.72.0

func (i ChannelNielsenCbetArgs) ToChannelNielsenCbetOutput() ChannelNielsenCbetOutput

func (ChannelNielsenCbetArgs) ToChannelNielsenCbetOutputWithContext added in v0.72.0

func (i ChannelNielsenCbetArgs) ToChannelNielsenCbetOutputWithContext(ctx context.Context) ChannelNielsenCbetOutput

func (ChannelNielsenCbetArgs) ToChannelNielsenCbetPtrOutput added in v0.72.0

func (i ChannelNielsenCbetArgs) ToChannelNielsenCbetPtrOutput() ChannelNielsenCbetPtrOutput

func (ChannelNielsenCbetArgs) ToChannelNielsenCbetPtrOutputWithContext added in v0.72.0

func (i ChannelNielsenCbetArgs) ToChannelNielsenCbetPtrOutputWithContext(ctx context.Context) ChannelNielsenCbetPtrOutput

func (ChannelNielsenCbetArgs) ToOutput added in v0.76.0

type ChannelNielsenCbetInput added in v0.72.0

type ChannelNielsenCbetInput interface {
	pulumi.Input

	ToChannelNielsenCbetOutput() ChannelNielsenCbetOutput
	ToChannelNielsenCbetOutputWithContext(context.Context) ChannelNielsenCbetOutput
}

ChannelNielsenCbetInput is an input type that accepts ChannelNielsenCbetArgs and ChannelNielsenCbetOutput values. You can construct a concrete instance of `ChannelNielsenCbetInput` via:

ChannelNielsenCbetArgs{...}

type ChannelNielsenCbetOutput added in v0.72.0

type ChannelNielsenCbetOutput struct{ *pulumi.OutputState }

func (ChannelNielsenCbetOutput) CbetCheckDigitString added in v0.72.0

func (o ChannelNielsenCbetOutput) CbetCheckDigitString() pulumi.StringPtrOutput

func (ChannelNielsenCbetOutput) CbetStepaside added in v0.72.0

func (ChannelNielsenCbetOutput) Csid added in v0.72.0

func (ChannelNielsenCbetOutput) ElementType added in v0.72.0

func (ChannelNielsenCbetOutput) ElementType() reflect.Type

func (ChannelNielsenCbetOutput) ToChannelNielsenCbetOutput added in v0.72.0

func (o ChannelNielsenCbetOutput) ToChannelNielsenCbetOutput() ChannelNielsenCbetOutput

func (ChannelNielsenCbetOutput) ToChannelNielsenCbetOutputWithContext added in v0.72.0

func (o ChannelNielsenCbetOutput) ToChannelNielsenCbetOutputWithContext(ctx context.Context) ChannelNielsenCbetOutput

func (ChannelNielsenCbetOutput) ToChannelNielsenCbetPtrOutput added in v0.72.0

func (o ChannelNielsenCbetOutput) ToChannelNielsenCbetPtrOutput() ChannelNielsenCbetPtrOutput

func (ChannelNielsenCbetOutput) ToChannelNielsenCbetPtrOutputWithContext added in v0.72.0

func (o ChannelNielsenCbetOutput) ToChannelNielsenCbetPtrOutputWithContext(ctx context.Context) ChannelNielsenCbetPtrOutput

func (ChannelNielsenCbetOutput) ToOutput added in v0.76.0

type ChannelNielsenCbetPtrInput added in v0.72.0

type ChannelNielsenCbetPtrInput interface {
	pulumi.Input

	ToChannelNielsenCbetPtrOutput() ChannelNielsenCbetPtrOutput
	ToChannelNielsenCbetPtrOutputWithContext(context.Context) ChannelNielsenCbetPtrOutput
}

ChannelNielsenCbetPtrInput is an input type that accepts ChannelNielsenCbetArgs, ChannelNielsenCbetPtr and ChannelNielsenCbetPtrOutput values. You can construct a concrete instance of `ChannelNielsenCbetPtrInput` via:

        ChannelNielsenCbetArgs{...}

or:

        nil

func ChannelNielsenCbetPtr added in v0.72.0

func ChannelNielsenCbetPtr(v *ChannelNielsenCbetArgs) ChannelNielsenCbetPtrInput

type ChannelNielsenCbetPtrOutput added in v0.72.0

type ChannelNielsenCbetPtrOutput struct{ *pulumi.OutputState }

func (ChannelNielsenCbetPtrOutput) CbetCheckDigitString added in v0.72.0

func (o ChannelNielsenCbetPtrOutput) CbetCheckDigitString() pulumi.StringPtrOutput

func (ChannelNielsenCbetPtrOutput) CbetStepaside added in v0.72.0

func (ChannelNielsenCbetPtrOutput) Csid added in v0.72.0

func (ChannelNielsenCbetPtrOutput) Elem added in v0.72.0

func (ChannelNielsenCbetPtrOutput) ElementType added in v0.72.0

func (ChannelNielsenCbetPtrOutput) ToChannelNielsenCbetPtrOutput added in v0.72.0

func (o ChannelNielsenCbetPtrOutput) ToChannelNielsenCbetPtrOutput() ChannelNielsenCbetPtrOutput

func (ChannelNielsenCbetPtrOutput) ToChannelNielsenCbetPtrOutputWithContext added in v0.72.0

func (o ChannelNielsenCbetPtrOutput) ToChannelNielsenCbetPtrOutputWithContext(ctx context.Context) ChannelNielsenCbetPtrOutput

func (ChannelNielsenCbetPtrOutput) ToOutput added in v0.76.0

type ChannelNielsenConfiguration

type ChannelNielsenConfiguration struct {
	DistributorId          *string `pulumi:"distributorId"`
	NielsenPcmToId3Tagging *string `pulumi:"nielsenPcmToId3Tagging"`
}

type ChannelNielsenConfigurationArgs

type ChannelNielsenConfigurationArgs struct {
	DistributorId          pulumi.StringPtrInput `pulumi:"distributorId"`
	NielsenPcmToId3Tagging pulumi.StringPtrInput `pulumi:"nielsenPcmToId3Tagging"`
}

func (ChannelNielsenConfigurationArgs) ElementType

func (ChannelNielsenConfigurationArgs) ToChannelNielsenConfigurationOutput

func (i ChannelNielsenConfigurationArgs) ToChannelNielsenConfigurationOutput() ChannelNielsenConfigurationOutput

func (ChannelNielsenConfigurationArgs) ToChannelNielsenConfigurationOutputWithContext

func (i ChannelNielsenConfigurationArgs) ToChannelNielsenConfigurationOutputWithContext(ctx context.Context) ChannelNielsenConfigurationOutput

func (ChannelNielsenConfigurationArgs) ToChannelNielsenConfigurationPtrOutput

func (i ChannelNielsenConfigurationArgs) ToChannelNielsenConfigurationPtrOutput() ChannelNielsenConfigurationPtrOutput

func (ChannelNielsenConfigurationArgs) ToChannelNielsenConfigurationPtrOutputWithContext

func (i ChannelNielsenConfigurationArgs) ToChannelNielsenConfigurationPtrOutputWithContext(ctx context.Context) ChannelNielsenConfigurationPtrOutput

func (ChannelNielsenConfigurationArgs) ToOutput added in v0.76.0

type ChannelNielsenConfigurationInput

type ChannelNielsenConfigurationInput interface {
	pulumi.Input

	ToChannelNielsenConfigurationOutput() ChannelNielsenConfigurationOutput
	ToChannelNielsenConfigurationOutputWithContext(context.Context) ChannelNielsenConfigurationOutput
}

ChannelNielsenConfigurationInput is an input type that accepts ChannelNielsenConfigurationArgs and ChannelNielsenConfigurationOutput values. You can construct a concrete instance of `ChannelNielsenConfigurationInput` via:

ChannelNielsenConfigurationArgs{...}

type ChannelNielsenConfigurationOutput

type ChannelNielsenConfigurationOutput struct{ *pulumi.OutputState }

func (ChannelNielsenConfigurationOutput) DistributorId

func (ChannelNielsenConfigurationOutput) ElementType

func (ChannelNielsenConfigurationOutput) NielsenPcmToId3Tagging

func (o ChannelNielsenConfigurationOutput) NielsenPcmToId3Tagging() pulumi.StringPtrOutput

func (ChannelNielsenConfigurationOutput) ToChannelNielsenConfigurationOutput

func (o ChannelNielsenConfigurationOutput) ToChannelNielsenConfigurationOutput() ChannelNielsenConfigurationOutput

func (ChannelNielsenConfigurationOutput) ToChannelNielsenConfigurationOutputWithContext

func (o ChannelNielsenConfigurationOutput) ToChannelNielsenConfigurationOutputWithContext(ctx context.Context) ChannelNielsenConfigurationOutput

func (ChannelNielsenConfigurationOutput) ToChannelNielsenConfigurationPtrOutput

func (o ChannelNielsenConfigurationOutput) ToChannelNielsenConfigurationPtrOutput() ChannelNielsenConfigurationPtrOutput

func (ChannelNielsenConfigurationOutput) ToChannelNielsenConfigurationPtrOutputWithContext

func (o ChannelNielsenConfigurationOutput) ToChannelNielsenConfigurationPtrOutputWithContext(ctx context.Context) ChannelNielsenConfigurationPtrOutput

func (ChannelNielsenConfigurationOutput) ToOutput added in v0.76.0

type ChannelNielsenConfigurationPtrInput

type ChannelNielsenConfigurationPtrInput interface {
	pulumi.Input

	ToChannelNielsenConfigurationPtrOutput() ChannelNielsenConfigurationPtrOutput
	ToChannelNielsenConfigurationPtrOutputWithContext(context.Context) ChannelNielsenConfigurationPtrOutput
}

ChannelNielsenConfigurationPtrInput is an input type that accepts ChannelNielsenConfigurationArgs, ChannelNielsenConfigurationPtr and ChannelNielsenConfigurationPtrOutput values. You can construct a concrete instance of `ChannelNielsenConfigurationPtrInput` via:

        ChannelNielsenConfigurationArgs{...}

or:

        nil

type ChannelNielsenConfigurationPtrOutput

type ChannelNielsenConfigurationPtrOutput struct{ *pulumi.OutputState }

func (ChannelNielsenConfigurationPtrOutput) DistributorId

func (ChannelNielsenConfigurationPtrOutput) Elem

func (ChannelNielsenConfigurationPtrOutput) ElementType

func (ChannelNielsenConfigurationPtrOutput) NielsenPcmToId3Tagging

func (o ChannelNielsenConfigurationPtrOutput) NielsenPcmToId3Tagging() pulumi.StringPtrOutput

func (ChannelNielsenConfigurationPtrOutput) ToChannelNielsenConfigurationPtrOutput

func (o ChannelNielsenConfigurationPtrOutput) ToChannelNielsenConfigurationPtrOutput() ChannelNielsenConfigurationPtrOutput

func (ChannelNielsenConfigurationPtrOutput) ToChannelNielsenConfigurationPtrOutputWithContext

func (o ChannelNielsenConfigurationPtrOutput) ToChannelNielsenConfigurationPtrOutputWithContext(ctx context.Context) ChannelNielsenConfigurationPtrOutput

func (ChannelNielsenConfigurationPtrOutput) ToOutput added in v0.76.0

type ChannelNielsenNaesIiNw added in v0.9.0

type ChannelNielsenNaesIiNw struct {
	CheckDigitString *string  `pulumi:"checkDigitString"`
	Sid              *float64 `pulumi:"sid"`
	Timezone         *string  `pulumi:"timezone"`
}

type ChannelNielsenNaesIiNwArgs added in v0.9.0

type ChannelNielsenNaesIiNwArgs struct {
	CheckDigitString pulumi.StringPtrInput  `pulumi:"checkDigitString"`
	Sid              pulumi.Float64PtrInput `pulumi:"sid"`
	Timezone         pulumi.StringPtrInput  `pulumi:"timezone"`
}

func (ChannelNielsenNaesIiNwArgs) ElementType added in v0.9.0

func (ChannelNielsenNaesIiNwArgs) ElementType() reflect.Type

func (ChannelNielsenNaesIiNwArgs) ToChannelNielsenNaesIiNwOutput added in v0.9.0

func (i ChannelNielsenNaesIiNwArgs) ToChannelNielsenNaesIiNwOutput() ChannelNielsenNaesIiNwOutput

func (ChannelNielsenNaesIiNwArgs) ToChannelNielsenNaesIiNwOutputWithContext added in v0.9.0

func (i ChannelNielsenNaesIiNwArgs) ToChannelNielsenNaesIiNwOutputWithContext(ctx context.Context) ChannelNielsenNaesIiNwOutput

func (ChannelNielsenNaesIiNwArgs) ToChannelNielsenNaesIiNwPtrOutput added in v0.9.0

func (i ChannelNielsenNaesIiNwArgs) ToChannelNielsenNaesIiNwPtrOutput() ChannelNielsenNaesIiNwPtrOutput

func (ChannelNielsenNaesIiNwArgs) ToChannelNielsenNaesIiNwPtrOutputWithContext added in v0.9.0

func (i ChannelNielsenNaesIiNwArgs) ToChannelNielsenNaesIiNwPtrOutputWithContext(ctx context.Context) ChannelNielsenNaesIiNwPtrOutput

func (ChannelNielsenNaesIiNwArgs) ToOutput added in v0.76.0

type ChannelNielsenNaesIiNwInput added in v0.9.0

type ChannelNielsenNaesIiNwInput interface {
	pulumi.Input

	ToChannelNielsenNaesIiNwOutput() ChannelNielsenNaesIiNwOutput
	ToChannelNielsenNaesIiNwOutputWithContext(context.Context) ChannelNielsenNaesIiNwOutput
}

ChannelNielsenNaesIiNwInput is an input type that accepts ChannelNielsenNaesIiNwArgs and ChannelNielsenNaesIiNwOutput values. You can construct a concrete instance of `ChannelNielsenNaesIiNwInput` via:

ChannelNielsenNaesIiNwArgs{...}

type ChannelNielsenNaesIiNwOutput added in v0.9.0

type ChannelNielsenNaesIiNwOutput struct{ *pulumi.OutputState }

func (ChannelNielsenNaesIiNwOutput) CheckDigitString added in v0.9.0

func (ChannelNielsenNaesIiNwOutput) ElementType added in v0.9.0

func (ChannelNielsenNaesIiNwOutput) Sid added in v0.9.0

func (ChannelNielsenNaesIiNwOutput) Timezone added in v0.59.0

func (ChannelNielsenNaesIiNwOutput) ToChannelNielsenNaesIiNwOutput added in v0.9.0

func (o ChannelNielsenNaesIiNwOutput) ToChannelNielsenNaesIiNwOutput() ChannelNielsenNaesIiNwOutput

func (ChannelNielsenNaesIiNwOutput) ToChannelNielsenNaesIiNwOutputWithContext added in v0.9.0

func (o ChannelNielsenNaesIiNwOutput) ToChannelNielsenNaesIiNwOutputWithContext(ctx context.Context) ChannelNielsenNaesIiNwOutput

func (ChannelNielsenNaesIiNwOutput) ToChannelNielsenNaesIiNwPtrOutput added in v0.9.0

func (o ChannelNielsenNaesIiNwOutput) ToChannelNielsenNaesIiNwPtrOutput() ChannelNielsenNaesIiNwPtrOutput

func (ChannelNielsenNaesIiNwOutput) ToChannelNielsenNaesIiNwPtrOutputWithContext added in v0.9.0

func (o ChannelNielsenNaesIiNwOutput) ToChannelNielsenNaesIiNwPtrOutputWithContext(ctx context.Context) ChannelNielsenNaesIiNwPtrOutput

func (ChannelNielsenNaesIiNwOutput) ToOutput added in v0.76.0

type ChannelNielsenNaesIiNwPtrInput added in v0.9.0

type ChannelNielsenNaesIiNwPtrInput interface {
	pulumi.Input

	ToChannelNielsenNaesIiNwPtrOutput() ChannelNielsenNaesIiNwPtrOutput
	ToChannelNielsenNaesIiNwPtrOutputWithContext(context.Context) ChannelNielsenNaesIiNwPtrOutput
}

ChannelNielsenNaesIiNwPtrInput is an input type that accepts ChannelNielsenNaesIiNwArgs, ChannelNielsenNaesIiNwPtr and ChannelNielsenNaesIiNwPtrOutput values. You can construct a concrete instance of `ChannelNielsenNaesIiNwPtrInput` via:

        ChannelNielsenNaesIiNwArgs{...}

or:

        nil

func ChannelNielsenNaesIiNwPtr added in v0.9.0

func ChannelNielsenNaesIiNwPtr(v *ChannelNielsenNaesIiNwArgs) ChannelNielsenNaesIiNwPtrInput

type ChannelNielsenNaesIiNwPtrOutput added in v0.9.0

type ChannelNielsenNaesIiNwPtrOutput struct{ *pulumi.OutputState }

func (ChannelNielsenNaesIiNwPtrOutput) CheckDigitString added in v0.9.0

func (ChannelNielsenNaesIiNwPtrOutput) Elem added in v0.9.0

func (ChannelNielsenNaesIiNwPtrOutput) ElementType added in v0.9.0

func (ChannelNielsenNaesIiNwPtrOutput) Sid added in v0.9.0

func (ChannelNielsenNaesIiNwPtrOutput) Timezone added in v0.59.0

func (ChannelNielsenNaesIiNwPtrOutput) ToChannelNielsenNaesIiNwPtrOutput added in v0.9.0

func (o ChannelNielsenNaesIiNwPtrOutput) ToChannelNielsenNaesIiNwPtrOutput() ChannelNielsenNaesIiNwPtrOutput

func (ChannelNielsenNaesIiNwPtrOutput) ToChannelNielsenNaesIiNwPtrOutputWithContext added in v0.9.0

func (o ChannelNielsenNaesIiNwPtrOutput) ToChannelNielsenNaesIiNwPtrOutputWithContext(ctx context.Context) ChannelNielsenNaesIiNwPtrOutput

func (ChannelNielsenNaesIiNwPtrOutput) ToOutput added in v0.76.0

type ChannelNielsenWatermarksSettings added in v0.9.0

type ChannelNielsenWatermarksSettings struct {
	NielsenCbetSettings     *ChannelNielsenCbet     `pulumi:"nielsenCbetSettings"`
	NielsenDistributionType *string                 `pulumi:"nielsenDistributionType"`
	NielsenNaesIiNwSettings *ChannelNielsenNaesIiNw `pulumi:"nielsenNaesIiNwSettings"`
}

type ChannelNielsenWatermarksSettingsArgs added in v0.9.0

type ChannelNielsenWatermarksSettingsArgs struct {
	NielsenCbetSettings     ChannelNielsenCbetPtrInput     `pulumi:"nielsenCbetSettings"`
	NielsenDistributionType pulumi.StringPtrInput          `pulumi:"nielsenDistributionType"`
	NielsenNaesIiNwSettings ChannelNielsenNaesIiNwPtrInput `pulumi:"nielsenNaesIiNwSettings"`
}

func (ChannelNielsenWatermarksSettingsArgs) ElementType added in v0.9.0

func (ChannelNielsenWatermarksSettingsArgs) ToChannelNielsenWatermarksSettingsOutput added in v0.9.0

func (i ChannelNielsenWatermarksSettingsArgs) ToChannelNielsenWatermarksSettingsOutput() ChannelNielsenWatermarksSettingsOutput

func (ChannelNielsenWatermarksSettingsArgs) ToChannelNielsenWatermarksSettingsOutputWithContext added in v0.9.0

func (i ChannelNielsenWatermarksSettingsArgs) ToChannelNielsenWatermarksSettingsOutputWithContext(ctx context.Context) ChannelNielsenWatermarksSettingsOutput

func (ChannelNielsenWatermarksSettingsArgs) ToChannelNielsenWatermarksSettingsPtrOutput added in v0.9.0

func (i ChannelNielsenWatermarksSettingsArgs) ToChannelNielsenWatermarksSettingsPtrOutput() ChannelNielsenWatermarksSettingsPtrOutput

func (ChannelNielsenWatermarksSettingsArgs) ToChannelNielsenWatermarksSettingsPtrOutputWithContext added in v0.9.0

func (i ChannelNielsenWatermarksSettingsArgs) ToChannelNielsenWatermarksSettingsPtrOutputWithContext(ctx context.Context) ChannelNielsenWatermarksSettingsPtrOutput

func (ChannelNielsenWatermarksSettingsArgs) ToOutput added in v0.76.0

type ChannelNielsenWatermarksSettingsInput added in v0.9.0

type ChannelNielsenWatermarksSettingsInput interface {
	pulumi.Input

	ToChannelNielsenWatermarksSettingsOutput() ChannelNielsenWatermarksSettingsOutput
	ToChannelNielsenWatermarksSettingsOutputWithContext(context.Context) ChannelNielsenWatermarksSettingsOutput
}

ChannelNielsenWatermarksSettingsInput is an input type that accepts ChannelNielsenWatermarksSettingsArgs and ChannelNielsenWatermarksSettingsOutput values. You can construct a concrete instance of `ChannelNielsenWatermarksSettingsInput` via:

ChannelNielsenWatermarksSettingsArgs{...}

type ChannelNielsenWatermarksSettingsOutput added in v0.9.0

type ChannelNielsenWatermarksSettingsOutput struct{ *pulumi.OutputState }

func (ChannelNielsenWatermarksSettingsOutput) ElementType added in v0.9.0

func (ChannelNielsenWatermarksSettingsOutput) NielsenCbetSettings added in v0.9.0

func (ChannelNielsenWatermarksSettingsOutput) NielsenDistributionType added in v0.9.0

func (ChannelNielsenWatermarksSettingsOutput) NielsenNaesIiNwSettings added in v0.9.0

func (ChannelNielsenWatermarksSettingsOutput) ToChannelNielsenWatermarksSettingsOutput added in v0.9.0

func (o ChannelNielsenWatermarksSettingsOutput) ToChannelNielsenWatermarksSettingsOutput() ChannelNielsenWatermarksSettingsOutput

func (ChannelNielsenWatermarksSettingsOutput) ToChannelNielsenWatermarksSettingsOutputWithContext added in v0.9.0

func (o ChannelNielsenWatermarksSettingsOutput) ToChannelNielsenWatermarksSettingsOutputWithContext(ctx context.Context) ChannelNielsenWatermarksSettingsOutput

func (ChannelNielsenWatermarksSettingsOutput) ToChannelNielsenWatermarksSettingsPtrOutput added in v0.9.0

func (o ChannelNielsenWatermarksSettingsOutput) ToChannelNielsenWatermarksSettingsPtrOutput() ChannelNielsenWatermarksSettingsPtrOutput

func (ChannelNielsenWatermarksSettingsOutput) ToChannelNielsenWatermarksSettingsPtrOutputWithContext added in v0.9.0

func (o ChannelNielsenWatermarksSettingsOutput) ToChannelNielsenWatermarksSettingsPtrOutputWithContext(ctx context.Context) ChannelNielsenWatermarksSettingsPtrOutput

func (ChannelNielsenWatermarksSettingsOutput) ToOutput added in v0.76.0

type ChannelNielsenWatermarksSettingsPtrInput added in v0.9.0

type ChannelNielsenWatermarksSettingsPtrInput interface {
	pulumi.Input

	ToChannelNielsenWatermarksSettingsPtrOutput() ChannelNielsenWatermarksSettingsPtrOutput
	ToChannelNielsenWatermarksSettingsPtrOutputWithContext(context.Context) ChannelNielsenWatermarksSettingsPtrOutput
}

ChannelNielsenWatermarksSettingsPtrInput is an input type that accepts ChannelNielsenWatermarksSettingsArgs, ChannelNielsenWatermarksSettingsPtr and ChannelNielsenWatermarksSettingsPtrOutput values. You can construct a concrete instance of `ChannelNielsenWatermarksSettingsPtrInput` via:

        ChannelNielsenWatermarksSettingsArgs{...}

or:

        nil

type ChannelNielsenWatermarksSettingsPtrOutput added in v0.9.0

type ChannelNielsenWatermarksSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelNielsenWatermarksSettingsPtrOutput) Elem added in v0.9.0

func (ChannelNielsenWatermarksSettingsPtrOutput) ElementType added in v0.9.0

func (ChannelNielsenWatermarksSettingsPtrOutput) NielsenCbetSettings added in v0.9.0

func (ChannelNielsenWatermarksSettingsPtrOutput) NielsenDistributionType added in v0.9.0

func (ChannelNielsenWatermarksSettingsPtrOutput) NielsenNaesIiNwSettings added in v0.9.0

func (ChannelNielsenWatermarksSettingsPtrOutput) ToChannelNielsenWatermarksSettingsPtrOutput added in v0.9.0

func (o ChannelNielsenWatermarksSettingsPtrOutput) ToChannelNielsenWatermarksSettingsPtrOutput() ChannelNielsenWatermarksSettingsPtrOutput

func (ChannelNielsenWatermarksSettingsPtrOutput) ToChannelNielsenWatermarksSettingsPtrOutputWithContext added in v0.9.0

func (o ChannelNielsenWatermarksSettingsPtrOutput) ToChannelNielsenWatermarksSettingsPtrOutputWithContext(ctx context.Context) ChannelNielsenWatermarksSettingsPtrOutput

func (ChannelNielsenWatermarksSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelOutput

type ChannelOutput struct{ *pulumi.OutputState }

func (ChannelOutput) Arn added in v0.17.0

func (ChannelOutput) CdiInputSpecification added in v0.17.0

func (o ChannelOutput) CdiInputSpecification() ChannelCdiInputSpecificationPtrOutput

func (ChannelOutput) ChannelClass added in v0.17.0

func (o ChannelOutput) ChannelClass() pulumi.StringPtrOutput

func (ChannelOutput) Destinations added in v0.17.0

func (ChannelOutput) ElementType

func (ChannelOutput) ElementType() reflect.Type

func (ChannelOutput) EncoderSettings added in v0.17.0

func (o ChannelOutput) EncoderSettings() ChannelEncoderSettingsPtrOutput

func (ChannelOutput) InputAttachments added in v0.17.0

func (o ChannelOutput) InputAttachments() ChannelInputAttachmentArrayOutput

func (ChannelOutput) InputSpecification added in v0.17.0

func (o ChannelOutput) InputSpecification() ChannelInputSpecificationPtrOutput

func (ChannelOutput) Inputs added in v0.17.0

func (ChannelOutput) LogLevel added in v0.17.0

func (o ChannelOutput) LogLevel() pulumi.StringPtrOutput

func (ChannelOutput) Maintenance added in v0.59.0

func (ChannelOutput) Name added in v0.17.0

func (ChannelOutput) RoleArn added in v0.17.0

func (o ChannelOutput) RoleArn() pulumi.StringPtrOutput

func (ChannelOutput) Tags added in v0.17.0

func (o ChannelOutput) Tags() pulumi.AnyOutput

func (ChannelOutput) ToChannelOutput

func (o ChannelOutput) ToChannelOutput() ChannelOutput

func (ChannelOutput) ToChannelOutputWithContext

func (o ChannelOutput) ToChannelOutputWithContext(ctx context.Context) ChannelOutput

func (ChannelOutput) ToOutput added in v0.76.0

func (o ChannelOutput) ToOutput(ctx context.Context) pulumix.Output[*Channel]

func (ChannelOutput) Vpc added in v0.17.0

type ChannelOutputDestination

type ChannelOutputDestination struct {
	Id                   *string                                            `pulumi:"id"`
	MediaPackageSettings []ChannelMediaPackageOutputDestinationSettings     `pulumi:"mediaPackageSettings"`
	MultiplexSettings    *ChannelMultiplexProgramChannelDestinationSettings `pulumi:"multiplexSettings"`
	Settings             []ChannelOutputDestinationSettings                 `pulumi:"settings"`
}

type ChannelOutputDestinationArgs

type ChannelOutputDestinationArgs struct {
	Id                   pulumi.StringPtrInput                                     `pulumi:"id"`
	MediaPackageSettings ChannelMediaPackageOutputDestinationSettingsArrayInput    `pulumi:"mediaPackageSettings"`
	MultiplexSettings    ChannelMultiplexProgramChannelDestinationSettingsPtrInput `pulumi:"multiplexSettings"`
	Settings             ChannelOutputDestinationSettingsArrayInput                `pulumi:"settings"`
}

func (ChannelOutputDestinationArgs) ElementType

func (ChannelOutputDestinationArgs) ToChannelOutputDestinationOutput

func (i ChannelOutputDestinationArgs) ToChannelOutputDestinationOutput() ChannelOutputDestinationOutput

func (ChannelOutputDestinationArgs) ToChannelOutputDestinationOutputWithContext

func (i ChannelOutputDestinationArgs) ToChannelOutputDestinationOutputWithContext(ctx context.Context) ChannelOutputDestinationOutput

func (ChannelOutputDestinationArgs) ToOutput added in v0.76.0

type ChannelOutputDestinationArray

type ChannelOutputDestinationArray []ChannelOutputDestinationInput

func (ChannelOutputDestinationArray) ElementType

func (ChannelOutputDestinationArray) ToChannelOutputDestinationArrayOutput

func (i ChannelOutputDestinationArray) ToChannelOutputDestinationArrayOutput() ChannelOutputDestinationArrayOutput

func (ChannelOutputDestinationArray) ToChannelOutputDestinationArrayOutputWithContext

func (i ChannelOutputDestinationArray) ToChannelOutputDestinationArrayOutputWithContext(ctx context.Context) ChannelOutputDestinationArrayOutput

func (ChannelOutputDestinationArray) ToOutput added in v0.76.0

type ChannelOutputDestinationArrayInput

type ChannelOutputDestinationArrayInput interface {
	pulumi.Input

	ToChannelOutputDestinationArrayOutput() ChannelOutputDestinationArrayOutput
	ToChannelOutputDestinationArrayOutputWithContext(context.Context) ChannelOutputDestinationArrayOutput
}

ChannelOutputDestinationArrayInput is an input type that accepts ChannelOutputDestinationArray and ChannelOutputDestinationArrayOutput values. You can construct a concrete instance of `ChannelOutputDestinationArrayInput` via:

ChannelOutputDestinationArray{ ChannelOutputDestinationArgs{...} }

type ChannelOutputDestinationArrayOutput

type ChannelOutputDestinationArrayOutput struct{ *pulumi.OutputState }

func (ChannelOutputDestinationArrayOutput) ElementType

func (ChannelOutputDestinationArrayOutput) Index

func (ChannelOutputDestinationArrayOutput) ToChannelOutputDestinationArrayOutput

func (o ChannelOutputDestinationArrayOutput) ToChannelOutputDestinationArrayOutput() ChannelOutputDestinationArrayOutput

func (ChannelOutputDestinationArrayOutput) ToChannelOutputDestinationArrayOutputWithContext

func (o ChannelOutputDestinationArrayOutput) ToChannelOutputDestinationArrayOutputWithContext(ctx context.Context) ChannelOutputDestinationArrayOutput

func (ChannelOutputDestinationArrayOutput) ToOutput added in v0.76.0

type ChannelOutputDestinationInput

type ChannelOutputDestinationInput interface {
	pulumi.Input

	ToChannelOutputDestinationOutput() ChannelOutputDestinationOutput
	ToChannelOutputDestinationOutputWithContext(context.Context) ChannelOutputDestinationOutput
}

ChannelOutputDestinationInput is an input type that accepts ChannelOutputDestinationArgs and ChannelOutputDestinationOutput values. You can construct a concrete instance of `ChannelOutputDestinationInput` via:

ChannelOutputDestinationArgs{...}

type ChannelOutputDestinationOutput

type ChannelOutputDestinationOutput struct{ *pulumi.OutputState }

func (ChannelOutputDestinationOutput) ElementType

func (ChannelOutputDestinationOutput) Id

func (ChannelOutputDestinationOutput) MediaPackageSettings

func (ChannelOutputDestinationOutput) MultiplexSettings

func (ChannelOutputDestinationOutput) Settings

func (ChannelOutputDestinationOutput) ToChannelOutputDestinationOutput

func (o ChannelOutputDestinationOutput) ToChannelOutputDestinationOutput() ChannelOutputDestinationOutput

func (ChannelOutputDestinationOutput) ToChannelOutputDestinationOutputWithContext

func (o ChannelOutputDestinationOutput) ToChannelOutputDestinationOutputWithContext(ctx context.Context) ChannelOutputDestinationOutput

func (ChannelOutputDestinationOutput) ToOutput added in v0.76.0

type ChannelOutputDestinationSettings

type ChannelOutputDestinationSettings struct {
	PasswordParam *string `pulumi:"passwordParam"`
	StreamName    *string `pulumi:"streamName"`
	Url           *string `pulumi:"url"`
	Username      *string `pulumi:"username"`
}

type ChannelOutputDestinationSettingsArgs

type ChannelOutputDestinationSettingsArgs struct {
	PasswordParam pulumi.StringPtrInput `pulumi:"passwordParam"`
	StreamName    pulumi.StringPtrInput `pulumi:"streamName"`
	Url           pulumi.StringPtrInput `pulumi:"url"`
	Username      pulumi.StringPtrInput `pulumi:"username"`
}

func (ChannelOutputDestinationSettingsArgs) ElementType

func (ChannelOutputDestinationSettingsArgs) ToChannelOutputDestinationSettingsOutput

func (i ChannelOutputDestinationSettingsArgs) ToChannelOutputDestinationSettingsOutput() ChannelOutputDestinationSettingsOutput

func (ChannelOutputDestinationSettingsArgs) ToChannelOutputDestinationSettingsOutputWithContext

func (i ChannelOutputDestinationSettingsArgs) ToChannelOutputDestinationSettingsOutputWithContext(ctx context.Context) ChannelOutputDestinationSettingsOutput

func (ChannelOutputDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelOutputDestinationSettingsArray

type ChannelOutputDestinationSettingsArray []ChannelOutputDestinationSettingsInput

func (ChannelOutputDestinationSettingsArray) ElementType

func (ChannelOutputDestinationSettingsArray) ToChannelOutputDestinationSettingsArrayOutput

func (i ChannelOutputDestinationSettingsArray) ToChannelOutputDestinationSettingsArrayOutput() ChannelOutputDestinationSettingsArrayOutput

func (ChannelOutputDestinationSettingsArray) ToChannelOutputDestinationSettingsArrayOutputWithContext

func (i ChannelOutputDestinationSettingsArray) ToChannelOutputDestinationSettingsArrayOutputWithContext(ctx context.Context) ChannelOutputDestinationSettingsArrayOutput

func (ChannelOutputDestinationSettingsArray) ToOutput added in v0.76.0

type ChannelOutputDestinationSettingsArrayInput

type ChannelOutputDestinationSettingsArrayInput interface {
	pulumi.Input

	ToChannelOutputDestinationSettingsArrayOutput() ChannelOutputDestinationSettingsArrayOutput
	ToChannelOutputDestinationSettingsArrayOutputWithContext(context.Context) ChannelOutputDestinationSettingsArrayOutput
}

ChannelOutputDestinationSettingsArrayInput is an input type that accepts ChannelOutputDestinationSettingsArray and ChannelOutputDestinationSettingsArrayOutput values. You can construct a concrete instance of `ChannelOutputDestinationSettingsArrayInput` via:

ChannelOutputDestinationSettingsArray{ ChannelOutputDestinationSettingsArgs{...} }

type ChannelOutputDestinationSettingsArrayOutput

type ChannelOutputDestinationSettingsArrayOutput struct{ *pulumi.OutputState }

func (ChannelOutputDestinationSettingsArrayOutput) ElementType

func (ChannelOutputDestinationSettingsArrayOutput) Index

func (ChannelOutputDestinationSettingsArrayOutput) ToChannelOutputDestinationSettingsArrayOutput

func (o ChannelOutputDestinationSettingsArrayOutput) ToChannelOutputDestinationSettingsArrayOutput() ChannelOutputDestinationSettingsArrayOutput

func (ChannelOutputDestinationSettingsArrayOutput) ToChannelOutputDestinationSettingsArrayOutputWithContext

func (o ChannelOutputDestinationSettingsArrayOutput) ToChannelOutputDestinationSettingsArrayOutputWithContext(ctx context.Context) ChannelOutputDestinationSettingsArrayOutput

func (ChannelOutputDestinationSettingsArrayOutput) ToOutput added in v0.76.0

type ChannelOutputDestinationSettingsInput

type ChannelOutputDestinationSettingsInput interface {
	pulumi.Input

	ToChannelOutputDestinationSettingsOutput() ChannelOutputDestinationSettingsOutput
	ToChannelOutputDestinationSettingsOutputWithContext(context.Context) ChannelOutputDestinationSettingsOutput
}

ChannelOutputDestinationSettingsInput is an input type that accepts ChannelOutputDestinationSettingsArgs and ChannelOutputDestinationSettingsOutput values. You can construct a concrete instance of `ChannelOutputDestinationSettingsInput` via:

ChannelOutputDestinationSettingsArgs{...}

type ChannelOutputDestinationSettingsOutput

type ChannelOutputDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelOutputDestinationSettingsOutput) ElementType

func (ChannelOutputDestinationSettingsOutput) PasswordParam

func (ChannelOutputDestinationSettingsOutput) StreamName

func (ChannelOutputDestinationSettingsOutput) ToChannelOutputDestinationSettingsOutput

func (o ChannelOutputDestinationSettingsOutput) ToChannelOutputDestinationSettingsOutput() ChannelOutputDestinationSettingsOutput

func (ChannelOutputDestinationSettingsOutput) ToChannelOutputDestinationSettingsOutputWithContext

func (o ChannelOutputDestinationSettingsOutput) ToChannelOutputDestinationSettingsOutputWithContext(ctx context.Context) ChannelOutputDestinationSettingsOutput

func (ChannelOutputDestinationSettingsOutput) ToOutput added in v0.76.0

func (ChannelOutputDestinationSettingsOutput) Url

func (ChannelOutputDestinationSettingsOutput) Username

type ChannelOutputGroup

type ChannelOutputGroup struct {
	Name                *string                     `pulumi:"name"`
	OutputGroupSettings *ChannelOutputGroupSettings `pulumi:"outputGroupSettings"`
	Outputs             []ChannelOutputType         `pulumi:"outputs"`
}

type ChannelOutputGroupArgs

type ChannelOutputGroupArgs struct {
	Name                pulumi.StringPtrInput              `pulumi:"name"`
	OutputGroupSettings ChannelOutputGroupSettingsPtrInput `pulumi:"outputGroupSettings"`
	Outputs             ChannelOutputTypeArrayInput        `pulumi:"outputs"`
}

func (ChannelOutputGroupArgs) ElementType

func (ChannelOutputGroupArgs) ElementType() reflect.Type

func (ChannelOutputGroupArgs) ToChannelOutputGroupOutput

func (i ChannelOutputGroupArgs) ToChannelOutputGroupOutput() ChannelOutputGroupOutput

func (ChannelOutputGroupArgs) ToChannelOutputGroupOutputWithContext

func (i ChannelOutputGroupArgs) ToChannelOutputGroupOutputWithContext(ctx context.Context) ChannelOutputGroupOutput

func (ChannelOutputGroupArgs) ToOutput added in v0.76.0

type ChannelOutputGroupArray

type ChannelOutputGroupArray []ChannelOutputGroupInput

func (ChannelOutputGroupArray) ElementType

func (ChannelOutputGroupArray) ElementType() reflect.Type

func (ChannelOutputGroupArray) ToChannelOutputGroupArrayOutput

func (i ChannelOutputGroupArray) ToChannelOutputGroupArrayOutput() ChannelOutputGroupArrayOutput

func (ChannelOutputGroupArray) ToChannelOutputGroupArrayOutputWithContext

func (i ChannelOutputGroupArray) ToChannelOutputGroupArrayOutputWithContext(ctx context.Context) ChannelOutputGroupArrayOutput

func (ChannelOutputGroupArray) ToOutput added in v0.76.0

type ChannelOutputGroupArrayInput

type ChannelOutputGroupArrayInput interface {
	pulumi.Input

	ToChannelOutputGroupArrayOutput() ChannelOutputGroupArrayOutput
	ToChannelOutputGroupArrayOutputWithContext(context.Context) ChannelOutputGroupArrayOutput
}

ChannelOutputGroupArrayInput is an input type that accepts ChannelOutputGroupArray and ChannelOutputGroupArrayOutput values. You can construct a concrete instance of `ChannelOutputGroupArrayInput` via:

ChannelOutputGroupArray{ ChannelOutputGroupArgs{...} }

type ChannelOutputGroupArrayOutput

type ChannelOutputGroupArrayOutput struct{ *pulumi.OutputState }

func (ChannelOutputGroupArrayOutput) ElementType

func (ChannelOutputGroupArrayOutput) Index

func (ChannelOutputGroupArrayOutput) ToChannelOutputGroupArrayOutput

func (o ChannelOutputGroupArrayOutput) ToChannelOutputGroupArrayOutput() ChannelOutputGroupArrayOutput

func (ChannelOutputGroupArrayOutput) ToChannelOutputGroupArrayOutputWithContext

func (o ChannelOutputGroupArrayOutput) ToChannelOutputGroupArrayOutputWithContext(ctx context.Context) ChannelOutputGroupArrayOutput

func (ChannelOutputGroupArrayOutput) ToOutput added in v0.76.0

type ChannelOutputGroupInput

type ChannelOutputGroupInput interface {
	pulumi.Input

	ToChannelOutputGroupOutput() ChannelOutputGroupOutput
	ToChannelOutputGroupOutputWithContext(context.Context) ChannelOutputGroupOutput
}

ChannelOutputGroupInput is an input type that accepts ChannelOutputGroupArgs and ChannelOutputGroupOutput values. You can construct a concrete instance of `ChannelOutputGroupInput` via:

ChannelOutputGroupArgs{...}

type ChannelOutputGroupOutput

type ChannelOutputGroupOutput struct{ *pulumi.OutputState }

func (ChannelOutputGroupOutput) ElementType

func (ChannelOutputGroupOutput) ElementType() reflect.Type

func (ChannelOutputGroupOutput) Name

func (ChannelOutputGroupOutput) OutputGroupSettings

func (ChannelOutputGroupOutput) Outputs

func (ChannelOutputGroupOutput) ToChannelOutputGroupOutput

func (o ChannelOutputGroupOutput) ToChannelOutputGroupOutput() ChannelOutputGroupOutput

func (ChannelOutputGroupOutput) ToChannelOutputGroupOutputWithContext

func (o ChannelOutputGroupOutput) ToChannelOutputGroupOutputWithContext(ctx context.Context) ChannelOutputGroupOutput

func (ChannelOutputGroupOutput) ToOutput added in v0.76.0

type ChannelOutputGroupSettings

type ChannelOutputGroupSettings struct {
	ArchiveGroupSettings      *ChannelArchiveGroupSettings      `pulumi:"archiveGroupSettings"`
	FrameCaptureGroupSettings *ChannelFrameCaptureGroupSettings `pulumi:"frameCaptureGroupSettings"`
	HlsGroupSettings          *ChannelHlsGroupSettings          `pulumi:"hlsGroupSettings"`
	MediaPackageGroupSettings *ChannelMediaPackageGroupSettings `pulumi:"mediaPackageGroupSettings"`
	MsSmoothGroupSettings     *ChannelMsSmoothGroupSettings     `pulumi:"msSmoothGroupSettings"`
	MultiplexGroupSettings    *ChannelMultiplexGroupSettings    `pulumi:"multiplexGroupSettings"`
	RtmpGroupSettings         *ChannelRtmpGroupSettings         `pulumi:"rtmpGroupSettings"`
	UdpGroupSettings          *ChannelUdpGroupSettings          `pulumi:"udpGroupSettings"`
}

type ChannelOutputGroupSettingsArgs

type ChannelOutputGroupSettingsArgs struct {
	ArchiveGroupSettings      ChannelArchiveGroupSettingsPtrInput      `pulumi:"archiveGroupSettings"`
	FrameCaptureGroupSettings ChannelFrameCaptureGroupSettingsPtrInput `pulumi:"frameCaptureGroupSettings"`
	HlsGroupSettings          ChannelHlsGroupSettingsPtrInput          `pulumi:"hlsGroupSettings"`
	MediaPackageGroupSettings ChannelMediaPackageGroupSettingsPtrInput `pulumi:"mediaPackageGroupSettings"`
	MsSmoothGroupSettings     ChannelMsSmoothGroupSettingsPtrInput     `pulumi:"msSmoothGroupSettings"`
	MultiplexGroupSettings    ChannelMultiplexGroupSettingsPtrInput    `pulumi:"multiplexGroupSettings"`
	RtmpGroupSettings         ChannelRtmpGroupSettingsPtrInput         `pulumi:"rtmpGroupSettings"`
	UdpGroupSettings          ChannelUdpGroupSettingsPtrInput          `pulumi:"udpGroupSettings"`
}

func (ChannelOutputGroupSettingsArgs) ElementType

func (ChannelOutputGroupSettingsArgs) ToChannelOutputGroupSettingsOutput

func (i ChannelOutputGroupSettingsArgs) ToChannelOutputGroupSettingsOutput() ChannelOutputGroupSettingsOutput

func (ChannelOutputGroupSettingsArgs) ToChannelOutputGroupSettingsOutputWithContext

func (i ChannelOutputGroupSettingsArgs) ToChannelOutputGroupSettingsOutputWithContext(ctx context.Context) ChannelOutputGroupSettingsOutput

func (ChannelOutputGroupSettingsArgs) ToChannelOutputGroupSettingsPtrOutput

func (i ChannelOutputGroupSettingsArgs) ToChannelOutputGroupSettingsPtrOutput() ChannelOutputGroupSettingsPtrOutput

func (ChannelOutputGroupSettingsArgs) ToChannelOutputGroupSettingsPtrOutputWithContext

func (i ChannelOutputGroupSettingsArgs) ToChannelOutputGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelOutputGroupSettingsPtrOutput

func (ChannelOutputGroupSettingsArgs) ToOutput added in v0.76.0

type ChannelOutputGroupSettingsInput

type ChannelOutputGroupSettingsInput interface {
	pulumi.Input

	ToChannelOutputGroupSettingsOutput() ChannelOutputGroupSettingsOutput
	ToChannelOutputGroupSettingsOutputWithContext(context.Context) ChannelOutputGroupSettingsOutput
}

ChannelOutputGroupSettingsInput is an input type that accepts ChannelOutputGroupSettingsArgs and ChannelOutputGroupSettingsOutput values. You can construct a concrete instance of `ChannelOutputGroupSettingsInput` via:

ChannelOutputGroupSettingsArgs{...}

type ChannelOutputGroupSettingsOutput

type ChannelOutputGroupSettingsOutput struct{ *pulumi.OutputState }

func (ChannelOutputGroupSettingsOutput) ArchiveGroupSettings

func (ChannelOutputGroupSettingsOutput) ElementType

func (ChannelOutputGroupSettingsOutput) FrameCaptureGroupSettings

func (ChannelOutputGroupSettingsOutput) HlsGroupSettings

func (ChannelOutputGroupSettingsOutput) MediaPackageGroupSettings

func (ChannelOutputGroupSettingsOutput) MsSmoothGroupSettings

func (ChannelOutputGroupSettingsOutput) MultiplexGroupSettings

func (ChannelOutputGroupSettingsOutput) RtmpGroupSettings

func (ChannelOutputGroupSettingsOutput) ToChannelOutputGroupSettingsOutput

func (o ChannelOutputGroupSettingsOutput) ToChannelOutputGroupSettingsOutput() ChannelOutputGroupSettingsOutput

func (ChannelOutputGroupSettingsOutput) ToChannelOutputGroupSettingsOutputWithContext

func (o ChannelOutputGroupSettingsOutput) ToChannelOutputGroupSettingsOutputWithContext(ctx context.Context) ChannelOutputGroupSettingsOutput

func (ChannelOutputGroupSettingsOutput) ToChannelOutputGroupSettingsPtrOutput

func (o ChannelOutputGroupSettingsOutput) ToChannelOutputGroupSettingsPtrOutput() ChannelOutputGroupSettingsPtrOutput

func (ChannelOutputGroupSettingsOutput) ToChannelOutputGroupSettingsPtrOutputWithContext

func (o ChannelOutputGroupSettingsOutput) ToChannelOutputGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelOutputGroupSettingsPtrOutput

func (ChannelOutputGroupSettingsOutput) ToOutput added in v0.76.0

func (ChannelOutputGroupSettingsOutput) UdpGroupSettings

type ChannelOutputGroupSettingsPtrInput

type ChannelOutputGroupSettingsPtrInput interface {
	pulumi.Input

	ToChannelOutputGroupSettingsPtrOutput() ChannelOutputGroupSettingsPtrOutput
	ToChannelOutputGroupSettingsPtrOutputWithContext(context.Context) ChannelOutputGroupSettingsPtrOutput
}

ChannelOutputGroupSettingsPtrInput is an input type that accepts ChannelOutputGroupSettingsArgs, ChannelOutputGroupSettingsPtr and ChannelOutputGroupSettingsPtrOutput values. You can construct a concrete instance of `ChannelOutputGroupSettingsPtrInput` via:

        ChannelOutputGroupSettingsArgs{...}

or:

        nil

type ChannelOutputGroupSettingsPtrOutput

type ChannelOutputGroupSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelOutputGroupSettingsPtrOutput) ArchiveGroupSettings

func (ChannelOutputGroupSettingsPtrOutput) Elem

func (ChannelOutputGroupSettingsPtrOutput) ElementType

func (ChannelOutputGroupSettingsPtrOutput) FrameCaptureGroupSettings

func (ChannelOutputGroupSettingsPtrOutput) HlsGroupSettings

func (ChannelOutputGroupSettingsPtrOutput) MediaPackageGroupSettings

func (ChannelOutputGroupSettingsPtrOutput) MsSmoothGroupSettings

func (ChannelOutputGroupSettingsPtrOutput) MultiplexGroupSettings

func (ChannelOutputGroupSettingsPtrOutput) RtmpGroupSettings

func (ChannelOutputGroupSettingsPtrOutput) ToChannelOutputGroupSettingsPtrOutput

func (o ChannelOutputGroupSettingsPtrOutput) ToChannelOutputGroupSettingsPtrOutput() ChannelOutputGroupSettingsPtrOutput

func (ChannelOutputGroupSettingsPtrOutput) ToChannelOutputGroupSettingsPtrOutputWithContext

func (o ChannelOutputGroupSettingsPtrOutput) ToChannelOutputGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelOutputGroupSettingsPtrOutput

func (ChannelOutputGroupSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelOutputGroupSettingsPtrOutput) UdpGroupSettings

type ChannelOutputLocationRef

type ChannelOutputLocationRef struct {
	DestinationRefId *string `pulumi:"destinationRefId"`
}

type ChannelOutputLocationRefArgs

type ChannelOutputLocationRefArgs struct {
	DestinationRefId pulumi.StringPtrInput `pulumi:"destinationRefId"`
}

func (ChannelOutputLocationRefArgs) ElementType

func (ChannelOutputLocationRefArgs) ToChannelOutputLocationRefOutput

func (i ChannelOutputLocationRefArgs) ToChannelOutputLocationRefOutput() ChannelOutputLocationRefOutput

func (ChannelOutputLocationRefArgs) ToChannelOutputLocationRefOutputWithContext

func (i ChannelOutputLocationRefArgs) ToChannelOutputLocationRefOutputWithContext(ctx context.Context) ChannelOutputLocationRefOutput

func (ChannelOutputLocationRefArgs) ToChannelOutputLocationRefPtrOutput

func (i ChannelOutputLocationRefArgs) ToChannelOutputLocationRefPtrOutput() ChannelOutputLocationRefPtrOutput

func (ChannelOutputLocationRefArgs) ToChannelOutputLocationRefPtrOutputWithContext

func (i ChannelOutputLocationRefArgs) ToChannelOutputLocationRefPtrOutputWithContext(ctx context.Context) ChannelOutputLocationRefPtrOutput

func (ChannelOutputLocationRefArgs) ToOutput added in v0.76.0

type ChannelOutputLocationRefInput

type ChannelOutputLocationRefInput interface {
	pulumi.Input

	ToChannelOutputLocationRefOutput() ChannelOutputLocationRefOutput
	ToChannelOutputLocationRefOutputWithContext(context.Context) ChannelOutputLocationRefOutput
}

ChannelOutputLocationRefInput is an input type that accepts ChannelOutputLocationRefArgs and ChannelOutputLocationRefOutput values. You can construct a concrete instance of `ChannelOutputLocationRefInput` via:

ChannelOutputLocationRefArgs{...}

type ChannelOutputLocationRefOutput

type ChannelOutputLocationRefOutput struct{ *pulumi.OutputState }

func (ChannelOutputLocationRefOutput) DestinationRefId

func (ChannelOutputLocationRefOutput) ElementType

func (ChannelOutputLocationRefOutput) ToChannelOutputLocationRefOutput

func (o ChannelOutputLocationRefOutput) ToChannelOutputLocationRefOutput() ChannelOutputLocationRefOutput

func (ChannelOutputLocationRefOutput) ToChannelOutputLocationRefOutputWithContext

func (o ChannelOutputLocationRefOutput) ToChannelOutputLocationRefOutputWithContext(ctx context.Context) ChannelOutputLocationRefOutput

func (ChannelOutputLocationRefOutput) ToChannelOutputLocationRefPtrOutput

func (o ChannelOutputLocationRefOutput) ToChannelOutputLocationRefPtrOutput() ChannelOutputLocationRefPtrOutput

func (ChannelOutputLocationRefOutput) ToChannelOutputLocationRefPtrOutputWithContext

func (o ChannelOutputLocationRefOutput) ToChannelOutputLocationRefPtrOutputWithContext(ctx context.Context) ChannelOutputLocationRefPtrOutput

func (ChannelOutputLocationRefOutput) ToOutput added in v0.76.0

type ChannelOutputLocationRefPtrInput

type ChannelOutputLocationRefPtrInput interface {
	pulumi.Input

	ToChannelOutputLocationRefPtrOutput() ChannelOutputLocationRefPtrOutput
	ToChannelOutputLocationRefPtrOutputWithContext(context.Context) ChannelOutputLocationRefPtrOutput
}

ChannelOutputLocationRefPtrInput is an input type that accepts ChannelOutputLocationRefArgs, ChannelOutputLocationRefPtr and ChannelOutputLocationRefPtrOutput values. You can construct a concrete instance of `ChannelOutputLocationRefPtrInput` via:

        ChannelOutputLocationRefArgs{...}

or:

        nil

type ChannelOutputLocationRefPtrOutput

type ChannelOutputLocationRefPtrOutput struct{ *pulumi.OutputState }

func (ChannelOutputLocationRefPtrOutput) DestinationRefId

func (ChannelOutputLocationRefPtrOutput) Elem

func (ChannelOutputLocationRefPtrOutput) ElementType

func (ChannelOutputLocationRefPtrOutput) ToChannelOutputLocationRefPtrOutput

func (o ChannelOutputLocationRefPtrOutput) ToChannelOutputLocationRefPtrOutput() ChannelOutputLocationRefPtrOutput

func (ChannelOutputLocationRefPtrOutput) ToChannelOutputLocationRefPtrOutputWithContext

func (o ChannelOutputLocationRefPtrOutput) ToChannelOutputLocationRefPtrOutputWithContext(ctx context.Context) ChannelOutputLocationRefPtrOutput

func (ChannelOutputLocationRefPtrOutput) ToOutput added in v0.76.0

type ChannelOutputSettings

type ChannelOutputSettings struct {
	ArchiveOutputSettings      *ChannelArchiveOutputSettings      `pulumi:"archiveOutputSettings"`
	FrameCaptureOutputSettings *ChannelFrameCaptureOutputSettings `pulumi:"frameCaptureOutputSettings"`
	HlsOutputSettings          *ChannelHlsOutputSettings          `pulumi:"hlsOutputSettings"`
	MediaPackageOutputSettings *ChannelMediaPackageOutputSettings `pulumi:"mediaPackageOutputSettings"`
	MsSmoothOutputSettings     *ChannelMsSmoothOutputSettings     `pulumi:"msSmoothOutputSettings"`
	MultiplexOutputSettings    *ChannelMultiplexOutputSettings    `pulumi:"multiplexOutputSettings"`
	RtmpOutputSettings         *ChannelRtmpOutputSettings         `pulumi:"rtmpOutputSettings"`
	UdpOutputSettings          *ChannelUdpOutputSettings          `pulumi:"udpOutputSettings"`
}

type ChannelOutputSettingsArgs

type ChannelOutputSettingsArgs struct {
	ArchiveOutputSettings      ChannelArchiveOutputSettingsPtrInput      `pulumi:"archiveOutputSettings"`
	FrameCaptureOutputSettings ChannelFrameCaptureOutputSettingsPtrInput `pulumi:"frameCaptureOutputSettings"`
	HlsOutputSettings          ChannelHlsOutputSettingsPtrInput          `pulumi:"hlsOutputSettings"`
	MediaPackageOutputSettings ChannelMediaPackageOutputSettingsPtrInput `pulumi:"mediaPackageOutputSettings"`
	MsSmoothOutputSettings     ChannelMsSmoothOutputSettingsPtrInput     `pulumi:"msSmoothOutputSettings"`
	MultiplexOutputSettings    ChannelMultiplexOutputSettingsPtrInput    `pulumi:"multiplexOutputSettings"`
	RtmpOutputSettings         ChannelRtmpOutputSettingsPtrInput         `pulumi:"rtmpOutputSettings"`
	UdpOutputSettings          ChannelUdpOutputSettingsPtrInput          `pulumi:"udpOutputSettings"`
}

func (ChannelOutputSettingsArgs) ElementType

func (ChannelOutputSettingsArgs) ElementType() reflect.Type

func (ChannelOutputSettingsArgs) ToChannelOutputSettingsOutput

func (i ChannelOutputSettingsArgs) ToChannelOutputSettingsOutput() ChannelOutputSettingsOutput

func (ChannelOutputSettingsArgs) ToChannelOutputSettingsOutputWithContext

func (i ChannelOutputSettingsArgs) ToChannelOutputSettingsOutputWithContext(ctx context.Context) ChannelOutputSettingsOutput

func (ChannelOutputSettingsArgs) ToChannelOutputSettingsPtrOutput

func (i ChannelOutputSettingsArgs) ToChannelOutputSettingsPtrOutput() ChannelOutputSettingsPtrOutput

func (ChannelOutputSettingsArgs) ToChannelOutputSettingsPtrOutputWithContext

func (i ChannelOutputSettingsArgs) ToChannelOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelOutputSettingsPtrOutput

func (ChannelOutputSettingsArgs) ToOutput added in v0.76.0

type ChannelOutputSettingsInput

type ChannelOutputSettingsInput interface {
	pulumi.Input

	ToChannelOutputSettingsOutput() ChannelOutputSettingsOutput
	ToChannelOutputSettingsOutputWithContext(context.Context) ChannelOutputSettingsOutput
}

ChannelOutputSettingsInput is an input type that accepts ChannelOutputSettingsArgs and ChannelOutputSettingsOutput values. You can construct a concrete instance of `ChannelOutputSettingsInput` via:

ChannelOutputSettingsArgs{...}

type ChannelOutputSettingsOutput

type ChannelOutputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelOutputSettingsOutput) ArchiveOutputSettings

func (ChannelOutputSettingsOutput) ElementType

func (ChannelOutputSettingsOutput) FrameCaptureOutputSettings

func (ChannelOutputSettingsOutput) HlsOutputSettings

func (ChannelOutputSettingsOutput) MediaPackageOutputSettings

func (ChannelOutputSettingsOutput) MsSmoothOutputSettings

func (ChannelOutputSettingsOutput) MultiplexOutputSettings

func (ChannelOutputSettingsOutput) RtmpOutputSettings

func (ChannelOutputSettingsOutput) ToChannelOutputSettingsOutput

func (o ChannelOutputSettingsOutput) ToChannelOutputSettingsOutput() ChannelOutputSettingsOutput

func (ChannelOutputSettingsOutput) ToChannelOutputSettingsOutputWithContext

func (o ChannelOutputSettingsOutput) ToChannelOutputSettingsOutputWithContext(ctx context.Context) ChannelOutputSettingsOutput

func (ChannelOutputSettingsOutput) ToChannelOutputSettingsPtrOutput

func (o ChannelOutputSettingsOutput) ToChannelOutputSettingsPtrOutput() ChannelOutputSettingsPtrOutput

func (ChannelOutputSettingsOutput) ToChannelOutputSettingsPtrOutputWithContext

func (o ChannelOutputSettingsOutput) ToChannelOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelOutputSettingsPtrOutput

func (ChannelOutputSettingsOutput) ToOutput added in v0.76.0

func (ChannelOutputSettingsOutput) UdpOutputSettings

type ChannelOutputSettingsPtrInput

type ChannelOutputSettingsPtrInput interface {
	pulumi.Input

	ToChannelOutputSettingsPtrOutput() ChannelOutputSettingsPtrOutput
	ToChannelOutputSettingsPtrOutputWithContext(context.Context) ChannelOutputSettingsPtrOutput
}

ChannelOutputSettingsPtrInput is an input type that accepts ChannelOutputSettingsArgs, ChannelOutputSettingsPtr and ChannelOutputSettingsPtrOutput values. You can construct a concrete instance of `ChannelOutputSettingsPtrInput` via:

        ChannelOutputSettingsArgs{...}

or:

        nil

type ChannelOutputSettingsPtrOutput

type ChannelOutputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelOutputSettingsPtrOutput) ArchiveOutputSettings

func (ChannelOutputSettingsPtrOutput) Elem

func (ChannelOutputSettingsPtrOutput) ElementType

func (ChannelOutputSettingsPtrOutput) FrameCaptureOutputSettings

func (ChannelOutputSettingsPtrOutput) HlsOutputSettings

func (ChannelOutputSettingsPtrOutput) MediaPackageOutputSettings

func (ChannelOutputSettingsPtrOutput) MsSmoothOutputSettings

func (ChannelOutputSettingsPtrOutput) MultiplexOutputSettings

func (ChannelOutputSettingsPtrOutput) RtmpOutputSettings

func (ChannelOutputSettingsPtrOutput) ToChannelOutputSettingsPtrOutput

func (o ChannelOutputSettingsPtrOutput) ToChannelOutputSettingsPtrOutput() ChannelOutputSettingsPtrOutput

func (ChannelOutputSettingsPtrOutput) ToChannelOutputSettingsPtrOutputWithContext

func (o ChannelOutputSettingsPtrOutput) ToChannelOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelOutputSettingsPtrOutput

func (ChannelOutputSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelOutputSettingsPtrOutput) UdpOutputSettings

type ChannelOutputType

type ChannelOutputType struct {
	AudioDescriptionNames   []string               `pulumi:"audioDescriptionNames"`
	CaptionDescriptionNames []string               `pulumi:"captionDescriptionNames"`
	OutputName              *string                `pulumi:"outputName"`
	OutputSettings          *ChannelOutputSettings `pulumi:"outputSettings"`
	VideoDescriptionName    *string                `pulumi:"videoDescriptionName"`
}

type ChannelOutputTypeArgs

type ChannelOutputTypeArgs struct {
	AudioDescriptionNames   pulumi.StringArrayInput       `pulumi:"audioDescriptionNames"`
	CaptionDescriptionNames pulumi.StringArrayInput       `pulumi:"captionDescriptionNames"`
	OutputName              pulumi.StringPtrInput         `pulumi:"outputName"`
	OutputSettings          ChannelOutputSettingsPtrInput `pulumi:"outputSettings"`
	VideoDescriptionName    pulumi.StringPtrInput         `pulumi:"videoDescriptionName"`
}

func (ChannelOutputTypeArgs) ElementType

func (ChannelOutputTypeArgs) ElementType() reflect.Type

func (ChannelOutputTypeArgs) ToChannelOutputTypeOutput

func (i ChannelOutputTypeArgs) ToChannelOutputTypeOutput() ChannelOutputTypeOutput

func (ChannelOutputTypeArgs) ToChannelOutputTypeOutputWithContext

func (i ChannelOutputTypeArgs) ToChannelOutputTypeOutputWithContext(ctx context.Context) ChannelOutputTypeOutput

func (ChannelOutputTypeArgs) ToOutput added in v0.76.0

type ChannelOutputTypeArray

type ChannelOutputTypeArray []ChannelOutputTypeInput

func (ChannelOutputTypeArray) ElementType

func (ChannelOutputTypeArray) ElementType() reflect.Type

func (ChannelOutputTypeArray) ToChannelOutputTypeArrayOutput

func (i ChannelOutputTypeArray) ToChannelOutputTypeArrayOutput() ChannelOutputTypeArrayOutput

func (ChannelOutputTypeArray) ToChannelOutputTypeArrayOutputWithContext

func (i ChannelOutputTypeArray) ToChannelOutputTypeArrayOutputWithContext(ctx context.Context) ChannelOutputTypeArrayOutput

func (ChannelOutputTypeArray) ToOutput added in v0.76.0

type ChannelOutputTypeArrayInput

type ChannelOutputTypeArrayInput interface {
	pulumi.Input

	ToChannelOutputTypeArrayOutput() ChannelOutputTypeArrayOutput
	ToChannelOutputTypeArrayOutputWithContext(context.Context) ChannelOutputTypeArrayOutput
}

ChannelOutputTypeArrayInput is an input type that accepts ChannelOutputTypeArray and ChannelOutputTypeArrayOutput values. You can construct a concrete instance of `ChannelOutputTypeArrayInput` via:

ChannelOutputTypeArray{ ChannelOutputTypeArgs{...} }

type ChannelOutputTypeArrayOutput

type ChannelOutputTypeArrayOutput struct{ *pulumi.OutputState }

func (ChannelOutputTypeArrayOutput) ElementType

func (ChannelOutputTypeArrayOutput) Index

func (ChannelOutputTypeArrayOutput) ToChannelOutputTypeArrayOutput

func (o ChannelOutputTypeArrayOutput) ToChannelOutputTypeArrayOutput() ChannelOutputTypeArrayOutput

func (ChannelOutputTypeArrayOutput) ToChannelOutputTypeArrayOutputWithContext

func (o ChannelOutputTypeArrayOutput) ToChannelOutputTypeArrayOutputWithContext(ctx context.Context) ChannelOutputTypeArrayOutput

func (ChannelOutputTypeArrayOutput) ToOutput added in v0.76.0

type ChannelOutputTypeInput

type ChannelOutputTypeInput interface {
	pulumi.Input

	ToChannelOutputTypeOutput() ChannelOutputTypeOutput
	ToChannelOutputTypeOutputWithContext(context.Context) ChannelOutputTypeOutput
}

ChannelOutputTypeInput is an input type that accepts ChannelOutputTypeArgs and ChannelOutputTypeOutput values. You can construct a concrete instance of `ChannelOutputTypeInput` via:

ChannelOutputTypeArgs{...}

type ChannelOutputTypeOutput

type ChannelOutputTypeOutput struct{ *pulumi.OutputState }

func (ChannelOutputTypeOutput) AudioDescriptionNames

func (o ChannelOutputTypeOutput) AudioDescriptionNames() pulumi.StringArrayOutput

func (ChannelOutputTypeOutput) CaptionDescriptionNames

func (o ChannelOutputTypeOutput) CaptionDescriptionNames() pulumi.StringArrayOutput

func (ChannelOutputTypeOutput) ElementType

func (ChannelOutputTypeOutput) ElementType() reflect.Type

func (ChannelOutputTypeOutput) OutputName

func (ChannelOutputTypeOutput) OutputSettings

func (ChannelOutputTypeOutput) ToChannelOutputTypeOutput

func (o ChannelOutputTypeOutput) ToChannelOutputTypeOutput() ChannelOutputTypeOutput

func (ChannelOutputTypeOutput) ToChannelOutputTypeOutputWithContext

func (o ChannelOutputTypeOutput) ToChannelOutputTypeOutputWithContext(ctx context.Context) ChannelOutputTypeOutput

func (ChannelOutputTypeOutput) ToOutput added in v0.76.0

func (ChannelOutputTypeOutput) VideoDescriptionName

func (o ChannelOutputTypeOutput) VideoDescriptionName() pulumi.StringPtrOutput

type ChannelPassThroughSettings

type ChannelPassThroughSettings struct {
}

type ChannelPassThroughSettingsArgs

type ChannelPassThroughSettingsArgs struct {
}

func (ChannelPassThroughSettingsArgs) ElementType

func (ChannelPassThroughSettingsArgs) ToChannelPassThroughSettingsOutput

func (i ChannelPassThroughSettingsArgs) ToChannelPassThroughSettingsOutput() ChannelPassThroughSettingsOutput

func (ChannelPassThroughSettingsArgs) ToChannelPassThroughSettingsOutputWithContext

func (i ChannelPassThroughSettingsArgs) ToChannelPassThroughSettingsOutputWithContext(ctx context.Context) ChannelPassThroughSettingsOutput

func (ChannelPassThroughSettingsArgs) ToChannelPassThroughSettingsPtrOutput

func (i ChannelPassThroughSettingsArgs) ToChannelPassThroughSettingsPtrOutput() ChannelPassThroughSettingsPtrOutput

func (ChannelPassThroughSettingsArgs) ToChannelPassThroughSettingsPtrOutputWithContext

func (i ChannelPassThroughSettingsArgs) ToChannelPassThroughSettingsPtrOutputWithContext(ctx context.Context) ChannelPassThroughSettingsPtrOutput

func (ChannelPassThroughSettingsArgs) ToOutput added in v0.76.0

type ChannelPassThroughSettingsInput

type ChannelPassThroughSettingsInput interface {
	pulumi.Input

	ToChannelPassThroughSettingsOutput() ChannelPassThroughSettingsOutput
	ToChannelPassThroughSettingsOutputWithContext(context.Context) ChannelPassThroughSettingsOutput
}

ChannelPassThroughSettingsInput is an input type that accepts ChannelPassThroughSettingsArgs and ChannelPassThroughSettingsOutput values. You can construct a concrete instance of `ChannelPassThroughSettingsInput` via:

ChannelPassThroughSettingsArgs{...}

type ChannelPassThroughSettingsOutput

type ChannelPassThroughSettingsOutput struct{ *pulumi.OutputState }

func (ChannelPassThroughSettingsOutput) ElementType

func (ChannelPassThroughSettingsOutput) ToChannelPassThroughSettingsOutput

func (o ChannelPassThroughSettingsOutput) ToChannelPassThroughSettingsOutput() ChannelPassThroughSettingsOutput

func (ChannelPassThroughSettingsOutput) ToChannelPassThroughSettingsOutputWithContext

func (o ChannelPassThroughSettingsOutput) ToChannelPassThroughSettingsOutputWithContext(ctx context.Context) ChannelPassThroughSettingsOutput

func (ChannelPassThroughSettingsOutput) ToChannelPassThroughSettingsPtrOutput

func (o ChannelPassThroughSettingsOutput) ToChannelPassThroughSettingsPtrOutput() ChannelPassThroughSettingsPtrOutput

func (ChannelPassThroughSettingsOutput) ToChannelPassThroughSettingsPtrOutputWithContext

func (o ChannelPassThroughSettingsOutput) ToChannelPassThroughSettingsPtrOutputWithContext(ctx context.Context) ChannelPassThroughSettingsPtrOutput

func (ChannelPassThroughSettingsOutput) ToOutput added in v0.76.0

type ChannelPassThroughSettingsPtrInput

type ChannelPassThroughSettingsPtrInput interface {
	pulumi.Input

	ToChannelPassThroughSettingsPtrOutput() ChannelPassThroughSettingsPtrOutput
	ToChannelPassThroughSettingsPtrOutputWithContext(context.Context) ChannelPassThroughSettingsPtrOutput
}

ChannelPassThroughSettingsPtrInput is an input type that accepts ChannelPassThroughSettingsArgs, ChannelPassThroughSettingsPtr and ChannelPassThroughSettingsPtrOutput values. You can construct a concrete instance of `ChannelPassThroughSettingsPtrInput` via:

        ChannelPassThroughSettingsArgs{...}

or:

        nil

type ChannelPassThroughSettingsPtrOutput

type ChannelPassThroughSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelPassThroughSettingsPtrOutput) Elem

func (ChannelPassThroughSettingsPtrOutput) ElementType

func (ChannelPassThroughSettingsPtrOutput) ToChannelPassThroughSettingsPtrOutput

func (o ChannelPassThroughSettingsPtrOutput) ToChannelPassThroughSettingsPtrOutput() ChannelPassThroughSettingsPtrOutput

func (ChannelPassThroughSettingsPtrOutput) ToChannelPassThroughSettingsPtrOutputWithContext

func (o ChannelPassThroughSettingsPtrOutput) ToChannelPassThroughSettingsPtrOutputWithContext(ctx context.Context) ChannelPassThroughSettingsPtrOutput

func (ChannelPassThroughSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelRawSettings

type ChannelRawSettings struct {
}

type ChannelRawSettingsArgs

type ChannelRawSettingsArgs struct {
}

func (ChannelRawSettingsArgs) ElementType

func (ChannelRawSettingsArgs) ElementType() reflect.Type

func (ChannelRawSettingsArgs) ToChannelRawSettingsOutput

func (i ChannelRawSettingsArgs) ToChannelRawSettingsOutput() ChannelRawSettingsOutput

func (ChannelRawSettingsArgs) ToChannelRawSettingsOutputWithContext

func (i ChannelRawSettingsArgs) ToChannelRawSettingsOutputWithContext(ctx context.Context) ChannelRawSettingsOutput

func (ChannelRawSettingsArgs) ToChannelRawSettingsPtrOutput

func (i ChannelRawSettingsArgs) ToChannelRawSettingsPtrOutput() ChannelRawSettingsPtrOutput

func (ChannelRawSettingsArgs) ToChannelRawSettingsPtrOutputWithContext

func (i ChannelRawSettingsArgs) ToChannelRawSettingsPtrOutputWithContext(ctx context.Context) ChannelRawSettingsPtrOutput

func (ChannelRawSettingsArgs) ToOutput added in v0.76.0

type ChannelRawSettingsInput

type ChannelRawSettingsInput interface {
	pulumi.Input

	ToChannelRawSettingsOutput() ChannelRawSettingsOutput
	ToChannelRawSettingsOutputWithContext(context.Context) ChannelRawSettingsOutput
}

ChannelRawSettingsInput is an input type that accepts ChannelRawSettingsArgs and ChannelRawSettingsOutput values. You can construct a concrete instance of `ChannelRawSettingsInput` via:

ChannelRawSettingsArgs{...}

type ChannelRawSettingsOutput

type ChannelRawSettingsOutput struct{ *pulumi.OutputState }

func (ChannelRawSettingsOutput) ElementType

func (ChannelRawSettingsOutput) ElementType() reflect.Type

func (ChannelRawSettingsOutput) ToChannelRawSettingsOutput

func (o ChannelRawSettingsOutput) ToChannelRawSettingsOutput() ChannelRawSettingsOutput

func (ChannelRawSettingsOutput) ToChannelRawSettingsOutputWithContext

func (o ChannelRawSettingsOutput) ToChannelRawSettingsOutputWithContext(ctx context.Context) ChannelRawSettingsOutput

func (ChannelRawSettingsOutput) ToChannelRawSettingsPtrOutput

func (o ChannelRawSettingsOutput) ToChannelRawSettingsPtrOutput() ChannelRawSettingsPtrOutput

func (ChannelRawSettingsOutput) ToChannelRawSettingsPtrOutputWithContext

func (o ChannelRawSettingsOutput) ToChannelRawSettingsPtrOutputWithContext(ctx context.Context) ChannelRawSettingsPtrOutput

func (ChannelRawSettingsOutput) ToOutput added in v0.76.0

type ChannelRawSettingsPtrInput

type ChannelRawSettingsPtrInput interface {
	pulumi.Input

	ToChannelRawSettingsPtrOutput() ChannelRawSettingsPtrOutput
	ToChannelRawSettingsPtrOutputWithContext(context.Context) ChannelRawSettingsPtrOutput
}

ChannelRawSettingsPtrInput is an input type that accepts ChannelRawSettingsArgs, ChannelRawSettingsPtr and ChannelRawSettingsPtrOutput values. You can construct a concrete instance of `ChannelRawSettingsPtrInput` via:

        ChannelRawSettingsArgs{...}

or:

        nil

type ChannelRawSettingsPtrOutput

type ChannelRawSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelRawSettingsPtrOutput) Elem

func (ChannelRawSettingsPtrOutput) ElementType

func (ChannelRawSettingsPtrOutput) ToChannelRawSettingsPtrOutput

func (o ChannelRawSettingsPtrOutput) ToChannelRawSettingsPtrOutput() ChannelRawSettingsPtrOutput

func (ChannelRawSettingsPtrOutput) ToChannelRawSettingsPtrOutputWithContext

func (o ChannelRawSettingsPtrOutput) ToChannelRawSettingsPtrOutputWithContext(ctx context.Context) ChannelRawSettingsPtrOutput

func (ChannelRawSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelRec601Settings

type ChannelRec601Settings struct {
}

type ChannelRec601SettingsArgs

type ChannelRec601SettingsArgs struct {
}

func (ChannelRec601SettingsArgs) ElementType

func (ChannelRec601SettingsArgs) ElementType() reflect.Type

func (ChannelRec601SettingsArgs) ToChannelRec601SettingsOutput

func (i ChannelRec601SettingsArgs) ToChannelRec601SettingsOutput() ChannelRec601SettingsOutput

func (ChannelRec601SettingsArgs) ToChannelRec601SettingsOutputWithContext

func (i ChannelRec601SettingsArgs) ToChannelRec601SettingsOutputWithContext(ctx context.Context) ChannelRec601SettingsOutput

func (ChannelRec601SettingsArgs) ToChannelRec601SettingsPtrOutput

func (i ChannelRec601SettingsArgs) ToChannelRec601SettingsPtrOutput() ChannelRec601SettingsPtrOutput

func (ChannelRec601SettingsArgs) ToChannelRec601SettingsPtrOutputWithContext

func (i ChannelRec601SettingsArgs) ToChannelRec601SettingsPtrOutputWithContext(ctx context.Context) ChannelRec601SettingsPtrOutput

func (ChannelRec601SettingsArgs) ToOutput added in v0.76.0

type ChannelRec601SettingsInput

type ChannelRec601SettingsInput interface {
	pulumi.Input

	ToChannelRec601SettingsOutput() ChannelRec601SettingsOutput
	ToChannelRec601SettingsOutputWithContext(context.Context) ChannelRec601SettingsOutput
}

ChannelRec601SettingsInput is an input type that accepts ChannelRec601SettingsArgs and ChannelRec601SettingsOutput values. You can construct a concrete instance of `ChannelRec601SettingsInput` via:

ChannelRec601SettingsArgs{...}

type ChannelRec601SettingsOutput

type ChannelRec601SettingsOutput struct{ *pulumi.OutputState }

func (ChannelRec601SettingsOutput) ElementType

func (ChannelRec601SettingsOutput) ToChannelRec601SettingsOutput

func (o ChannelRec601SettingsOutput) ToChannelRec601SettingsOutput() ChannelRec601SettingsOutput

func (ChannelRec601SettingsOutput) ToChannelRec601SettingsOutputWithContext

func (o ChannelRec601SettingsOutput) ToChannelRec601SettingsOutputWithContext(ctx context.Context) ChannelRec601SettingsOutput

func (ChannelRec601SettingsOutput) ToChannelRec601SettingsPtrOutput

func (o ChannelRec601SettingsOutput) ToChannelRec601SettingsPtrOutput() ChannelRec601SettingsPtrOutput

func (ChannelRec601SettingsOutput) ToChannelRec601SettingsPtrOutputWithContext

func (o ChannelRec601SettingsOutput) ToChannelRec601SettingsPtrOutputWithContext(ctx context.Context) ChannelRec601SettingsPtrOutput

func (ChannelRec601SettingsOutput) ToOutput added in v0.76.0

type ChannelRec601SettingsPtrInput

type ChannelRec601SettingsPtrInput interface {
	pulumi.Input

	ToChannelRec601SettingsPtrOutput() ChannelRec601SettingsPtrOutput
	ToChannelRec601SettingsPtrOutputWithContext(context.Context) ChannelRec601SettingsPtrOutput
}

ChannelRec601SettingsPtrInput is an input type that accepts ChannelRec601SettingsArgs, ChannelRec601SettingsPtr and ChannelRec601SettingsPtrOutput values. You can construct a concrete instance of `ChannelRec601SettingsPtrInput` via:

        ChannelRec601SettingsArgs{...}

or:

        nil

type ChannelRec601SettingsPtrOutput

type ChannelRec601SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelRec601SettingsPtrOutput) Elem

func (ChannelRec601SettingsPtrOutput) ElementType

func (ChannelRec601SettingsPtrOutput) ToChannelRec601SettingsPtrOutput

func (o ChannelRec601SettingsPtrOutput) ToChannelRec601SettingsPtrOutput() ChannelRec601SettingsPtrOutput

func (ChannelRec601SettingsPtrOutput) ToChannelRec601SettingsPtrOutputWithContext

func (o ChannelRec601SettingsPtrOutput) ToChannelRec601SettingsPtrOutputWithContext(ctx context.Context) ChannelRec601SettingsPtrOutput

func (ChannelRec601SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelRec709Settings

type ChannelRec709Settings struct {
}

type ChannelRec709SettingsArgs

type ChannelRec709SettingsArgs struct {
}

func (ChannelRec709SettingsArgs) ElementType

func (ChannelRec709SettingsArgs) ElementType() reflect.Type

func (ChannelRec709SettingsArgs) ToChannelRec709SettingsOutput

func (i ChannelRec709SettingsArgs) ToChannelRec709SettingsOutput() ChannelRec709SettingsOutput

func (ChannelRec709SettingsArgs) ToChannelRec709SettingsOutputWithContext

func (i ChannelRec709SettingsArgs) ToChannelRec709SettingsOutputWithContext(ctx context.Context) ChannelRec709SettingsOutput

func (ChannelRec709SettingsArgs) ToChannelRec709SettingsPtrOutput

func (i ChannelRec709SettingsArgs) ToChannelRec709SettingsPtrOutput() ChannelRec709SettingsPtrOutput

func (ChannelRec709SettingsArgs) ToChannelRec709SettingsPtrOutputWithContext

func (i ChannelRec709SettingsArgs) ToChannelRec709SettingsPtrOutputWithContext(ctx context.Context) ChannelRec709SettingsPtrOutput

func (ChannelRec709SettingsArgs) ToOutput added in v0.76.0

type ChannelRec709SettingsInput

type ChannelRec709SettingsInput interface {
	pulumi.Input

	ToChannelRec709SettingsOutput() ChannelRec709SettingsOutput
	ToChannelRec709SettingsOutputWithContext(context.Context) ChannelRec709SettingsOutput
}

ChannelRec709SettingsInput is an input type that accepts ChannelRec709SettingsArgs and ChannelRec709SettingsOutput values. You can construct a concrete instance of `ChannelRec709SettingsInput` via:

ChannelRec709SettingsArgs{...}

type ChannelRec709SettingsOutput

type ChannelRec709SettingsOutput struct{ *pulumi.OutputState }

func (ChannelRec709SettingsOutput) ElementType

func (ChannelRec709SettingsOutput) ToChannelRec709SettingsOutput

func (o ChannelRec709SettingsOutput) ToChannelRec709SettingsOutput() ChannelRec709SettingsOutput

func (ChannelRec709SettingsOutput) ToChannelRec709SettingsOutputWithContext

func (o ChannelRec709SettingsOutput) ToChannelRec709SettingsOutputWithContext(ctx context.Context) ChannelRec709SettingsOutput

func (ChannelRec709SettingsOutput) ToChannelRec709SettingsPtrOutput

func (o ChannelRec709SettingsOutput) ToChannelRec709SettingsPtrOutput() ChannelRec709SettingsPtrOutput

func (ChannelRec709SettingsOutput) ToChannelRec709SettingsPtrOutputWithContext

func (o ChannelRec709SettingsOutput) ToChannelRec709SettingsPtrOutputWithContext(ctx context.Context) ChannelRec709SettingsPtrOutput

func (ChannelRec709SettingsOutput) ToOutput added in v0.76.0

type ChannelRec709SettingsPtrInput

type ChannelRec709SettingsPtrInput interface {
	pulumi.Input

	ToChannelRec709SettingsPtrOutput() ChannelRec709SettingsPtrOutput
	ToChannelRec709SettingsPtrOutputWithContext(context.Context) ChannelRec709SettingsPtrOutput
}

ChannelRec709SettingsPtrInput is an input type that accepts ChannelRec709SettingsArgs, ChannelRec709SettingsPtr and ChannelRec709SettingsPtrOutput values. You can construct a concrete instance of `ChannelRec709SettingsPtrInput` via:

        ChannelRec709SettingsArgs{...}

or:

        nil

type ChannelRec709SettingsPtrOutput

type ChannelRec709SettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelRec709SettingsPtrOutput) Elem

func (ChannelRec709SettingsPtrOutput) ElementType

func (ChannelRec709SettingsPtrOutput) ToChannelRec709SettingsPtrOutput

func (o ChannelRec709SettingsPtrOutput) ToChannelRec709SettingsPtrOutput() ChannelRec709SettingsPtrOutput

func (ChannelRec709SettingsPtrOutput) ToChannelRec709SettingsPtrOutputWithContext

func (o ChannelRec709SettingsPtrOutput) ToChannelRec709SettingsPtrOutputWithContext(ctx context.Context) ChannelRec709SettingsPtrOutput

func (ChannelRec709SettingsPtrOutput) ToOutput added in v0.76.0

type ChannelRemixSettings

type ChannelRemixSettings struct {
	ChannelMappings []ChannelAudioChannelMapping `pulumi:"channelMappings"`
	ChannelsIn      *int                         `pulumi:"channelsIn"`
	ChannelsOut     *int                         `pulumi:"channelsOut"`
}

type ChannelRemixSettingsArgs

type ChannelRemixSettingsArgs struct {
	ChannelMappings ChannelAudioChannelMappingArrayInput `pulumi:"channelMappings"`
	ChannelsIn      pulumi.IntPtrInput                   `pulumi:"channelsIn"`
	ChannelsOut     pulumi.IntPtrInput                   `pulumi:"channelsOut"`
}

func (ChannelRemixSettingsArgs) ElementType

func (ChannelRemixSettingsArgs) ElementType() reflect.Type

func (ChannelRemixSettingsArgs) ToChannelRemixSettingsOutput

func (i ChannelRemixSettingsArgs) ToChannelRemixSettingsOutput() ChannelRemixSettingsOutput

func (ChannelRemixSettingsArgs) ToChannelRemixSettingsOutputWithContext

func (i ChannelRemixSettingsArgs) ToChannelRemixSettingsOutputWithContext(ctx context.Context) ChannelRemixSettingsOutput

func (ChannelRemixSettingsArgs) ToChannelRemixSettingsPtrOutput

func (i ChannelRemixSettingsArgs) ToChannelRemixSettingsPtrOutput() ChannelRemixSettingsPtrOutput

func (ChannelRemixSettingsArgs) ToChannelRemixSettingsPtrOutputWithContext

func (i ChannelRemixSettingsArgs) ToChannelRemixSettingsPtrOutputWithContext(ctx context.Context) ChannelRemixSettingsPtrOutput

func (ChannelRemixSettingsArgs) ToOutput added in v0.76.0

type ChannelRemixSettingsInput

type ChannelRemixSettingsInput interface {
	pulumi.Input

	ToChannelRemixSettingsOutput() ChannelRemixSettingsOutput
	ToChannelRemixSettingsOutputWithContext(context.Context) ChannelRemixSettingsOutput
}

ChannelRemixSettingsInput is an input type that accepts ChannelRemixSettingsArgs and ChannelRemixSettingsOutput values. You can construct a concrete instance of `ChannelRemixSettingsInput` via:

ChannelRemixSettingsArgs{...}

type ChannelRemixSettingsOutput

type ChannelRemixSettingsOutput struct{ *pulumi.OutputState }

func (ChannelRemixSettingsOutput) ChannelMappings

func (ChannelRemixSettingsOutput) ChannelsIn

func (ChannelRemixSettingsOutput) ChannelsOut

func (ChannelRemixSettingsOutput) ElementType

func (ChannelRemixSettingsOutput) ElementType() reflect.Type

func (ChannelRemixSettingsOutput) ToChannelRemixSettingsOutput

func (o ChannelRemixSettingsOutput) ToChannelRemixSettingsOutput() ChannelRemixSettingsOutput

func (ChannelRemixSettingsOutput) ToChannelRemixSettingsOutputWithContext

func (o ChannelRemixSettingsOutput) ToChannelRemixSettingsOutputWithContext(ctx context.Context) ChannelRemixSettingsOutput

func (ChannelRemixSettingsOutput) ToChannelRemixSettingsPtrOutput

func (o ChannelRemixSettingsOutput) ToChannelRemixSettingsPtrOutput() ChannelRemixSettingsPtrOutput

func (ChannelRemixSettingsOutput) ToChannelRemixSettingsPtrOutputWithContext

func (o ChannelRemixSettingsOutput) ToChannelRemixSettingsPtrOutputWithContext(ctx context.Context) ChannelRemixSettingsPtrOutput

func (ChannelRemixSettingsOutput) ToOutput added in v0.76.0

type ChannelRemixSettingsPtrInput

type ChannelRemixSettingsPtrInput interface {
	pulumi.Input

	ToChannelRemixSettingsPtrOutput() ChannelRemixSettingsPtrOutput
	ToChannelRemixSettingsPtrOutputWithContext(context.Context) ChannelRemixSettingsPtrOutput
}

ChannelRemixSettingsPtrInput is an input type that accepts ChannelRemixSettingsArgs, ChannelRemixSettingsPtr and ChannelRemixSettingsPtrOutput values. You can construct a concrete instance of `ChannelRemixSettingsPtrInput` via:

        ChannelRemixSettingsArgs{...}

or:

        nil

type ChannelRemixSettingsPtrOutput

type ChannelRemixSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelRemixSettingsPtrOutput) ChannelMappings

func (ChannelRemixSettingsPtrOutput) ChannelsIn

func (ChannelRemixSettingsPtrOutput) ChannelsOut

func (ChannelRemixSettingsPtrOutput) Elem

func (ChannelRemixSettingsPtrOutput) ElementType

func (ChannelRemixSettingsPtrOutput) ToChannelRemixSettingsPtrOutput

func (o ChannelRemixSettingsPtrOutput) ToChannelRemixSettingsPtrOutput() ChannelRemixSettingsPtrOutput

func (ChannelRemixSettingsPtrOutput) ToChannelRemixSettingsPtrOutputWithContext

func (o ChannelRemixSettingsPtrOutput) ToChannelRemixSettingsPtrOutputWithContext(ctx context.Context) ChannelRemixSettingsPtrOutput

func (ChannelRemixSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelRtmpCaptionInfoDestinationSettings

type ChannelRtmpCaptionInfoDestinationSettings struct {
}

type ChannelRtmpCaptionInfoDestinationSettingsArgs

type ChannelRtmpCaptionInfoDestinationSettingsArgs struct {
}

func (ChannelRtmpCaptionInfoDestinationSettingsArgs) ElementType

func (ChannelRtmpCaptionInfoDestinationSettingsArgs) ToChannelRtmpCaptionInfoDestinationSettingsOutput

func (i ChannelRtmpCaptionInfoDestinationSettingsArgs) ToChannelRtmpCaptionInfoDestinationSettingsOutput() ChannelRtmpCaptionInfoDestinationSettingsOutput

func (ChannelRtmpCaptionInfoDestinationSettingsArgs) ToChannelRtmpCaptionInfoDestinationSettingsOutputWithContext

func (i ChannelRtmpCaptionInfoDestinationSettingsArgs) ToChannelRtmpCaptionInfoDestinationSettingsOutputWithContext(ctx context.Context) ChannelRtmpCaptionInfoDestinationSettingsOutput

func (ChannelRtmpCaptionInfoDestinationSettingsArgs) ToChannelRtmpCaptionInfoDestinationSettingsPtrOutput

func (i ChannelRtmpCaptionInfoDestinationSettingsArgs) ToChannelRtmpCaptionInfoDestinationSettingsPtrOutput() ChannelRtmpCaptionInfoDestinationSettingsPtrOutput

func (ChannelRtmpCaptionInfoDestinationSettingsArgs) ToChannelRtmpCaptionInfoDestinationSettingsPtrOutputWithContext

func (i ChannelRtmpCaptionInfoDestinationSettingsArgs) ToChannelRtmpCaptionInfoDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelRtmpCaptionInfoDestinationSettingsPtrOutput

func (ChannelRtmpCaptionInfoDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelRtmpCaptionInfoDestinationSettingsInput

type ChannelRtmpCaptionInfoDestinationSettingsInput interface {
	pulumi.Input

	ToChannelRtmpCaptionInfoDestinationSettingsOutput() ChannelRtmpCaptionInfoDestinationSettingsOutput
	ToChannelRtmpCaptionInfoDestinationSettingsOutputWithContext(context.Context) ChannelRtmpCaptionInfoDestinationSettingsOutput
}

ChannelRtmpCaptionInfoDestinationSettingsInput is an input type that accepts ChannelRtmpCaptionInfoDestinationSettingsArgs and ChannelRtmpCaptionInfoDestinationSettingsOutput values. You can construct a concrete instance of `ChannelRtmpCaptionInfoDestinationSettingsInput` via:

ChannelRtmpCaptionInfoDestinationSettingsArgs{...}

type ChannelRtmpCaptionInfoDestinationSettingsOutput

type ChannelRtmpCaptionInfoDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelRtmpCaptionInfoDestinationSettingsOutput) ElementType

func (ChannelRtmpCaptionInfoDestinationSettingsOutput) ToChannelRtmpCaptionInfoDestinationSettingsOutput

func (o ChannelRtmpCaptionInfoDestinationSettingsOutput) ToChannelRtmpCaptionInfoDestinationSettingsOutput() ChannelRtmpCaptionInfoDestinationSettingsOutput

func (ChannelRtmpCaptionInfoDestinationSettingsOutput) ToChannelRtmpCaptionInfoDestinationSettingsOutputWithContext

func (o ChannelRtmpCaptionInfoDestinationSettingsOutput) ToChannelRtmpCaptionInfoDestinationSettingsOutputWithContext(ctx context.Context) ChannelRtmpCaptionInfoDestinationSettingsOutput

func (ChannelRtmpCaptionInfoDestinationSettingsOutput) ToChannelRtmpCaptionInfoDestinationSettingsPtrOutput

func (o ChannelRtmpCaptionInfoDestinationSettingsOutput) ToChannelRtmpCaptionInfoDestinationSettingsPtrOutput() ChannelRtmpCaptionInfoDestinationSettingsPtrOutput

func (ChannelRtmpCaptionInfoDestinationSettingsOutput) ToChannelRtmpCaptionInfoDestinationSettingsPtrOutputWithContext

func (o ChannelRtmpCaptionInfoDestinationSettingsOutput) ToChannelRtmpCaptionInfoDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelRtmpCaptionInfoDestinationSettingsPtrOutput

func (ChannelRtmpCaptionInfoDestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelRtmpCaptionInfoDestinationSettingsPtrInput

type ChannelRtmpCaptionInfoDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelRtmpCaptionInfoDestinationSettingsPtrOutput() ChannelRtmpCaptionInfoDestinationSettingsPtrOutput
	ToChannelRtmpCaptionInfoDestinationSettingsPtrOutputWithContext(context.Context) ChannelRtmpCaptionInfoDestinationSettingsPtrOutput
}

ChannelRtmpCaptionInfoDestinationSettingsPtrInput is an input type that accepts ChannelRtmpCaptionInfoDestinationSettingsArgs, ChannelRtmpCaptionInfoDestinationSettingsPtr and ChannelRtmpCaptionInfoDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelRtmpCaptionInfoDestinationSettingsPtrInput` via:

        ChannelRtmpCaptionInfoDestinationSettingsArgs{...}

or:

        nil

type ChannelRtmpCaptionInfoDestinationSettingsPtrOutput

type ChannelRtmpCaptionInfoDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelRtmpCaptionInfoDestinationSettingsPtrOutput) Elem

func (ChannelRtmpCaptionInfoDestinationSettingsPtrOutput) ElementType

func (ChannelRtmpCaptionInfoDestinationSettingsPtrOutput) ToChannelRtmpCaptionInfoDestinationSettingsPtrOutput

func (o ChannelRtmpCaptionInfoDestinationSettingsPtrOutput) ToChannelRtmpCaptionInfoDestinationSettingsPtrOutput() ChannelRtmpCaptionInfoDestinationSettingsPtrOutput

func (ChannelRtmpCaptionInfoDestinationSettingsPtrOutput) ToChannelRtmpCaptionInfoDestinationSettingsPtrOutputWithContext

func (o ChannelRtmpCaptionInfoDestinationSettingsPtrOutput) ToChannelRtmpCaptionInfoDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelRtmpCaptionInfoDestinationSettingsPtrOutput

func (ChannelRtmpCaptionInfoDestinationSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelRtmpGroupSettings

type ChannelRtmpGroupSettings struct {
	AdMarkers             []string `pulumi:"adMarkers"`
	AuthenticationScheme  *string  `pulumi:"authenticationScheme"`
	CacheFullBehavior     *string  `pulumi:"cacheFullBehavior"`
	CacheLength           *int     `pulumi:"cacheLength"`
	CaptionData           *string  `pulumi:"captionData"`
	IncludeFillerNalUnits *string  `pulumi:"includeFillerNalUnits"`
	InputLossAction       *string  `pulumi:"inputLossAction"`
	RestartDelay          *int     `pulumi:"restartDelay"`
}

type ChannelRtmpGroupSettingsArgs

type ChannelRtmpGroupSettingsArgs struct {
	AdMarkers             pulumi.StringArrayInput `pulumi:"adMarkers"`
	AuthenticationScheme  pulumi.StringPtrInput   `pulumi:"authenticationScheme"`
	CacheFullBehavior     pulumi.StringPtrInput   `pulumi:"cacheFullBehavior"`
	CacheLength           pulumi.IntPtrInput      `pulumi:"cacheLength"`
	CaptionData           pulumi.StringPtrInput   `pulumi:"captionData"`
	IncludeFillerNalUnits pulumi.StringPtrInput   `pulumi:"includeFillerNalUnits"`
	InputLossAction       pulumi.StringPtrInput   `pulumi:"inputLossAction"`
	RestartDelay          pulumi.IntPtrInput      `pulumi:"restartDelay"`
}

func (ChannelRtmpGroupSettingsArgs) ElementType

func (ChannelRtmpGroupSettingsArgs) ToChannelRtmpGroupSettingsOutput

func (i ChannelRtmpGroupSettingsArgs) ToChannelRtmpGroupSettingsOutput() ChannelRtmpGroupSettingsOutput

func (ChannelRtmpGroupSettingsArgs) ToChannelRtmpGroupSettingsOutputWithContext

func (i ChannelRtmpGroupSettingsArgs) ToChannelRtmpGroupSettingsOutputWithContext(ctx context.Context) ChannelRtmpGroupSettingsOutput

func (ChannelRtmpGroupSettingsArgs) ToChannelRtmpGroupSettingsPtrOutput

func (i ChannelRtmpGroupSettingsArgs) ToChannelRtmpGroupSettingsPtrOutput() ChannelRtmpGroupSettingsPtrOutput

func (ChannelRtmpGroupSettingsArgs) ToChannelRtmpGroupSettingsPtrOutputWithContext

func (i ChannelRtmpGroupSettingsArgs) ToChannelRtmpGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelRtmpGroupSettingsPtrOutput

func (ChannelRtmpGroupSettingsArgs) ToOutput added in v0.76.0

type ChannelRtmpGroupSettingsInput

type ChannelRtmpGroupSettingsInput interface {
	pulumi.Input

	ToChannelRtmpGroupSettingsOutput() ChannelRtmpGroupSettingsOutput
	ToChannelRtmpGroupSettingsOutputWithContext(context.Context) ChannelRtmpGroupSettingsOutput
}

ChannelRtmpGroupSettingsInput is an input type that accepts ChannelRtmpGroupSettingsArgs and ChannelRtmpGroupSettingsOutput values. You can construct a concrete instance of `ChannelRtmpGroupSettingsInput` via:

ChannelRtmpGroupSettingsArgs{...}

type ChannelRtmpGroupSettingsOutput

type ChannelRtmpGroupSettingsOutput struct{ *pulumi.OutputState }

func (ChannelRtmpGroupSettingsOutput) AdMarkers

func (ChannelRtmpGroupSettingsOutput) AuthenticationScheme

func (o ChannelRtmpGroupSettingsOutput) AuthenticationScheme() pulumi.StringPtrOutput

func (ChannelRtmpGroupSettingsOutput) CacheFullBehavior

func (ChannelRtmpGroupSettingsOutput) CacheLength

func (ChannelRtmpGroupSettingsOutput) CaptionData

func (ChannelRtmpGroupSettingsOutput) ElementType

func (ChannelRtmpGroupSettingsOutput) IncludeFillerNalUnits added in v0.76.0

func (o ChannelRtmpGroupSettingsOutput) IncludeFillerNalUnits() pulumi.StringPtrOutput

func (ChannelRtmpGroupSettingsOutput) InputLossAction

func (ChannelRtmpGroupSettingsOutput) RestartDelay

func (ChannelRtmpGroupSettingsOutput) ToChannelRtmpGroupSettingsOutput

func (o ChannelRtmpGroupSettingsOutput) ToChannelRtmpGroupSettingsOutput() ChannelRtmpGroupSettingsOutput

func (ChannelRtmpGroupSettingsOutput) ToChannelRtmpGroupSettingsOutputWithContext

func (o ChannelRtmpGroupSettingsOutput) ToChannelRtmpGroupSettingsOutputWithContext(ctx context.Context) ChannelRtmpGroupSettingsOutput

func (ChannelRtmpGroupSettingsOutput) ToChannelRtmpGroupSettingsPtrOutput

func (o ChannelRtmpGroupSettingsOutput) ToChannelRtmpGroupSettingsPtrOutput() ChannelRtmpGroupSettingsPtrOutput

func (ChannelRtmpGroupSettingsOutput) ToChannelRtmpGroupSettingsPtrOutputWithContext

func (o ChannelRtmpGroupSettingsOutput) ToChannelRtmpGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelRtmpGroupSettingsPtrOutput

func (ChannelRtmpGroupSettingsOutput) ToOutput added in v0.76.0

type ChannelRtmpGroupSettingsPtrInput

type ChannelRtmpGroupSettingsPtrInput interface {
	pulumi.Input

	ToChannelRtmpGroupSettingsPtrOutput() ChannelRtmpGroupSettingsPtrOutput
	ToChannelRtmpGroupSettingsPtrOutputWithContext(context.Context) ChannelRtmpGroupSettingsPtrOutput
}

ChannelRtmpGroupSettingsPtrInput is an input type that accepts ChannelRtmpGroupSettingsArgs, ChannelRtmpGroupSettingsPtr and ChannelRtmpGroupSettingsPtrOutput values. You can construct a concrete instance of `ChannelRtmpGroupSettingsPtrInput` via:

        ChannelRtmpGroupSettingsArgs{...}

or:

        nil

type ChannelRtmpGroupSettingsPtrOutput

type ChannelRtmpGroupSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelRtmpGroupSettingsPtrOutput) AdMarkers

func (ChannelRtmpGroupSettingsPtrOutput) AuthenticationScheme

func (o ChannelRtmpGroupSettingsPtrOutput) AuthenticationScheme() pulumi.StringPtrOutput

func (ChannelRtmpGroupSettingsPtrOutput) CacheFullBehavior

func (ChannelRtmpGroupSettingsPtrOutput) CacheLength

func (ChannelRtmpGroupSettingsPtrOutput) CaptionData

func (ChannelRtmpGroupSettingsPtrOutput) Elem

func (ChannelRtmpGroupSettingsPtrOutput) ElementType

func (ChannelRtmpGroupSettingsPtrOutput) IncludeFillerNalUnits added in v0.76.0

func (o ChannelRtmpGroupSettingsPtrOutput) IncludeFillerNalUnits() pulumi.StringPtrOutput

func (ChannelRtmpGroupSettingsPtrOutput) InputLossAction

func (ChannelRtmpGroupSettingsPtrOutput) RestartDelay

func (ChannelRtmpGroupSettingsPtrOutput) ToChannelRtmpGroupSettingsPtrOutput

func (o ChannelRtmpGroupSettingsPtrOutput) ToChannelRtmpGroupSettingsPtrOutput() ChannelRtmpGroupSettingsPtrOutput

func (ChannelRtmpGroupSettingsPtrOutput) ToChannelRtmpGroupSettingsPtrOutputWithContext

func (o ChannelRtmpGroupSettingsPtrOutput) ToChannelRtmpGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelRtmpGroupSettingsPtrOutput

func (ChannelRtmpGroupSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelRtmpOutputSettings

type ChannelRtmpOutputSettings struct {
	CertificateMode         *string                   `pulumi:"certificateMode"`
	ConnectionRetryInterval *int                      `pulumi:"connectionRetryInterval"`
	Destination             *ChannelOutputLocationRef `pulumi:"destination"`
	NumRetries              *int                      `pulumi:"numRetries"`
}

type ChannelRtmpOutputSettingsArgs

type ChannelRtmpOutputSettingsArgs struct {
	CertificateMode         pulumi.StringPtrInput            `pulumi:"certificateMode"`
	ConnectionRetryInterval pulumi.IntPtrInput               `pulumi:"connectionRetryInterval"`
	Destination             ChannelOutputLocationRefPtrInput `pulumi:"destination"`
	NumRetries              pulumi.IntPtrInput               `pulumi:"numRetries"`
}

func (ChannelRtmpOutputSettingsArgs) ElementType

func (ChannelRtmpOutputSettingsArgs) ToChannelRtmpOutputSettingsOutput

func (i ChannelRtmpOutputSettingsArgs) ToChannelRtmpOutputSettingsOutput() ChannelRtmpOutputSettingsOutput

func (ChannelRtmpOutputSettingsArgs) ToChannelRtmpOutputSettingsOutputWithContext

func (i ChannelRtmpOutputSettingsArgs) ToChannelRtmpOutputSettingsOutputWithContext(ctx context.Context) ChannelRtmpOutputSettingsOutput

func (ChannelRtmpOutputSettingsArgs) ToChannelRtmpOutputSettingsPtrOutput

func (i ChannelRtmpOutputSettingsArgs) ToChannelRtmpOutputSettingsPtrOutput() ChannelRtmpOutputSettingsPtrOutput

func (ChannelRtmpOutputSettingsArgs) ToChannelRtmpOutputSettingsPtrOutputWithContext

func (i ChannelRtmpOutputSettingsArgs) ToChannelRtmpOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelRtmpOutputSettingsPtrOutput

func (ChannelRtmpOutputSettingsArgs) ToOutput added in v0.76.0

type ChannelRtmpOutputSettingsInput

type ChannelRtmpOutputSettingsInput interface {
	pulumi.Input

	ToChannelRtmpOutputSettingsOutput() ChannelRtmpOutputSettingsOutput
	ToChannelRtmpOutputSettingsOutputWithContext(context.Context) ChannelRtmpOutputSettingsOutput
}

ChannelRtmpOutputSettingsInput is an input type that accepts ChannelRtmpOutputSettingsArgs and ChannelRtmpOutputSettingsOutput values. You can construct a concrete instance of `ChannelRtmpOutputSettingsInput` via:

ChannelRtmpOutputSettingsArgs{...}

type ChannelRtmpOutputSettingsOutput

type ChannelRtmpOutputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelRtmpOutputSettingsOutput) CertificateMode

func (ChannelRtmpOutputSettingsOutput) ConnectionRetryInterval

func (o ChannelRtmpOutputSettingsOutput) ConnectionRetryInterval() pulumi.IntPtrOutput

func (ChannelRtmpOutputSettingsOutput) Destination

func (ChannelRtmpOutputSettingsOutput) ElementType

func (ChannelRtmpOutputSettingsOutput) NumRetries

func (ChannelRtmpOutputSettingsOutput) ToChannelRtmpOutputSettingsOutput

func (o ChannelRtmpOutputSettingsOutput) ToChannelRtmpOutputSettingsOutput() ChannelRtmpOutputSettingsOutput

func (ChannelRtmpOutputSettingsOutput) ToChannelRtmpOutputSettingsOutputWithContext

func (o ChannelRtmpOutputSettingsOutput) ToChannelRtmpOutputSettingsOutputWithContext(ctx context.Context) ChannelRtmpOutputSettingsOutput

func (ChannelRtmpOutputSettingsOutput) ToChannelRtmpOutputSettingsPtrOutput

func (o ChannelRtmpOutputSettingsOutput) ToChannelRtmpOutputSettingsPtrOutput() ChannelRtmpOutputSettingsPtrOutput

func (ChannelRtmpOutputSettingsOutput) ToChannelRtmpOutputSettingsPtrOutputWithContext

func (o ChannelRtmpOutputSettingsOutput) ToChannelRtmpOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelRtmpOutputSettingsPtrOutput

func (ChannelRtmpOutputSettingsOutput) ToOutput added in v0.76.0

type ChannelRtmpOutputSettingsPtrInput

type ChannelRtmpOutputSettingsPtrInput interface {
	pulumi.Input

	ToChannelRtmpOutputSettingsPtrOutput() ChannelRtmpOutputSettingsPtrOutput
	ToChannelRtmpOutputSettingsPtrOutputWithContext(context.Context) ChannelRtmpOutputSettingsPtrOutput
}

ChannelRtmpOutputSettingsPtrInput is an input type that accepts ChannelRtmpOutputSettingsArgs, ChannelRtmpOutputSettingsPtr and ChannelRtmpOutputSettingsPtrOutput values. You can construct a concrete instance of `ChannelRtmpOutputSettingsPtrInput` via:

        ChannelRtmpOutputSettingsArgs{...}

or:

        nil

type ChannelRtmpOutputSettingsPtrOutput

type ChannelRtmpOutputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelRtmpOutputSettingsPtrOutput) CertificateMode

func (ChannelRtmpOutputSettingsPtrOutput) ConnectionRetryInterval

func (o ChannelRtmpOutputSettingsPtrOutput) ConnectionRetryInterval() pulumi.IntPtrOutput

func (ChannelRtmpOutputSettingsPtrOutput) Destination

func (ChannelRtmpOutputSettingsPtrOutput) Elem

func (ChannelRtmpOutputSettingsPtrOutput) ElementType

func (ChannelRtmpOutputSettingsPtrOutput) NumRetries

func (ChannelRtmpOutputSettingsPtrOutput) ToChannelRtmpOutputSettingsPtrOutput

func (o ChannelRtmpOutputSettingsPtrOutput) ToChannelRtmpOutputSettingsPtrOutput() ChannelRtmpOutputSettingsPtrOutput

func (ChannelRtmpOutputSettingsPtrOutput) ToChannelRtmpOutputSettingsPtrOutputWithContext

func (o ChannelRtmpOutputSettingsPtrOutput) ToChannelRtmpOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelRtmpOutputSettingsPtrOutput

func (ChannelRtmpOutputSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelScte20PlusEmbeddedDestinationSettings

type ChannelScte20PlusEmbeddedDestinationSettings struct {
}

type ChannelScte20PlusEmbeddedDestinationSettingsArgs

type ChannelScte20PlusEmbeddedDestinationSettingsArgs struct {
}

func (ChannelScte20PlusEmbeddedDestinationSettingsArgs) ElementType

func (ChannelScte20PlusEmbeddedDestinationSettingsArgs) ToChannelScte20PlusEmbeddedDestinationSettingsOutput

func (i ChannelScte20PlusEmbeddedDestinationSettingsArgs) ToChannelScte20PlusEmbeddedDestinationSettingsOutput() ChannelScte20PlusEmbeddedDestinationSettingsOutput

func (ChannelScte20PlusEmbeddedDestinationSettingsArgs) ToChannelScte20PlusEmbeddedDestinationSettingsOutputWithContext

func (i ChannelScte20PlusEmbeddedDestinationSettingsArgs) ToChannelScte20PlusEmbeddedDestinationSettingsOutputWithContext(ctx context.Context) ChannelScte20PlusEmbeddedDestinationSettingsOutput

func (ChannelScte20PlusEmbeddedDestinationSettingsArgs) ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutput

func (i ChannelScte20PlusEmbeddedDestinationSettingsArgs) ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutput() ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput

func (ChannelScte20PlusEmbeddedDestinationSettingsArgs) ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutputWithContext

func (i ChannelScte20PlusEmbeddedDestinationSettingsArgs) ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput

func (ChannelScte20PlusEmbeddedDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelScte20PlusEmbeddedDestinationSettingsInput

type ChannelScte20PlusEmbeddedDestinationSettingsInput interface {
	pulumi.Input

	ToChannelScte20PlusEmbeddedDestinationSettingsOutput() ChannelScte20PlusEmbeddedDestinationSettingsOutput
	ToChannelScte20PlusEmbeddedDestinationSettingsOutputWithContext(context.Context) ChannelScte20PlusEmbeddedDestinationSettingsOutput
}

ChannelScte20PlusEmbeddedDestinationSettingsInput is an input type that accepts ChannelScte20PlusEmbeddedDestinationSettingsArgs and ChannelScte20PlusEmbeddedDestinationSettingsOutput values. You can construct a concrete instance of `ChannelScte20PlusEmbeddedDestinationSettingsInput` via:

ChannelScte20PlusEmbeddedDestinationSettingsArgs{...}

type ChannelScte20PlusEmbeddedDestinationSettingsOutput

type ChannelScte20PlusEmbeddedDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelScte20PlusEmbeddedDestinationSettingsOutput) ElementType

func (ChannelScte20PlusEmbeddedDestinationSettingsOutput) ToChannelScte20PlusEmbeddedDestinationSettingsOutput

func (o ChannelScte20PlusEmbeddedDestinationSettingsOutput) ToChannelScte20PlusEmbeddedDestinationSettingsOutput() ChannelScte20PlusEmbeddedDestinationSettingsOutput

func (ChannelScte20PlusEmbeddedDestinationSettingsOutput) ToChannelScte20PlusEmbeddedDestinationSettingsOutputWithContext

func (o ChannelScte20PlusEmbeddedDestinationSettingsOutput) ToChannelScte20PlusEmbeddedDestinationSettingsOutputWithContext(ctx context.Context) ChannelScte20PlusEmbeddedDestinationSettingsOutput

func (ChannelScte20PlusEmbeddedDestinationSettingsOutput) ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutput

func (o ChannelScte20PlusEmbeddedDestinationSettingsOutput) ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutput() ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput

func (ChannelScte20PlusEmbeddedDestinationSettingsOutput) ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutputWithContext

func (o ChannelScte20PlusEmbeddedDestinationSettingsOutput) ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput

func (ChannelScte20PlusEmbeddedDestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelScte20PlusEmbeddedDestinationSettingsPtrInput

type ChannelScte20PlusEmbeddedDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutput() ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput
	ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutputWithContext(context.Context) ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput
}

ChannelScte20PlusEmbeddedDestinationSettingsPtrInput is an input type that accepts ChannelScte20PlusEmbeddedDestinationSettingsArgs, ChannelScte20PlusEmbeddedDestinationSettingsPtr and ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelScte20PlusEmbeddedDestinationSettingsPtrInput` via:

        ChannelScte20PlusEmbeddedDestinationSettingsArgs{...}

or:

        nil

type ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput

type ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput) Elem

func (ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput) ElementType

func (ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput) ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutput

func (ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput) ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutputWithContext

func (o ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput) ToChannelScte20PlusEmbeddedDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput

func (ChannelScte20PlusEmbeddedDestinationSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelScte20SourceSettings

type ChannelScte20SourceSettings struct {
	Convert608To708        *string `pulumi:"convert608To708"`
	Source608ChannelNumber *int    `pulumi:"source608ChannelNumber"`
}

type ChannelScte20SourceSettingsArgs

type ChannelScte20SourceSettingsArgs struct {
	Convert608To708        pulumi.StringPtrInput `pulumi:"convert608To708"`
	Source608ChannelNumber pulumi.IntPtrInput    `pulumi:"source608ChannelNumber"`
}

func (ChannelScte20SourceSettingsArgs) ElementType

func (ChannelScte20SourceSettingsArgs) ToChannelScte20SourceSettingsOutput

func (i ChannelScte20SourceSettingsArgs) ToChannelScte20SourceSettingsOutput() ChannelScte20SourceSettingsOutput

func (ChannelScte20SourceSettingsArgs) ToChannelScte20SourceSettingsOutputWithContext

func (i ChannelScte20SourceSettingsArgs) ToChannelScte20SourceSettingsOutputWithContext(ctx context.Context) ChannelScte20SourceSettingsOutput

func (ChannelScte20SourceSettingsArgs) ToChannelScte20SourceSettingsPtrOutput

func (i ChannelScte20SourceSettingsArgs) ToChannelScte20SourceSettingsPtrOutput() ChannelScte20SourceSettingsPtrOutput

func (ChannelScte20SourceSettingsArgs) ToChannelScte20SourceSettingsPtrOutputWithContext

func (i ChannelScte20SourceSettingsArgs) ToChannelScte20SourceSettingsPtrOutputWithContext(ctx context.Context) ChannelScte20SourceSettingsPtrOutput

func (ChannelScte20SourceSettingsArgs) ToOutput added in v0.76.0

type ChannelScte20SourceSettingsInput

type ChannelScte20SourceSettingsInput interface {
	pulumi.Input

	ToChannelScte20SourceSettingsOutput() ChannelScte20SourceSettingsOutput
	ToChannelScte20SourceSettingsOutputWithContext(context.Context) ChannelScte20SourceSettingsOutput
}

ChannelScte20SourceSettingsInput is an input type that accepts ChannelScte20SourceSettingsArgs and ChannelScte20SourceSettingsOutput values. You can construct a concrete instance of `ChannelScte20SourceSettingsInput` via:

ChannelScte20SourceSettingsArgs{...}

type ChannelScte20SourceSettingsOutput

type ChannelScte20SourceSettingsOutput struct{ *pulumi.OutputState }

func (ChannelScte20SourceSettingsOutput) Convert608To708

func (ChannelScte20SourceSettingsOutput) ElementType

func (ChannelScte20SourceSettingsOutput) Source608ChannelNumber

func (o ChannelScte20SourceSettingsOutput) Source608ChannelNumber() pulumi.IntPtrOutput

func (ChannelScte20SourceSettingsOutput) ToChannelScte20SourceSettingsOutput

func (o ChannelScte20SourceSettingsOutput) ToChannelScte20SourceSettingsOutput() ChannelScte20SourceSettingsOutput

func (ChannelScte20SourceSettingsOutput) ToChannelScte20SourceSettingsOutputWithContext

func (o ChannelScte20SourceSettingsOutput) ToChannelScte20SourceSettingsOutputWithContext(ctx context.Context) ChannelScte20SourceSettingsOutput

func (ChannelScte20SourceSettingsOutput) ToChannelScte20SourceSettingsPtrOutput

func (o ChannelScte20SourceSettingsOutput) ToChannelScte20SourceSettingsPtrOutput() ChannelScte20SourceSettingsPtrOutput

func (ChannelScte20SourceSettingsOutput) ToChannelScte20SourceSettingsPtrOutputWithContext

func (o ChannelScte20SourceSettingsOutput) ToChannelScte20SourceSettingsPtrOutputWithContext(ctx context.Context) ChannelScte20SourceSettingsPtrOutput

func (ChannelScte20SourceSettingsOutput) ToOutput added in v0.76.0

type ChannelScte20SourceSettingsPtrInput

type ChannelScte20SourceSettingsPtrInput interface {
	pulumi.Input

	ToChannelScte20SourceSettingsPtrOutput() ChannelScte20SourceSettingsPtrOutput
	ToChannelScte20SourceSettingsPtrOutputWithContext(context.Context) ChannelScte20SourceSettingsPtrOutput
}

ChannelScte20SourceSettingsPtrInput is an input type that accepts ChannelScte20SourceSettingsArgs, ChannelScte20SourceSettingsPtr and ChannelScte20SourceSettingsPtrOutput values. You can construct a concrete instance of `ChannelScte20SourceSettingsPtrInput` via:

        ChannelScte20SourceSettingsArgs{...}

or:

        nil

type ChannelScte20SourceSettingsPtrOutput

type ChannelScte20SourceSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelScte20SourceSettingsPtrOutput) Convert608To708

func (ChannelScte20SourceSettingsPtrOutput) Elem

func (ChannelScte20SourceSettingsPtrOutput) ElementType

func (ChannelScte20SourceSettingsPtrOutput) Source608ChannelNumber

func (o ChannelScte20SourceSettingsPtrOutput) Source608ChannelNumber() pulumi.IntPtrOutput

func (ChannelScte20SourceSettingsPtrOutput) ToChannelScte20SourceSettingsPtrOutput

func (o ChannelScte20SourceSettingsPtrOutput) ToChannelScte20SourceSettingsPtrOutput() ChannelScte20SourceSettingsPtrOutput

func (ChannelScte20SourceSettingsPtrOutput) ToChannelScte20SourceSettingsPtrOutputWithContext

func (o ChannelScte20SourceSettingsPtrOutput) ToChannelScte20SourceSettingsPtrOutputWithContext(ctx context.Context) ChannelScte20SourceSettingsPtrOutput

func (ChannelScte20SourceSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelScte27DestinationSettings

type ChannelScte27DestinationSettings struct {
}

type ChannelScte27DestinationSettingsArgs

type ChannelScte27DestinationSettingsArgs struct {
}

func (ChannelScte27DestinationSettingsArgs) ElementType

func (ChannelScte27DestinationSettingsArgs) ToChannelScte27DestinationSettingsOutput

func (i ChannelScte27DestinationSettingsArgs) ToChannelScte27DestinationSettingsOutput() ChannelScte27DestinationSettingsOutput

func (ChannelScte27DestinationSettingsArgs) ToChannelScte27DestinationSettingsOutputWithContext

func (i ChannelScte27DestinationSettingsArgs) ToChannelScte27DestinationSettingsOutputWithContext(ctx context.Context) ChannelScte27DestinationSettingsOutput

func (ChannelScte27DestinationSettingsArgs) ToChannelScte27DestinationSettingsPtrOutput

func (i ChannelScte27DestinationSettingsArgs) ToChannelScte27DestinationSettingsPtrOutput() ChannelScte27DestinationSettingsPtrOutput

func (ChannelScte27DestinationSettingsArgs) ToChannelScte27DestinationSettingsPtrOutputWithContext

func (i ChannelScte27DestinationSettingsArgs) ToChannelScte27DestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelScte27DestinationSettingsPtrOutput

func (ChannelScte27DestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelScte27DestinationSettingsInput

type ChannelScte27DestinationSettingsInput interface {
	pulumi.Input

	ToChannelScte27DestinationSettingsOutput() ChannelScte27DestinationSettingsOutput
	ToChannelScte27DestinationSettingsOutputWithContext(context.Context) ChannelScte27DestinationSettingsOutput
}

ChannelScte27DestinationSettingsInput is an input type that accepts ChannelScte27DestinationSettingsArgs and ChannelScte27DestinationSettingsOutput values. You can construct a concrete instance of `ChannelScte27DestinationSettingsInput` via:

ChannelScte27DestinationSettingsArgs{...}

type ChannelScte27DestinationSettingsOutput

type ChannelScte27DestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelScte27DestinationSettingsOutput) ElementType

func (ChannelScte27DestinationSettingsOutput) ToChannelScte27DestinationSettingsOutput

func (o ChannelScte27DestinationSettingsOutput) ToChannelScte27DestinationSettingsOutput() ChannelScte27DestinationSettingsOutput

func (ChannelScte27DestinationSettingsOutput) ToChannelScte27DestinationSettingsOutputWithContext

func (o ChannelScte27DestinationSettingsOutput) ToChannelScte27DestinationSettingsOutputWithContext(ctx context.Context) ChannelScte27DestinationSettingsOutput

func (ChannelScte27DestinationSettingsOutput) ToChannelScte27DestinationSettingsPtrOutput

func (o ChannelScte27DestinationSettingsOutput) ToChannelScte27DestinationSettingsPtrOutput() ChannelScte27DestinationSettingsPtrOutput

func (ChannelScte27DestinationSettingsOutput) ToChannelScte27DestinationSettingsPtrOutputWithContext

func (o ChannelScte27DestinationSettingsOutput) ToChannelScte27DestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelScte27DestinationSettingsPtrOutput

func (ChannelScte27DestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelScte27DestinationSettingsPtrInput

type ChannelScte27DestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelScte27DestinationSettingsPtrOutput() ChannelScte27DestinationSettingsPtrOutput
	ToChannelScte27DestinationSettingsPtrOutputWithContext(context.Context) ChannelScte27DestinationSettingsPtrOutput
}

ChannelScte27DestinationSettingsPtrInput is an input type that accepts ChannelScte27DestinationSettingsArgs, ChannelScte27DestinationSettingsPtr and ChannelScte27DestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelScte27DestinationSettingsPtrInput` via:

        ChannelScte27DestinationSettingsArgs{...}

or:

        nil

type ChannelScte27DestinationSettingsPtrOutput

type ChannelScte27DestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelScte27DestinationSettingsPtrOutput) Elem

func (ChannelScte27DestinationSettingsPtrOutput) ElementType

func (ChannelScte27DestinationSettingsPtrOutput) ToChannelScte27DestinationSettingsPtrOutput

func (o ChannelScte27DestinationSettingsPtrOutput) ToChannelScte27DestinationSettingsPtrOutput() ChannelScte27DestinationSettingsPtrOutput

func (ChannelScte27DestinationSettingsPtrOutput) ToChannelScte27DestinationSettingsPtrOutputWithContext

func (o ChannelScte27DestinationSettingsPtrOutput) ToChannelScte27DestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelScte27DestinationSettingsPtrOutput

func (ChannelScte27DestinationSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelScte27SourceSettings

type ChannelScte27SourceSettings struct {
	OcrLanguage *string `pulumi:"ocrLanguage"`
	Pid         *int    `pulumi:"pid"`
}

type ChannelScte27SourceSettingsArgs

type ChannelScte27SourceSettingsArgs struct {
	OcrLanguage pulumi.StringPtrInput `pulumi:"ocrLanguage"`
	Pid         pulumi.IntPtrInput    `pulumi:"pid"`
}

func (ChannelScte27SourceSettingsArgs) ElementType

func (ChannelScte27SourceSettingsArgs) ToChannelScte27SourceSettingsOutput

func (i ChannelScte27SourceSettingsArgs) ToChannelScte27SourceSettingsOutput() ChannelScte27SourceSettingsOutput

func (ChannelScte27SourceSettingsArgs) ToChannelScte27SourceSettingsOutputWithContext

func (i ChannelScte27SourceSettingsArgs) ToChannelScte27SourceSettingsOutputWithContext(ctx context.Context) ChannelScte27SourceSettingsOutput

func (ChannelScte27SourceSettingsArgs) ToChannelScte27SourceSettingsPtrOutput

func (i ChannelScte27SourceSettingsArgs) ToChannelScte27SourceSettingsPtrOutput() ChannelScte27SourceSettingsPtrOutput

func (ChannelScte27SourceSettingsArgs) ToChannelScte27SourceSettingsPtrOutputWithContext

func (i ChannelScte27SourceSettingsArgs) ToChannelScte27SourceSettingsPtrOutputWithContext(ctx context.Context) ChannelScte27SourceSettingsPtrOutput

func (ChannelScte27SourceSettingsArgs) ToOutput added in v0.76.0

type ChannelScte27SourceSettingsInput

type ChannelScte27SourceSettingsInput interface {
	pulumi.Input

	ToChannelScte27SourceSettingsOutput() ChannelScte27SourceSettingsOutput
	ToChannelScte27SourceSettingsOutputWithContext(context.Context) ChannelScte27SourceSettingsOutput
}

ChannelScte27SourceSettingsInput is an input type that accepts ChannelScte27SourceSettingsArgs and ChannelScte27SourceSettingsOutput values. You can construct a concrete instance of `ChannelScte27SourceSettingsInput` via:

ChannelScte27SourceSettingsArgs{...}

type ChannelScte27SourceSettingsOutput

type ChannelScte27SourceSettingsOutput struct{ *pulumi.OutputState }

func (ChannelScte27SourceSettingsOutput) ElementType

func (ChannelScte27SourceSettingsOutput) OcrLanguage added in v0.9.0

func (ChannelScte27SourceSettingsOutput) Pid

func (ChannelScte27SourceSettingsOutput) ToChannelScte27SourceSettingsOutput

func (o ChannelScte27SourceSettingsOutput) ToChannelScte27SourceSettingsOutput() ChannelScte27SourceSettingsOutput

func (ChannelScte27SourceSettingsOutput) ToChannelScte27SourceSettingsOutputWithContext

func (o ChannelScte27SourceSettingsOutput) ToChannelScte27SourceSettingsOutputWithContext(ctx context.Context) ChannelScte27SourceSettingsOutput

func (ChannelScte27SourceSettingsOutput) ToChannelScte27SourceSettingsPtrOutput

func (o ChannelScte27SourceSettingsOutput) ToChannelScte27SourceSettingsPtrOutput() ChannelScte27SourceSettingsPtrOutput

func (ChannelScte27SourceSettingsOutput) ToChannelScte27SourceSettingsPtrOutputWithContext

func (o ChannelScte27SourceSettingsOutput) ToChannelScte27SourceSettingsPtrOutputWithContext(ctx context.Context) ChannelScte27SourceSettingsPtrOutput

func (ChannelScte27SourceSettingsOutput) ToOutput added in v0.76.0

type ChannelScte27SourceSettingsPtrInput

type ChannelScte27SourceSettingsPtrInput interface {
	pulumi.Input

	ToChannelScte27SourceSettingsPtrOutput() ChannelScte27SourceSettingsPtrOutput
	ToChannelScte27SourceSettingsPtrOutputWithContext(context.Context) ChannelScte27SourceSettingsPtrOutput
}

ChannelScte27SourceSettingsPtrInput is an input type that accepts ChannelScte27SourceSettingsArgs, ChannelScte27SourceSettingsPtr and ChannelScte27SourceSettingsPtrOutput values. You can construct a concrete instance of `ChannelScte27SourceSettingsPtrInput` via:

        ChannelScte27SourceSettingsArgs{...}

or:

        nil

type ChannelScte27SourceSettingsPtrOutput

type ChannelScte27SourceSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelScte27SourceSettingsPtrOutput) Elem

func (ChannelScte27SourceSettingsPtrOutput) ElementType

func (ChannelScte27SourceSettingsPtrOutput) OcrLanguage added in v0.9.0

func (ChannelScte27SourceSettingsPtrOutput) Pid

func (ChannelScte27SourceSettingsPtrOutput) ToChannelScte27SourceSettingsPtrOutput

func (o ChannelScte27SourceSettingsPtrOutput) ToChannelScte27SourceSettingsPtrOutput() ChannelScte27SourceSettingsPtrOutput

func (ChannelScte27SourceSettingsPtrOutput) ToChannelScte27SourceSettingsPtrOutputWithContext

func (o ChannelScte27SourceSettingsPtrOutput) ToChannelScte27SourceSettingsPtrOutputWithContext(ctx context.Context) ChannelScte27SourceSettingsPtrOutput

func (ChannelScte27SourceSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelScte35SpliceInsert

type ChannelScte35SpliceInsert struct {
	AdAvailOffset          *int    `pulumi:"adAvailOffset"`
	NoRegionalBlackoutFlag *string `pulumi:"noRegionalBlackoutFlag"`
	WebDeliveryAllowedFlag *string `pulumi:"webDeliveryAllowedFlag"`
}

type ChannelScte35SpliceInsertArgs

type ChannelScte35SpliceInsertArgs struct {
	AdAvailOffset          pulumi.IntPtrInput    `pulumi:"adAvailOffset"`
	NoRegionalBlackoutFlag pulumi.StringPtrInput `pulumi:"noRegionalBlackoutFlag"`
	WebDeliveryAllowedFlag pulumi.StringPtrInput `pulumi:"webDeliveryAllowedFlag"`
}

func (ChannelScte35SpliceInsertArgs) ElementType

func (ChannelScte35SpliceInsertArgs) ToChannelScte35SpliceInsertOutput

func (i ChannelScte35SpliceInsertArgs) ToChannelScte35SpliceInsertOutput() ChannelScte35SpliceInsertOutput

func (ChannelScte35SpliceInsertArgs) ToChannelScte35SpliceInsertOutputWithContext

func (i ChannelScte35SpliceInsertArgs) ToChannelScte35SpliceInsertOutputWithContext(ctx context.Context) ChannelScte35SpliceInsertOutput

func (ChannelScte35SpliceInsertArgs) ToChannelScte35SpliceInsertPtrOutput

func (i ChannelScte35SpliceInsertArgs) ToChannelScte35SpliceInsertPtrOutput() ChannelScte35SpliceInsertPtrOutput

func (ChannelScte35SpliceInsertArgs) ToChannelScte35SpliceInsertPtrOutputWithContext

func (i ChannelScte35SpliceInsertArgs) ToChannelScte35SpliceInsertPtrOutputWithContext(ctx context.Context) ChannelScte35SpliceInsertPtrOutput

func (ChannelScte35SpliceInsertArgs) ToOutput added in v0.76.0

type ChannelScte35SpliceInsertInput

type ChannelScte35SpliceInsertInput interface {
	pulumi.Input

	ToChannelScte35SpliceInsertOutput() ChannelScte35SpliceInsertOutput
	ToChannelScte35SpliceInsertOutputWithContext(context.Context) ChannelScte35SpliceInsertOutput
}

ChannelScte35SpliceInsertInput is an input type that accepts ChannelScte35SpliceInsertArgs and ChannelScte35SpliceInsertOutput values. You can construct a concrete instance of `ChannelScte35SpliceInsertInput` via:

ChannelScte35SpliceInsertArgs{...}

type ChannelScte35SpliceInsertOutput

type ChannelScte35SpliceInsertOutput struct{ *pulumi.OutputState }

func (ChannelScte35SpliceInsertOutput) AdAvailOffset

func (ChannelScte35SpliceInsertOutput) ElementType

func (ChannelScte35SpliceInsertOutput) NoRegionalBlackoutFlag

func (o ChannelScte35SpliceInsertOutput) NoRegionalBlackoutFlag() pulumi.StringPtrOutput

func (ChannelScte35SpliceInsertOutput) ToChannelScte35SpliceInsertOutput

func (o ChannelScte35SpliceInsertOutput) ToChannelScte35SpliceInsertOutput() ChannelScte35SpliceInsertOutput

func (ChannelScte35SpliceInsertOutput) ToChannelScte35SpliceInsertOutputWithContext

func (o ChannelScte35SpliceInsertOutput) ToChannelScte35SpliceInsertOutputWithContext(ctx context.Context) ChannelScte35SpliceInsertOutput

func (ChannelScte35SpliceInsertOutput) ToChannelScte35SpliceInsertPtrOutput

func (o ChannelScte35SpliceInsertOutput) ToChannelScte35SpliceInsertPtrOutput() ChannelScte35SpliceInsertPtrOutput

func (ChannelScte35SpliceInsertOutput) ToChannelScte35SpliceInsertPtrOutputWithContext

func (o ChannelScte35SpliceInsertOutput) ToChannelScte35SpliceInsertPtrOutputWithContext(ctx context.Context) ChannelScte35SpliceInsertPtrOutput

func (ChannelScte35SpliceInsertOutput) ToOutput added in v0.76.0

func (ChannelScte35SpliceInsertOutput) WebDeliveryAllowedFlag

func (o ChannelScte35SpliceInsertOutput) WebDeliveryAllowedFlag() pulumi.StringPtrOutput

type ChannelScte35SpliceInsertPtrInput

type ChannelScte35SpliceInsertPtrInput interface {
	pulumi.Input

	ToChannelScte35SpliceInsertPtrOutput() ChannelScte35SpliceInsertPtrOutput
	ToChannelScte35SpliceInsertPtrOutputWithContext(context.Context) ChannelScte35SpliceInsertPtrOutput
}

ChannelScte35SpliceInsertPtrInput is an input type that accepts ChannelScte35SpliceInsertArgs, ChannelScte35SpliceInsertPtr and ChannelScte35SpliceInsertPtrOutput values. You can construct a concrete instance of `ChannelScte35SpliceInsertPtrInput` via:

        ChannelScte35SpliceInsertArgs{...}

or:

        nil

type ChannelScte35SpliceInsertPtrOutput

type ChannelScte35SpliceInsertPtrOutput struct{ *pulumi.OutputState }

func (ChannelScte35SpliceInsertPtrOutput) AdAvailOffset

func (ChannelScte35SpliceInsertPtrOutput) Elem

func (ChannelScte35SpliceInsertPtrOutput) ElementType

func (ChannelScte35SpliceInsertPtrOutput) NoRegionalBlackoutFlag

func (o ChannelScte35SpliceInsertPtrOutput) NoRegionalBlackoutFlag() pulumi.StringPtrOutput

func (ChannelScte35SpliceInsertPtrOutput) ToChannelScte35SpliceInsertPtrOutput

func (o ChannelScte35SpliceInsertPtrOutput) ToChannelScte35SpliceInsertPtrOutput() ChannelScte35SpliceInsertPtrOutput

func (ChannelScte35SpliceInsertPtrOutput) ToChannelScte35SpliceInsertPtrOutputWithContext

func (o ChannelScte35SpliceInsertPtrOutput) ToChannelScte35SpliceInsertPtrOutputWithContext(ctx context.Context) ChannelScte35SpliceInsertPtrOutput

func (ChannelScte35SpliceInsertPtrOutput) ToOutput added in v0.76.0

func (ChannelScte35SpliceInsertPtrOutput) WebDeliveryAllowedFlag

func (o ChannelScte35SpliceInsertPtrOutput) WebDeliveryAllowedFlag() pulumi.StringPtrOutput

type ChannelScte35TimeSignalApos

type ChannelScte35TimeSignalApos struct {
	AdAvailOffset          *int    `pulumi:"adAvailOffset"`
	NoRegionalBlackoutFlag *string `pulumi:"noRegionalBlackoutFlag"`
	WebDeliveryAllowedFlag *string `pulumi:"webDeliveryAllowedFlag"`
}

type ChannelScte35TimeSignalAposArgs

type ChannelScte35TimeSignalAposArgs struct {
	AdAvailOffset          pulumi.IntPtrInput    `pulumi:"adAvailOffset"`
	NoRegionalBlackoutFlag pulumi.StringPtrInput `pulumi:"noRegionalBlackoutFlag"`
	WebDeliveryAllowedFlag pulumi.StringPtrInput `pulumi:"webDeliveryAllowedFlag"`
}

func (ChannelScte35TimeSignalAposArgs) ElementType

func (ChannelScte35TimeSignalAposArgs) ToChannelScte35TimeSignalAposOutput

func (i ChannelScte35TimeSignalAposArgs) ToChannelScte35TimeSignalAposOutput() ChannelScte35TimeSignalAposOutput

func (ChannelScte35TimeSignalAposArgs) ToChannelScte35TimeSignalAposOutputWithContext

func (i ChannelScte35TimeSignalAposArgs) ToChannelScte35TimeSignalAposOutputWithContext(ctx context.Context) ChannelScte35TimeSignalAposOutput

func (ChannelScte35TimeSignalAposArgs) ToChannelScte35TimeSignalAposPtrOutput

func (i ChannelScte35TimeSignalAposArgs) ToChannelScte35TimeSignalAposPtrOutput() ChannelScte35TimeSignalAposPtrOutput

func (ChannelScte35TimeSignalAposArgs) ToChannelScte35TimeSignalAposPtrOutputWithContext

func (i ChannelScte35TimeSignalAposArgs) ToChannelScte35TimeSignalAposPtrOutputWithContext(ctx context.Context) ChannelScte35TimeSignalAposPtrOutput

func (ChannelScte35TimeSignalAposArgs) ToOutput added in v0.76.0

type ChannelScte35TimeSignalAposInput

type ChannelScte35TimeSignalAposInput interface {
	pulumi.Input

	ToChannelScte35TimeSignalAposOutput() ChannelScte35TimeSignalAposOutput
	ToChannelScte35TimeSignalAposOutputWithContext(context.Context) ChannelScte35TimeSignalAposOutput
}

ChannelScte35TimeSignalAposInput is an input type that accepts ChannelScte35TimeSignalAposArgs and ChannelScte35TimeSignalAposOutput values. You can construct a concrete instance of `ChannelScte35TimeSignalAposInput` via:

ChannelScte35TimeSignalAposArgs{...}

type ChannelScte35TimeSignalAposOutput

type ChannelScte35TimeSignalAposOutput struct{ *pulumi.OutputState }

func (ChannelScte35TimeSignalAposOutput) AdAvailOffset

func (ChannelScte35TimeSignalAposOutput) ElementType

func (ChannelScte35TimeSignalAposOutput) NoRegionalBlackoutFlag

func (o ChannelScte35TimeSignalAposOutput) NoRegionalBlackoutFlag() pulumi.StringPtrOutput

func (ChannelScte35TimeSignalAposOutput) ToChannelScte35TimeSignalAposOutput

func (o ChannelScte35TimeSignalAposOutput) ToChannelScte35TimeSignalAposOutput() ChannelScte35TimeSignalAposOutput

func (ChannelScte35TimeSignalAposOutput) ToChannelScte35TimeSignalAposOutputWithContext

func (o ChannelScte35TimeSignalAposOutput) ToChannelScte35TimeSignalAposOutputWithContext(ctx context.Context) ChannelScte35TimeSignalAposOutput

func (ChannelScte35TimeSignalAposOutput) ToChannelScte35TimeSignalAposPtrOutput

func (o ChannelScte35TimeSignalAposOutput) ToChannelScte35TimeSignalAposPtrOutput() ChannelScte35TimeSignalAposPtrOutput

func (ChannelScte35TimeSignalAposOutput) ToChannelScte35TimeSignalAposPtrOutputWithContext

func (o ChannelScte35TimeSignalAposOutput) ToChannelScte35TimeSignalAposPtrOutputWithContext(ctx context.Context) ChannelScte35TimeSignalAposPtrOutput

func (ChannelScte35TimeSignalAposOutput) ToOutput added in v0.76.0

func (ChannelScte35TimeSignalAposOutput) WebDeliveryAllowedFlag

func (o ChannelScte35TimeSignalAposOutput) WebDeliveryAllowedFlag() pulumi.StringPtrOutput

type ChannelScte35TimeSignalAposPtrInput

type ChannelScte35TimeSignalAposPtrInput interface {
	pulumi.Input

	ToChannelScte35TimeSignalAposPtrOutput() ChannelScte35TimeSignalAposPtrOutput
	ToChannelScte35TimeSignalAposPtrOutputWithContext(context.Context) ChannelScte35TimeSignalAposPtrOutput
}

ChannelScte35TimeSignalAposPtrInput is an input type that accepts ChannelScte35TimeSignalAposArgs, ChannelScte35TimeSignalAposPtr and ChannelScte35TimeSignalAposPtrOutput values. You can construct a concrete instance of `ChannelScte35TimeSignalAposPtrInput` via:

        ChannelScte35TimeSignalAposArgs{...}

or:

        nil

type ChannelScte35TimeSignalAposPtrOutput

type ChannelScte35TimeSignalAposPtrOutput struct{ *pulumi.OutputState }

func (ChannelScte35TimeSignalAposPtrOutput) AdAvailOffset

func (ChannelScte35TimeSignalAposPtrOutput) Elem

func (ChannelScte35TimeSignalAposPtrOutput) ElementType

func (ChannelScte35TimeSignalAposPtrOutput) NoRegionalBlackoutFlag

func (o ChannelScte35TimeSignalAposPtrOutput) NoRegionalBlackoutFlag() pulumi.StringPtrOutput

func (ChannelScte35TimeSignalAposPtrOutput) ToChannelScte35TimeSignalAposPtrOutput

func (o ChannelScte35TimeSignalAposPtrOutput) ToChannelScte35TimeSignalAposPtrOutput() ChannelScte35TimeSignalAposPtrOutput

func (ChannelScte35TimeSignalAposPtrOutput) ToChannelScte35TimeSignalAposPtrOutputWithContext

func (o ChannelScte35TimeSignalAposPtrOutput) ToChannelScte35TimeSignalAposPtrOutputWithContext(ctx context.Context) ChannelScte35TimeSignalAposPtrOutput

func (ChannelScte35TimeSignalAposPtrOutput) ToOutput added in v0.76.0

func (ChannelScte35TimeSignalAposPtrOutput) WebDeliveryAllowedFlag

func (o ChannelScte35TimeSignalAposPtrOutput) WebDeliveryAllowedFlag() pulumi.StringPtrOutput

type ChannelSmpteTtDestinationSettings

type ChannelSmpteTtDestinationSettings struct {
}

type ChannelSmpteTtDestinationSettingsArgs

type ChannelSmpteTtDestinationSettingsArgs struct {
}

func (ChannelSmpteTtDestinationSettingsArgs) ElementType

func (ChannelSmpteTtDestinationSettingsArgs) ToChannelSmpteTtDestinationSettingsOutput

func (i ChannelSmpteTtDestinationSettingsArgs) ToChannelSmpteTtDestinationSettingsOutput() ChannelSmpteTtDestinationSettingsOutput

func (ChannelSmpteTtDestinationSettingsArgs) ToChannelSmpteTtDestinationSettingsOutputWithContext

func (i ChannelSmpteTtDestinationSettingsArgs) ToChannelSmpteTtDestinationSettingsOutputWithContext(ctx context.Context) ChannelSmpteTtDestinationSettingsOutput

func (ChannelSmpteTtDestinationSettingsArgs) ToChannelSmpteTtDestinationSettingsPtrOutput

func (i ChannelSmpteTtDestinationSettingsArgs) ToChannelSmpteTtDestinationSettingsPtrOutput() ChannelSmpteTtDestinationSettingsPtrOutput

func (ChannelSmpteTtDestinationSettingsArgs) ToChannelSmpteTtDestinationSettingsPtrOutputWithContext

func (i ChannelSmpteTtDestinationSettingsArgs) ToChannelSmpteTtDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelSmpteTtDestinationSettingsPtrOutput

func (ChannelSmpteTtDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelSmpteTtDestinationSettingsInput

type ChannelSmpteTtDestinationSettingsInput interface {
	pulumi.Input

	ToChannelSmpteTtDestinationSettingsOutput() ChannelSmpteTtDestinationSettingsOutput
	ToChannelSmpteTtDestinationSettingsOutputWithContext(context.Context) ChannelSmpteTtDestinationSettingsOutput
}

ChannelSmpteTtDestinationSettingsInput is an input type that accepts ChannelSmpteTtDestinationSettingsArgs and ChannelSmpteTtDestinationSettingsOutput values. You can construct a concrete instance of `ChannelSmpteTtDestinationSettingsInput` via:

ChannelSmpteTtDestinationSettingsArgs{...}

type ChannelSmpteTtDestinationSettingsOutput

type ChannelSmpteTtDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelSmpteTtDestinationSettingsOutput) ElementType

func (ChannelSmpteTtDestinationSettingsOutput) ToChannelSmpteTtDestinationSettingsOutput

func (o ChannelSmpteTtDestinationSettingsOutput) ToChannelSmpteTtDestinationSettingsOutput() ChannelSmpteTtDestinationSettingsOutput

func (ChannelSmpteTtDestinationSettingsOutput) ToChannelSmpteTtDestinationSettingsOutputWithContext

func (o ChannelSmpteTtDestinationSettingsOutput) ToChannelSmpteTtDestinationSettingsOutputWithContext(ctx context.Context) ChannelSmpteTtDestinationSettingsOutput

func (ChannelSmpteTtDestinationSettingsOutput) ToChannelSmpteTtDestinationSettingsPtrOutput

func (o ChannelSmpteTtDestinationSettingsOutput) ToChannelSmpteTtDestinationSettingsPtrOutput() ChannelSmpteTtDestinationSettingsPtrOutput

func (ChannelSmpteTtDestinationSettingsOutput) ToChannelSmpteTtDestinationSettingsPtrOutputWithContext

func (o ChannelSmpteTtDestinationSettingsOutput) ToChannelSmpteTtDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelSmpteTtDestinationSettingsPtrOutput

func (ChannelSmpteTtDestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelSmpteTtDestinationSettingsPtrInput

type ChannelSmpteTtDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelSmpteTtDestinationSettingsPtrOutput() ChannelSmpteTtDestinationSettingsPtrOutput
	ToChannelSmpteTtDestinationSettingsPtrOutputWithContext(context.Context) ChannelSmpteTtDestinationSettingsPtrOutput
}

ChannelSmpteTtDestinationSettingsPtrInput is an input type that accepts ChannelSmpteTtDestinationSettingsArgs, ChannelSmpteTtDestinationSettingsPtr and ChannelSmpteTtDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelSmpteTtDestinationSettingsPtrInput` via:

        ChannelSmpteTtDestinationSettingsArgs{...}

or:

        nil

type ChannelSmpteTtDestinationSettingsPtrOutput

type ChannelSmpteTtDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelSmpteTtDestinationSettingsPtrOutput) Elem

func (ChannelSmpteTtDestinationSettingsPtrOutput) ElementType

func (ChannelSmpteTtDestinationSettingsPtrOutput) ToChannelSmpteTtDestinationSettingsPtrOutput

func (o ChannelSmpteTtDestinationSettingsPtrOutput) ToChannelSmpteTtDestinationSettingsPtrOutput() ChannelSmpteTtDestinationSettingsPtrOutput

func (ChannelSmpteTtDestinationSettingsPtrOutput) ToChannelSmpteTtDestinationSettingsPtrOutputWithContext

func (o ChannelSmpteTtDestinationSettingsPtrOutput) ToChannelSmpteTtDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelSmpteTtDestinationSettingsPtrOutput

func (ChannelSmpteTtDestinationSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelStandardHlsSettings

type ChannelStandardHlsSettings struct {
	AudioRenditionSets *string              `pulumi:"audioRenditionSets"`
	M3u8Settings       *ChannelM3u8Settings `pulumi:"m3u8Settings"`
}

type ChannelStandardHlsSettingsArgs

type ChannelStandardHlsSettingsArgs struct {
	AudioRenditionSets pulumi.StringPtrInput       `pulumi:"audioRenditionSets"`
	M3u8Settings       ChannelM3u8SettingsPtrInput `pulumi:"m3u8Settings"`
}

func (ChannelStandardHlsSettingsArgs) ElementType

func (ChannelStandardHlsSettingsArgs) ToChannelStandardHlsSettingsOutput

func (i ChannelStandardHlsSettingsArgs) ToChannelStandardHlsSettingsOutput() ChannelStandardHlsSettingsOutput

func (ChannelStandardHlsSettingsArgs) ToChannelStandardHlsSettingsOutputWithContext

func (i ChannelStandardHlsSettingsArgs) ToChannelStandardHlsSettingsOutputWithContext(ctx context.Context) ChannelStandardHlsSettingsOutput

func (ChannelStandardHlsSettingsArgs) ToChannelStandardHlsSettingsPtrOutput

func (i ChannelStandardHlsSettingsArgs) ToChannelStandardHlsSettingsPtrOutput() ChannelStandardHlsSettingsPtrOutput

func (ChannelStandardHlsSettingsArgs) ToChannelStandardHlsSettingsPtrOutputWithContext

func (i ChannelStandardHlsSettingsArgs) ToChannelStandardHlsSettingsPtrOutputWithContext(ctx context.Context) ChannelStandardHlsSettingsPtrOutput

func (ChannelStandardHlsSettingsArgs) ToOutput added in v0.76.0

type ChannelStandardHlsSettingsInput

type ChannelStandardHlsSettingsInput interface {
	pulumi.Input

	ToChannelStandardHlsSettingsOutput() ChannelStandardHlsSettingsOutput
	ToChannelStandardHlsSettingsOutputWithContext(context.Context) ChannelStandardHlsSettingsOutput
}

ChannelStandardHlsSettingsInput is an input type that accepts ChannelStandardHlsSettingsArgs and ChannelStandardHlsSettingsOutput values. You can construct a concrete instance of `ChannelStandardHlsSettingsInput` via:

ChannelStandardHlsSettingsArgs{...}

type ChannelStandardHlsSettingsOutput

type ChannelStandardHlsSettingsOutput struct{ *pulumi.OutputState }

func (ChannelStandardHlsSettingsOutput) AudioRenditionSets

func (ChannelStandardHlsSettingsOutput) ElementType

func (ChannelStandardHlsSettingsOutput) M3u8Settings

func (ChannelStandardHlsSettingsOutput) ToChannelStandardHlsSettingsOutput

func (o ChannelStandardHlsSettingsOutput) ToChannelStandardHlsSettingsOutput() ChannelStandardHlsSettingsOutput

func (ChannelStandardHlsSettingsOutput) ToChannelStandardHlsSettingsOutputWithContext

func (o ChannelStandardHlsSettingsOutput) ToChannelStandardHlsSettingsOutputWithContext(ctx context.Context) ChannelStandardHlsSettingsOutput

func (ChannelStandardHlsSettingsOutput) ToChannelStandardHlsSettingsPtrOutput

func (o ChannelStandardHlsSettingsOutput) ToChannelStandardHlsSettingsPtrOutput() ChannelStandardHlsSettingsPtrOutput

func (ChannelStandardHlsSettingsOutput) ToChannelStandardHlsSettingsPtrOutputWithContext

func (o ChannelStandardHlsSettingsOutput) ToChannelStandardHlsSettingsPtrOutputWithContext(ctx context.Context) ChannelStandardHlsSettingsPtrOutput

func (ChannelStandardHlsSettingsOutput) ToOutput added in v0.76.0

type ChannelStandardHlsSettingsPtrInput

type ChannelStandardHlsSettingsPtrInput interface {
	pulumi.Input

	ToChannelStandardHlsSettingsPtrOutput() ChannelStandardHlsSettingsPtrOutput
	ToChannelStandardHlsSettingsPtrOutputWithContext(context.Context) ChannelStandardHlsSettingsPtrOutput
}

ChannelStandardHlsSettingsPtrInput is an input type that accepts ChannelStandardHlsSettingsArgs, ChannelStandardHlsSettingsPtr and ChannelStandardHlsSettingsPtrOutput values. You can construct a concrete instance of `ChannelStandardHlsSettingsPtrInput` via:

        ChannelStandardHlsSettingsArgs{...}

or:

        nil

type ChannelStandardHlsSettingsPtrOutput

type ChannelStandardHlsSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelStandardHlsSettingsPtrOutput) AudioRenditionSets

func (ChannelStandardHlsSettingsPtrOutput) Elem

func (ChannelStandardHlsSettingsPtrOutput) ElementType

func (ChannelStandardHlsSettingsPtrOutput) M3u8Settings

func (ChannelStandardHlsSettingsPtrOutput) ToChannelStandardHlsSettingsPtrOutput

func (o ChannelStandardHlsSettingsPtrOutput) ToChannelStandardHlsSettingsPtrOutput() ChannelStandardHlsSettingsPtrOutput

func (ChannelStandardHlsSettingsPtrOutput) ToChannelStandardHlsSettingsPtrOutputWithContext

func (o ChannelStandardHlsSettingsPtrOutput) ToChannelStandardHlsSettingsPtrOutputWithContext(ctx context.Context) ChannelStandardHlsSettingsPtrOutput

func (ChannelStandardHlsSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelState

type ChannelState struct {
}

func (ChannelState) ElementType

func (ChannelState) ElementType() reflect.Type

type ChannelStaticKeySettings

type ChannelStaticKeySettings struct {
	KeyProviderServer *ChannelInputLocation `pulumi:"keyProviderServer"`
	StaticKeyValue    *string               `pulumi:"staticKeyValue"`
}

type ChannelStaticKeySettingsArgs

type ChannelStaticKeySettingsArgs struct {
	KeyProviderServer ChannelInputLocationPtrInput `pulumi:"keyProviderServer"`
	StaticKeyValue    pulumi.StringPtrInput        `pulumi:"staticKeyValue"`
}

func (ChannelStaticKeySettingsArgs) ElementType

func (ChannelStaticKeySettingsArgs) ToChannelStaticKeySettingsOutput

func (i ChannelStaticKeySettingsArgs) ToChannelStaticKeySettingsOutput() ChannelStaticKeySettingsOutput

func (ChannelStaticKeySettingsArgs) ToChannelStaticKeySettingsOutputWithContext

func (i ChannelStaticKeySettingsArgs) ToChannelStaticKeySettingsOutputWithContext(ctx context.Context) ChannelStaticKeySettingsOutput

func (ChannelStaticKeySettingsArgs) ToChannelStaticKeySettingsPtrOutput

func (i ChannelStaticKeySettingsArgs) ToChannelStaticKeySettingsPtrOutput() ChannelStaticKeySettingsPtrOutput

func (ChannelStaticKeySettingsArgs) ToChannelStaticKeySettingsPtrOutputWithContext

func (i ChannelStaticKeySettingsArgs) ToChannelStaticKeySettingsPtrOutputWithContext(ctx context.Context) ChannelStaticKeySettingsPtrOutput

func (ChannelStaticKeySettingsArgs) ToOutput added in v0.76.0

type ChannelStaticKeySettingsInput

type ChannelStaticKeySettingsInput interface {
	pulumi.Input

	ToChannelStaticKeySettingsOutput() ChannelStaticKeySettingsOutput
	ToChannelStaticKeySettingsOutputWithContext(context.Context) ChannelStaticKeySettingsOutput
}

ChannelStaticKeySettingsInput is an input type that accepts ChannelStaticKeySettingsArgs and ChannelStaticKeySettingsOutput values. You can construct a concrete instance of `ChannelStaticKeySettingsInput` via:

ChannelStaticKeySettingsArgs{...}

type ChannelStaticKeySettingsOutput

type ChannelStaticKeySettingsOutput struct{ *pulumi.OutputState }

func (ChannelStaticKeySettingsOutput) ElementType

func (ChannelStaticKeySettingsOutput) KeyProviderServer

func (ChannelStaticKeySettingsOutput) StaticKeyValue

func (ChannelStaticKeySettingsOutput) ToChannelStaticKeySettingsOutput

func (o ChannelStaticKeySettingsOutput) ToChannelStaticKeySettingsOutput() ChannelStaticKeySettingsOutput

func (ChannelStaticKeySettingsOutput) ToChannelStaticKeySettingsOutputWithContext

func (o ChannelStaticKeySettingsOutput) ToChannelStaticKeySettingsOutputWithContext(ctx context.Context) ChannelStaticKeySettingsOutput

func (ChannelStaticKeySettingsOutput) ToChannelStaticKeySettingsPtrOutput

func (o ChannelStaticKeySettingsOutput) ToChannelStaticKeySettingsPtrOutput() ChannelStaticKeySettingsPtrOutput

func (ChannelStaticKeySettingsOutput) ToChannelStaticKeySettingsPtrOutputWithContext

func (o ChannelStaticKeySettingsOutput) ToChannelStaticKeySettingsPtrOutputWithContext(ctx context.Context) ChannelStaticKeySettingsPtrOutput

func (ChannelStaticKeySettingsOutput) ToOutput added in v0.76.0

type ChannelStaticKeySettingsPtrInput

type ChannelStaticKeySettingsPtrInput interface {
	pulumi.Input

	ToChannelStaticKeySettingsPtrOutput() ChannelStaticKeySettingsPtrOutput
	ToChannelStaticKeySettingsPtrOutputWithContext(context.Context) ChannelStaticKeySettingsPtrOutput
}

ChannelStaticKeySettingsPtrInput is an input type that accepts ChannelStaticKeySettingsArgs, ChannelStaticKeySettingsPtr and ChannelStaticKeySettingsPtrOutput values. You can construct a concrete instance of `ChannelStaticKeySettingsPtrInput` via:

        ChannelStaticKeySettingsArgs{...}

or:

        nil

type ChannelStaticKeySettingsPtrOutput

type ChannelStaticKeySettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelStaticKeySettingsPtrOutput) Elem

func (ChannelStaticKeySettingsPtrOutput) ElementType

func (ChannelStaticKeySettingsPtrOutput) KeyProviderServer

func (ChannelStaticKeySettingsPtrOutput) StaticKeyValue

func (ChannelStaticKeySettingsPtrOutput) ToChannelStaticKeySettingsPtrOutput

func (o ChannelStaticKeySettingsPtrOutput) ToChannelStaticKeySettingsPtrOutput() ChannelStaticKeySettingsPtrOutput

func (ChannelStaticKeySettingsPtrOutput) ToChannelStaticKeySettingsPtrOutputWithContext

func (o ChannelStaticKeySettingsPtrOutput) ToChannelStaticKeySettingsPtrOutputWithContext(ctx context.Context) ChannelStaticKeySettingsPtrOutput

func (ChannelStaticKeySettingsPtrOutput) ToOutput added in v0.76.0

type ChannelTeletextDestinationSettings

type ChannelTeletextDestinationSettings struct {
}

type ChannelTeletextDestinationSettingsArgs

type ChannelTeletextDestinationSettingsArgs struct {
}

func (ChannelTeletextDestinationSettingsArgs) ElementType

func (ChannelTeletextDestinationSettingsArgs) ToChannelTeletextDestinationSettingsOutput

func (i ChannelTeletextDestinationSettingsArgs) ToChannelTeletextDestinationSettingsOutput() ChannelTeletextDestinationSettingsOutput

func (ChannelTeletextDestinationSettingsArgs) ToChannelTeletextDestinationSettingsOutputWithContext

func (i ChannelTeletextDestinationSettingsArgs) ToChannelTeletextDestinationSettingsOutputWithContext(ctx context.Context) ChannelTeletextDestinationSettingsOutput

func (ChannelTeletextDestinationSettingsArgs) ToChannelTeletextDestinationSettingsPtrOutput

func (i ChannelTeletextDestinationSettingsArgs) ToChannelTeletextDestinationSettingsPtrOutput() ChannelTeletextDestinationSettingsPtrOutput

func (ChannelTeletextDestinationSettingsArgs) ToChannelTeletextDestinationSettingsPtrOutputWithContext

func (i ChannelTeletextDestinationSettingsArgs) ToChannelTeletextDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelTeletextDestinationSettingsPtrOutput

func (ChannelTeletextDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelTeletextDestinationSettingsInput

type ChannelTeletextDestinationSettingsInput interface {
	pulumi.Input

	ToChannelTeletextDestinationSettingsOutput() ChannelTeletextDestinationSettingsOutput
	ToChannelTeletextDestinationSettingsOutputWithContext(context.Context) ChannelTeletextDestinationSettingsOutput
}

ChannelTeletextDestinationSettingsInput is an input type that accepts ChannelTeletextDestinationSettingsArgs and ChannelTeletextDestinationSettingsOutput values. You can construct a concrete instance of `ChannelTeletextDestinationSettingsInput` via:

ChannelTeletextDestinationSettingsArgs{...}

type ChannelTeletextDestinationSettingsOutput

type ChannelTeletextDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelTeletextDestinationSettingsOutput) ElementType

func (ChannelTeletextDestinationSettingsOutput) ToChannelTeletextDestinationSettingsOutput

func (o ChannelTeletextDestinationSettingsOutput) ToChannelTeletextDestinationSettingsOutput() ChannelTeletextDestinationSettingsOutput

func (ChannelTeletextDestinationSettingsOutput) ToChannelTeletextDestinationSettingsOutputWithContext

func (o ChannelTeletextDestinationSettingsOutput) ToChannelTeletextDestinationSettingsOutputWithContext(ctx context.Context) ChannelTeletextDestinationSettingsOutput

func (ChannelTeletextDestinationSettingsOutput) ToChannelTeletextDestinationSettingsPtrOutput

func (o ChannelTeletextDestinationSettingsOutput) ToChannelTeletextDestinationSettingsPtrOutput() ChannelTeletextDestinationSettingsPtrOutput

func (ChannelTeletextDestinationSettingsOutput) ToChannelTeletextDestinationSettingsPtrOutputWithContext

func (o ChannelTeletextDestinationSettingsOutput) ToChannelTeletextDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelTeletextDestinationSettingsPtrOutput

func (ChannelTeletextDestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelTeletextDestinationSettingsPtrInput

type ChannelTeletextDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelTeletextDestinationSettingsPtrOutput() ChannelTeletextDestinationSettingsPtrOutput
	ToChannelTeletextDestinationSettingsPtrOutputWithContext(context.Context) ChannelTeletextDestinationSettingsPtrOutput
}

ChannelTeletextDestinationSettingsPtrInput is an input type that accepts ChannelTeletextDestinationSettingsArgs, ChannelTeletextDestinationSettingsPtr and ChannelTeletextDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelTeletextDestinationSettingsPtrInput` via:

        ChannelTeletextDestinationSettingsArgs{...}

or:

        nil

type ChannelTeletextDestinationSettingsPtrOutput

type ChannelTeletextDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelTeletextDestinationSettingsPtrOutput) Elem

func (ChannelTeletextDestinationSettingsPtrOutput) ElementType

func (ChannelTeletextDestinationSettingsPtrOutput) ToChannelTeletextDestinationSettingsPtrOutput

func (o ChannelTeletextDestinationSettingsPtrOutput) ToChannelTeletextDestinationSettingsPtrOutput() ChannelTeletextDestinationSettingsPtrOutput

func (ChannelTeletextDestinationSettingsPtrOutput) ToChannelTeletextDestinationSettingsPtrOutputWithContext

func (o ChannelTeletextDestinationSettingsPtrOutput) ToChannelTeletextDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelTeletextDestinationSettingsPtrOutput

func (ChannelTeletextDestinationSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelTeletextSourceSettings

type ChannelTeletextSourceSettings struct {
	OutputRectangle *ChannelCaptionRectangle `pulumi:"outputRectangle"`
	PageNumber      *string                  `pulumi:"pageNumber"`
}

type ChannelTeletextSourceSettingsArgs

type ChannelTeletextSourceSettingsArgs struct {
	OutputRectangle ChannelCaptionRectanglePtrInput `pulumi:"outputRectangle"`
	PageNumber      pulumi.StringPtrInput           `pulumi:"pageNumber"`
}

func (ChannelTeletextSourceSettingsArgs) ElementType

func (ChannelTeletextSourceSettingsArgs) ToChannelTeletextSourceSettingsOutput

func (i ChannelTeletextSourceSettingsArgs) ToChannelTeletextSourceSettingsOutput() ChannelTeletextSourceSettingsOutput

func (ChannelTeletextSourceSettingsArgs) ToChannelTeletextSourceSettingsOutputWithContext

func (i ChannelTeletextSourceSettingsArgs) ToChannelTeletextSourceSettingsOutputWithContext(ctx context.Context) ChannelTeletextSourceSettingsOutput

func (ChannelTeletextSourceSettingsArgs) ToChannelTeletextSourceSettingsPtrOutput

func (i ChannelTeletextSourceSettingsArgs) ToChannelTeletextSourceSettingsPtrOutput() ChannelTeletextSourceSettingsPtrOutput

func (ChannelTeletextSourceSettingsArgs) ToChannelTeletextSourceSettingsPtrOutputWithContext

func (i ChannelTeletextSourceSettingsArgs) ToChannelTeletextSourceSettingsPtrOutputWithContext(ctx context.Context) ChannelTeletextSourceSettingsPtrOutput

func (ChannelTeletextSourceSettingsArgs) ToOutput added in v0.76.0

type ChannelTeletextSourceSettingsInput

type ChannelTeletextSourceSettingsInput interface {
	pulumi.Input

	ToChannelTeletextSourceSettingsOutput() ChannelTeletextSourceSettingsOutput
	ToChannelTeletextSourceSettingsOutputWithContext(context.Context) ChannelTeletextSourceSettingsOutput
}

ChannelTeletextSourceSettingsInput is an input type that accepts ChannelTeletextSourceSettingsArgs and ChannelTeletextSourceSettingsOutput values. You can construct a concrete instance of `ChannelTeletextSourceSettingsInput` via:

ChannelTeletextSourceSettingsArgs{...}

type ChannelTeletextSourceSettingsOutput

type ChannelTeletextSourceSettingsOutput struct{ *pulumi.OutputState }

func (ChannelTeletextSourceSettingsOutput) ElementType

func (ChannelTeletextSourceSettingsOutput) OutputRectangle

func (ChannelTeletextSourceSettingsOutput) PageNumber

func (ChannelTeletextSourceSettingsOutput) ToChannelTeletextSourceSettingsOutput

func (o ChannelTeletextSourceSettingsOutput) ToChannelTeletextSourceSettingsOutput() ChannelTeletextSourceSettingsOutput

func (ChannelTeletextSourceSettingsOutput) ToChannelTeletextSourceSettingsOutputWithContext

func (o ChannelTeletextSourceSettingsOutput) ToChannelTeletextSourceSettingsOutputWithContext(ctx context.Context) ChannelTeletextSourceSettingsOutput

func (ChannelTeletextSourceSettingsOutput) ToChannelTeletextSourceSettingsPtrOutput

func (o ChannelTeletextSourceSettingsOutput) ToChannelTeletextSourceSettingsPtrOutput() ChannelTeletextSourceSettingsPtrOutput

func (ChannelTeletextSourceSettingsOutput) ToChannelTeletextSourceSettingsPtrOutputWithContext

func (o ChannelTeletextSourceSettingsOutput) ToChannelTeletextSourceSettingsPtrOutputWithContext(ctx context.Context) ChannelTeletextSourceSettingsPtrOutput

func (ChannelTeletextSourceSettingsOutput) ToOutput added in v0.76.0

type ChannelTeletextSourceSettingsPtrInput

type ChannelTeletextSourceSettingsPtrInput interface {
	pulumi.Input

	ToChannelTeletextSourceSettingsPtrOutput() ChannelTeletextSourceSettingsPtrOutput
	ToChannelTeletextSourceSettingsPtrOutputWithContext(context.Context) ChannelTeletextSourceSettingsPtrOutput
}

ChannelTeletextSourceSettingsPtrInput is an input type that accepts ChannelTeletextSourceSettingsArgs, ChannelTeletextSourceSettingsPtr and ChannelTeletextSourceSettingsPtrOutput values. You can construct a concrete instance of `ChannelTeletextSourceSettingsPtrInput` via:

        ChannelTeletextSourceSettingsArgs{...}

or:

        nil

type ChannelTeletextSourceSettingsPtrOutput

type ChannelTeletextSourceSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelTeletextSourceSettingsPtrOutput) Elem

func (ChannelTeletextSourceSettingsPtrOutput) ElementType

func (ChannelTeletextSourceSettingsPtrOutput) OutputRectangle

func (ChannelTeletextSourceSettingsPtrOutput) PageNumber

func (ChannelTeletextSourceSettingsPtrOutput) ToChannelTeletextSourceSettingsPtrOutput

func (o ChannelTeletextSourceSettingsPtrOutput) ToChannelTeletextSourceSettingsPtrOutput() ChannelTeletextSourceSettingsPtrOutput

func (ChannelTeletextSourceSettingsPtrOutput) ToChannelTeletextSourceSettingsPtrOutputWithContext

func (o ChannelTeletextSourceSettingsPtrOutput) ToChannelTeletextSourceSettingsPtrOutputWithContext(ctx context.Context) ChannelTeletextSourceSettingsPtrOutput

func (ChannelTeletextSourceSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelTemporalFilterSettings

type ChannelTemporalFilterSettings struct {
	PostFilterSharpening *string `pulumi:"postFilterSharpening"`
	Strength             *string `pulumi:"strength"`
}

type ChannelTemporalFilterSettingsArgs

type ChannelTemporalFilterSettingsArgs struct {
	PostFilterSharpening pulumi.StringPtrInput `pulumi:"postFilterSharpening"`
	Strength             pulumi.StringPtrInput `pulumi:"strength"`
}

func (ChannelTemporalFilterSettingsArgs) ElementType

func (ChannelTemporalFilterSettingsArgs) ToChannelTemporalFilterSettingsOutput

func (i ChannelTemporalFilterSettingsArgs) ToChannelTemporalFilterSettingsOutput() ChannelTemporalFilterSettingsOutput

func (ChannelTemporalFilterSettingsArgs) ToChannelTemporalFilterSettingsOutputWithContext

func (i ChannelTemporalFilterSettingsArgs) ToChannelTemporalFilterSettingsOutputWithContext(ctx context.Context) ChannelTemporalFilterSettingsOutput

func (ChannelTemporalFilterSettingsArgs) ToChannelTemporalFilterSettingsPtrOutput

func (i ChannelTemporalFilterSettingsArgs) ToChannelTemporalFilterSettingsPtrOutput() ChannelTemporalFilterSettingsPtrOutput

func (ChannelTemporalFilterSettingsArgs) ToChannelTemporalFilterSettingsPtrOutputWithContext

func (i ChannelTemporalFilterSettingsArgs) ToChannelTemporalFilterSettingsPtrOutputWithContext(ctx context.Context) ChannelTemporalFilterSettingsPtrOutput

func (ChannelTemporalFilterSettingsArgs) ToOutput added in v0.76.0

type ChannelTemporalFilterSettingsInput

type ChannelTemporalFilterSettingsInput interface {
	pulumi.Input

	ToChannelTemporalFilterSettingsOutput() ChannelTemporalFilterSettingsOutput
	ToChannelTemporalFilterSettingsOutputWithContext(context.Context) ChannelTemporalFilterSettingsOutput
}

ChannelTemporalFilterSettingsInput is an input type that accepts ChannelTemporalFilterSettingsArgs and ChannelTemporalFilterSettingsOutput values. You can construct a concrete instance of `ChannelTemporalFilterSettingsInput` via:

ChannelTemporalFilterSettingsArgs{...}

type ChannelTemporalFilterSettingsOutput

type ChannelTemporalFilterSettingsOutput struct{ *pulumi.OutputState }

func (ChannelTemporalFilterSettingsOutput) ElementType

func (ChannelTemporalFilterSettingsOutput) PostFilterSharpening

func (ChannelTemporalFilterSettingsOutput) Strength

func (ChannelTemporalFilterSettingsOutput) ToChannelTemporalFilterSettingsOutput

func (o ChannelTemporalFilterSettingsOutput) ToChannelTemporalFilterSettingsOutput() ChannelTemporalFilterSettingsOutput

func (ChannelTemporalFilterSettingsOutput) ToChannelTemporalFilterSettingsOutputWithContext

func (o ChannelTemporalFilterSettingsOutput) ToChannelTemporalFilterSettingsOutputWithContext(ctx context.Context) ChannelTemporalFilterSettingsOutput

func (ChannelTemporalFilterSettingsOutput) ToChannelTemporalFilterSettingsPtrOutput

func (o ChannelTemporalFilterSettingsOutput) ToChannelTemporalFilterSettingsPtrOutput() ChannelTemporalFilterSettingsPtrOutput

func (ChannelTemporalFilterSettingsOutput) ToChannelTemporalFilterSettingsPtrOutputWithContext

func (o ChannelTemporalFilterSettingsOutput) ToChannelTemporalFilterSettingsPtrOutputWithContext(ctx context.Context) ChannelTemporalFilterSettingsPtrOutput

func (ChannelTemporalFilterSettingsOutput) ToOutput added in v0.76.0

type ChannelTemporalFilterSettingsPtrInput

type ChannelTemporalFilterSettingsPtrInput interface {
	pulumi.Input

	ToChannelTemporalFilterSettingsPtrOutput() ChannelTemporalFilterSettingsPtrOutput
	ToChannelTemporalFilterSettingsPtrOutputWithContext(context.Context) ChannelTemporalFilterSettingsPtrOutput
}

ChannelTemporalFilterSettingsPtrInput is an input type that accepts ChannelTemporalFilterSettingsArgs, ChannelTemporalFilterSettingsPtr and ChannelTemporalFilterSettingsPtrOutput values. You can construct a concrete instance of `ChannelTemporalFilterSettingsPtrInput` via:

        ChannelTemporalFilterSettingsArgs{...}

or:

        nil

type ChannelTemporalFilterSettingsPtrOutput

type ChannelTemporalFilterSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelTemporalFilterSettingsPtrOutput) Elem

func (ChannelTemporalFilterSettingsPtrOutput) ElementType

func (ChannelTemporalFilterSettingsPtrOutput) PostFilterSharpening

func (ChannelTemporalFilterSettingsPtrOutput) Strength

func (ChannelTemporalFilterSettingsPtrOutput) ToChannelTemporalFilterSettingsPtrOutput

func (o ChannelTemporalFilterSettingsPtrOutput) ToChannelTemporalFilterSettingsPtrOutput() ChannelTemporalFilterSettingsPtrOutput

func (ChannelTemporalFilterSettingsPtrOutput) ToChannelTemporalFilterSettingsPtrOutputWithContext

func (o ChannelTemporalFilterSettingsPtrOutput) ToChannelTemporalFilterSettingsPtrOutputWithContext(ctx context.Context) ChannelTemporalFilterSettingsPtrOutput

func (ChannelTemporalFilterSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelThumbnailConfiguration added in v0.76.0

type ChannelThumbnailConfiguration struct {
	State *string `pulumi:"state"`
}

type ChannelThumbnailConfigurationArgs added in v0.76.0

type ChannelThumbnailConfigurationArgs struct {
	State pulumi.StringPtrInput `pulumi:"state"`
}

func (ChannelThumbnailConfigurationArgs) ElementType added in v0.76.0

func (ChannelThumbnailConfigurationArgs) ToChannelThumbnailConfigurationOutput added in v0.76.0

func (i ChannelThumbnailConfigurationArgs) ToChannelThumbnailConfigurationOutput() ChannelThumbnailConfigurationOutput

func (ChannelThumbnailConfigurationArgs) ToChannelThumbnailConfigurationOutputWithContext added in v0.76.0

func (i ChannelThumbnailConfigurationArgs) ToChannelThumbnailConfigurationOutputWithContext(ctx context.Context) ChannelThumbnailConfigurationOutput

func (ChannelThumbnailConfigurationArgs) ToChannelThumbnailConfigurationPtrOutput added in v0.76.0

func (i ChannelThumbnailConfigurationArgs) ToChannelThumbnailConfigurationPtrOutput() ChannelThumbnailConfigurationPtrOutput

func (ChannelThumbnailConfigurationArgs) ToChannelThumbnailConfigurationPtrOutputWithContext added in v0.76.0

func (i ChannelThumbnailConfigurationArgs) ToChannelThumbnailConfigurationPtrOutputWithContext(ctx context.Context) ChannelThumbnailConfigurationPtrOutput

func (ChannelThumbnailConfigurationArgs) ToOutput added in v0.76.0

type ChannelThumbnailConfigurationInput added in v0.76.0

type ChannelThumbnailConfigurationInput interface {
	pulumi.Input

	ToChannelThumbnailConfigurationOutput() ChannelThumbnailConfigurationOutput
	ToChannelThumbnailConfigurationOutputWithContext(context.Context) ChannelThumbnailConfigurationOutput
}

ChannelThumbnailConfigurationInput is an input type that accepts ChannelThumbnailConfigurationArgs and ChannelThumbnailConfigurationOutput values. You can construct a concrete instance of `ChannelThumbnailConfigurationInput` via:

ChannelThumbnailConfigurationArgs{...}

type ChannelThumbnailConfigurationOutput added in v0.76.0

type ChannelThumbnailConfigurationOutput struct{ *pulumi.OutputState }

func (ChannelThumbnailConfigurationOutput) ElementType added in v0.76.0

func (ChannelThumbnailConfigurationOutput) State added in v0.76.0

func (ChannelThumbnailConfigurationOutput) ToChannelThumbnailConfigurationOutput added in v0.76.0

func (o ChannelThumbnailConfigurationOutput) ToChannelThumbnailConfigurationOutput() ChannelThumbnailConfigurationOutput

func (ChannelThumbnailConfigurationOutput) ToChannelThumbnailConfigurationOutputWithContext added in v0.76.0

func (o ChannelThumbnailConfigurationOutput) ToChannelThumbnailConfigurationOutputWithContext(ctx context.Context) ChannelThumbnailConfigurationOutput

func (ChannelThumbnailConfigurationOutput) ToChannelThumbnailConfigurationPtrOutput added in v0.76.0

func (o ChannelThumbnailConfigurationOutput) ToChannelThumbnailConfigurationPtrOutput() ChannelThumbnailConfigurationPtrOutput

func (ChannelThumbnailConfigurationOutput) ToChannelThumbnailConfigurationPtrOutputWithContext added in v0.76.0

func (o ChannelThumbnailConfigurationOutput) ToChannelThumbnailConfigurationPtrOutputWithContext(ctx context.Context) ChannelThumbnailConfigurationPtrOutput

func (ChannelThumbnailConfigurationOutput) ToOutput added in v0.76.0

type ChannelThumbnailConfigurationPtrInput added in v0.76.0

type ChannelThumbnailConfigurationPtrInput interface {
	pulumi.Input

	ToChannelThumbnailConfigurationPtrOutput() ChannelThumbnailConfigurationPtrOutput
	ToChannelThumbnailConfigurationPtrOutputWithContext(context.Context) ChannelThumbnailConfigurationPtrOutput
}

ChannelThumbnailConfigurationPtrInput is an input type that accepts ChannelThumbnailConfigurationArgs, ChannelThumbnailConfigurationPtr and ChannelThumbnailConfigurationPtrOutput values. You can construct a concrete instance of `ChannelThumbnailConfigurationPtrInput` via:

        ChannelThumbnailConfigurationArgs{...}

or:

        nil

type ChannelThumbnailConfigurationPtrOutput added in v0.76.0

type ChannelThumbnailConfigurationPtrOutput struct{ *pulumi.OutputState }

func (ChannelThumbnailConfigurationPtrOutput) Elem added in v0.76.0

func (ChannelThumbnailConfigurationPtrOutput) ElementType added in v0.76.0

func (ChannelThumbnailConfigurationPtrOutput) State added in v0.76.0

func (ChannelThumbnailConfigurationPtrOutput) ToChannelThumbnailConfigurationPtrOutput added in v0.76.0

func (o ChannelThumbnailConfigurationPtrOutput) ToChannelThumbnailConfigurationPtrOutput() ChannelThumbnailConfigurationPtrOutput

func (ChannelThumbnailConfigurationPtrOutput) ToChannelThumbnailConfigurationPtrOutputWithContext added in v0.76.0

func (o ChannelThumbnailConfigurationPtrOutput) ToChannelThumbnailConfigurationPtrOutputWithContext(ctx context.Context) ChannelThumbnailConfigurationPtrOutput

func (ChannelThumbnailConfigurationPtrOutput) ToOutput added in v0.76.0

type ChannelTimecodeBurninSettings added in v0.59.0

type ChannelTimecodeBurninSettings struct {
	FontSize *string `pulumi:"fontSize"`
	Position *string `pulumi:"position"`
	Prefix   *string `pulumi:"prefix"`
}

type ChannelTimecodeBurninSettingsArgs added in v0.59.0

type ChannelTimecodeBurninSettingsArgs struct {
	FontSize pulumi.StringPtrInput `pulumi:"fontSize"`
	Position pulumi.StringPtrInput `pulumi:"position"`
	Prefix   pulumi.StringPtrInput `pulumi:"prefix"`
}

func (ChannelTimecodeBurninSettingsArgs) ElementType added in v0.59.0

func (ChannelTimecodeBurninSettingsArgs) ToChannelTimecodeBurninSettingsOutput added in v0.59.0

func (i ChannelTimecodeBurninSettingsArgs) ToChannelTimecodeBurninSettingsOutput() ChannelTimecodeBurninSettingsOutput

func (ChannelTimecodeBurninSettingsArgs) ToChannelTimecodeBurninSettingsOutputWithContext added in v0.59.0

func (i ChannelTimecodeBurninSettingsArgs) ToChannelTimecodeBurninSettingsOutputWithContext(ctx context.Context) ChannelTimecodeBurninSettingsOutput

func (ChannelTimecodeBurninSettingsArgs) ToChannelTimecodeBurninSettingsPtrOutput added in v0.59.0

func (i ChannelTimecodeBurninSettingsArgs) ToChannelTimecodeBurninSettingsPtrOutput() ChannelTimecodeBurninSettingsPtrOutput

func (ChannelTimecodeBurninSettingsArgs) ToChannelTimecodeBurninSettingsPtrOutputWithContext added in v0.59.0

func (i ChannelTimecodeBurninSettingsArgs) ToChannelTimecodeBurninSettingsPtrOutputWithContext(ctx context.Context) ChannelTimecodeBurninSettingsPtrOutput

func (ChannelTimecodeBurninSettingsArgs) ToOutput added in v0.76.0

type ChannelTimecodeBurninSettingsInput added in v0.59.0

type ChannelTimecodeBurninSettingsInput interface {
	pulumi.Input

	ToChannelTimecodeBurninSettingsOutput() ChannelTimecodeBurninSettingsOutput
	ToChannelTimecodeBurninSettingsOutputWithContext(context.Context) ChannelTimecodeBurninSettingsOutput
}

ChannelTimecodeBurninSettingsInput is an input type that accepts ChannelTimecodeBurninSettingsArgs and ChannelTimecodeBurninSettingsOutput values. You can construct a concrete instance of `ChannelTimecodeBurninSettingsInput` via:

ChannelTimecodeBurninSettingsArgs{...}

type ChannelTimecodeBurninSettingsOutput added in v0.59.0

type ChannelTimecodeBurninSettingsOutput struct{ *pulumi.OutputState }

func (ChannelTimecodeBurninSettingsOutput) ElementType added in v0.59.0

func (ChannelTimecodeBurninSettingsOutput) FontSize added in v0.59.0

func (ChannelTimecodeBurninSettingsOutput) Position added in v0.59.0

func (ChannelTimecodeBurninSettingsOutput) Prefix added in v0.59.0

func (ChannelTimecodeBurninSettingsOutput) ToChannelTimecodeBurninSettingsOutput added in v0.59.0

func (o ChannelTimecodeBurninSettingsOutput) ToChannelTimecodeBurninSettingsOutput() ChannelTimecodeBurninSettingsOutput

func (ChannelTimecodeBurninSettingsOutput) ToChannelTimecodeBurninSettingsOutputWithContext added in v0.59.0

func (o ChannelTimecodeBurninSettingsOutput) ToChannelTimecodeBurninSettingsOutputWithContext(ctx context.Context) ChannelTimecodeBurninSettingsOutput

func (ChannelTimecodeBurninSettingsOutput) ToChannelTimecodeBurninSettingsPtrOutput added in v0.59.0

func (o ChannelTimecodeBurninSettingsOutput) ToChannelTimecodeBurninSettingsPtrOutput() ChannelTimecodeBurninSettingsPtrOutput

func (ChannelTimecodeBurninSettingsOutput) ToChannelTimecodeBurninSettingsPtrOutputWithContext added in v0.59.0

func (o ChannelTimecodeBurninSettingsOutput) ToChannelTimecodeBurninSettingsPtrOutputWithContext(ctx context.Context) ChannelTimecodeBurninSettingsPtrOutput

func (ChannelTimecodeBurninSettingsOutput) ToOutput added in v0.76.0

type ChannelTimecodeBurninSettingsPtrInput added in v0.59.0

type ChannelTimecodeBurninSettingsPtrInput interface {
	pulumi.Input

	ToChannelTimecodeBurninSettingsPtrOutput() ChannelTimecodeBurninSettingsPtrOutput
	ToChannelTimecodeBurninSettingsPtrOutputWithContext(context.Context) ChannelTimecodeBurninSettingsPtrOutput
}

ChannelTimecodeBurninSettingsPtrInput is an input type that accepts ChannelTimecodeBurninSettingsArgs, ChannelTimecodeBurninSettingsPtr and ChannelTimecodeBurninSettingsPtrOutput values. You can construct a concrete instance of `ChannelTimecodeBurninSettingsPtrInput` via:

        ChannelTimecodeBurninSettingsArgs{...}

or:

        nil

type ChannelTimecodeBurninSettingsPtrOutput added in v0.59.0

type ChannelTimecodeBurninSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelTimecodeBurninSettingsPtrOutput) Elem added in v0.59.0

func (ChannelTimecodeBurninSettingsPtrOutput) ElementType added in v0.59.0

func (ChannelTimecodeBurninSettingsPtrOutput) FontSize added in v0.59.0

func (ChannelTimecodeBurninSettingsPtrOutput) Position added in v0.59.0

func (ChannelTimecodeBurninSettingsPtrOutput) Prefix added in v0.59.0

func (ChannelTimecodeBurninSettingsPtrOutput) ToChannelTimecodeBurninSettingsPtrOutput added in v0.59.0

func (o ChannelTimecodeBurninSettingsPtrOutput) ToChannelTimecodeBurninSettingsPtrOutput() ChannelTimecodeBurninSettingsPtrOutput

func (ChannelTimecodeBurninSettingsPtrOutput) ToChannelTimecodeBurninSettingsPtrOutputWithContext added in v0.59.0

func (o ChannelTimecodeBurninSettingsPtrOutput) ToChannelTimecodeBurninSettingsPtrOutputWithContext(ctx context.Context) ChannelTimecodeBurninSettingsPtrOutput

func (ChannelTimecodeBurninSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelTimecodeConfig

type ChannelTimecodeConfig struct {
	Source        *string `pulumi:"source"`
	SyncThreshold *int    `pulumi:"syncThreshold"`
}

type ChannelTimecodeConfigArgs

type ChannelTimecodeConfigArgs struct {
	Source        pulumi.StringPtrInput `pulumi:"source"`
	SyncThreshold pulumi.IntPtrInput    `pulumi:"syncThreshold"`
}

func (ChannelTimecodeConfigArgs) ElementType

func (ChannelTimecodeConfigArgs) ElementType() reflect.Type

func (ChannelTimecodeConfigArgs) ToChannelTimecodeConfigOutput

func (i ChannelTimecodeConfigArgs) ToChannelTimecodeConfigOutput() ChannelTimecodeConfigOutput

func (ChannelTimecodeConfigArgs) ToChannelTimecodeConfigOutputWithContext

func (i ChannelTimecodeConfigArgs) ToChannelTimecodeConfigOutputWithContext(ctx context.Context) ChannelTimecodeConfigOutput

func (ChannelTimecodeConfigArgs) ToChannelTimecodeConfigPtrOutput

func (i ChannelTimecodeConfigArgs) ToChannelTimecodeConfigPtrOutput() ChannelTimecodeConfigPtrOutput

func (ChannelTimecodeConfigArgs) ToChannelTimecodeConfigPtrOutputWithContext

func (i ChannelTimecodeConfigArgs) ToChannelTimecodeConfigPtrOutputWithContext(ctx context.Context) ChannelTimecodeConfigPtrOutput

func (ChannelTimecodeConfigArgs) ToOutput added in v0.76.0

type ChannelTimecodeConfigInput

type ChannelTimecodeConfigInput interface {
	pulumi.Input

	ToChannelTimecodeConfigOutput() ChannelTimecodeConfigOutput
	ToChannelTimecodeConfigOutputWithContext(context.Context) ChannelTimecodeConfigOutput
}

ChannelTimecodeConfigInput is an input type that accepts ChannelTimecodeConfigArgs and ChannelTimecodeConfigOutput values. You can construct a concrete instance of `ChannelTimecodeConfigInput` via:

ChannelTimecodeConfigArgs{...}

type ChannelTimecodeConfigOutput

type ChannelTimecodeConfigOutput struct{ *pulumi.OutputState }

func (ChannelTimecodeConfigOutput) ElementType

func (ChannelTimecodeConfigOutput) Source

func (ChannelTimecodeConfigOutput) SyncThreshold

func (ChannelTimecodeConfigOutput) ToChannelTimecodeConfigOutput

func (o ChannelTimecodeConfigOutput) ToChannelTimecodeConfigOutput() ChannelTimecodeConfigOutput

func (ChannelTimecodeConfigOutput) ToChannelTimecodeConfigOutputWithContext

func (o ChannelTimecodeConfigOutput) ToChannelTimecodeConfigOutputWithContext(ctx context.Context) ChannelTimecodeConfigOutput

func (ChannelTimecodeConfigOutput) ToChannelTimecodeConfigPtrOutput

func (o ChannelTimecodeConfigOutput) ToChannelTimecodeConfigPtrOutput() ChannelTimecodeConfigPtrOutput

func (ChannelTimecodeConfigOutput) ToChannelTimecodeConfigPtrOutputWithContext

func (o ChannelTimecodeConfigOutput) ToChannelTimecodeConfigPtrOutputWithContext(ctx context.Context) ChannelTimecodeConfigPtrOutput

func (ChannelTimecodeConfigOutput) ToOutput added in v0.76.0

type ChannelTimecodeConfigPtrInput

type ChannelTimecodeConfigPtrInput interface {
	pulumi.Input

	ToChannelTimecodeConfigPtrOutput() ChannelTimecodeConfigPtrOutput
	ToChannelTimecodeConfigPtrOutputWithContext(context.Context) ChannelTimecodeConfigPtrOutput
}

ChannelTimecodeConfigPtrInput is an input type that accepts ChannelTimecodeConfigArgs, ChannelTimecodeConfigPtr and ChannelTimecodeConfigPtrOutput values. You can construct a concrete instance of `ChannelTimecodeConfigPtrInput` via:

        ChannelTimecodeConfigArgs{...}

or:

        nil

type ChannelTimecodeConfigPtrOutput

type ChannelTimecodeConfigPtrOutput struct{ *pulumi.OutputState }

func (ChannelTimecodeConfigPtrOutput) Elem

func (ChannelTimecodeConfigPtrOutput) ElementType

func (ChannelTimecodeConfigPtrOutput) Source

func (ChannelTimecodeConfigPtrOutput) SyncThreshold

func (ChannelTimecodeConfigPtrOutput) ToChannelTimecodeConfigPtrOutput

func (o ChannelTimecodeConfigPtrOutput) ToChannelTimecodeConfigPtrOutput() ChannelTimecodeConfigPtrOutput

func (ChannelTimecodeConfigPtrOutput) ToChannelTimecodeConfigPtrOutputWithContext

func (o ChannelTimecodeConfigPtrOutput) ToChannelTimecodeConfigPtrOutputWithContext(ctx context.Context) ChannelTimecodeConfigPtrOutput

func (ChannelTimecodeConfigPtrOutput) ToOutput added in v0.76.0

type ChannelTtmlDestinationSettings

type ChannelTtmlDestinationSettings struct {
	StyleControl *string `pulumi:"styleControl"`
}

type ChannelTtmlDestinationSettingsArgs

type ChannelTtmlDestinationSettingsArgs struct {
	StyleControl pulumi.StringPtrInput `pulumi:"styleControl"`
}

func (ChannelTtmlDestinationSettingsArgs) ElementType

func (ChannelTtmlDestinationSettingsArgs) ToChannelTtmlDestinationSettingsOutput

func (i ChannelTtmlDestinationSettingsArgs) ToChannelTtmlDestinationSettingsOutput() ChannelTtmlDestinationSettingsOutput

func (ChannelTtmlDestinationSettingsArgs) ToChannelTtmlDestinationSettingsOutputWithContext

func (i ChannelTtmlDestinationSettingsArgs) ToChannelTtmlDestinationSettingsOutputWithContext(ctx context.Context) ChannelTtmlDestinationSettingsOutput

func (ChannelTtmlDestinationSettingsArgs) ToChannelTtmlDestinationSettingsPtrOutput

func (i ChannelTtmlDestinationSettingsArgs) ToChannelTtmlDestinationSettingsPtrOutput() ChannelTtmlDestinationSettingsPtrOutput

func (ChannelTtmlDestinationSettingsArgs) ToChannelTtmlDestinationSettingsPtrOutputWithContext

func (i ChannelTtmlDestinationSettingsArgs) ToChannelTtmlDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelTtmlDestinationSettingsPtrOutput

func (ChannelTtmlDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelTtmlDestinationSettingsInput

type ChannelTtmlDestinationSettingsInput interface {
	pulumi.Input

	ToChannelTtmlDestinationSettingsOutput() ChannelTtmlDestinationSettingsOutput
	ToChannelTtmlDestinationSettingsOutputWithContext(context.Context) ChannelTtmlDestinationSettingsOutput
}

ChannelTtmlDestinationSettingsInput is an input type that accepts ChannelTtmlDestinationSettingsArgs and ChannelTtmlDestinationSettingsOutput values. You can construct a concrete instance of `ChannelTtmlDestinationSettingsInput` via:

ChannelTtmlDestinationSettingsArgs{...}

type ChannelTtmlDestinationSettingsOutput

type ChannelTtmlDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelTtmlDestinationSettingsOutput) ElementType

func (ChannelTtmlDestinationSettingsOutput) StyleControl

func (ChannelTtmlDestinationSettingsOutput) ToChannelTtmlDestinationSettingsOutput

func (o ChannelTtmlDestinationSettingsOutput) ToChannelTtmlDestinationSettingsOutput() ChannelTtmlDestinationSettingsOutput

func (ChannelTtmlDestinationSettingsOutput) ToChannelTtmlDestinationSettingsOutputWithContext

func (o ChannelTtmlDestinationSettingsOutput) ToChannelTtmlDestinationSettingsOutputWithContext(ctx context.Context) ChannelTtmlDestinationSettingsOutput

func (ChannelTtmlDestinationSettingsOutput) ToChannelTtmlDestinationSettingsPtrOutput

func (o ChannelTtmlDestinationSettingsOutput) ToChannelTtmlDestinationSettingsPtrOutput() ChannelTtmlDestinationSettingsPtrOutput

func (ChannelTtmlDestinationSettingsOutput) ToChannelTtmlDestinationSettingsPtrOutputWithContext

func (o ChannelTtmlDestinationSettingsOutput) ToChannelTtmlDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelTtmlDestinationSettingsPtrOutput

func (ChannelTtmlDestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelTtmlDestinationSettingsPtrInput

type ChannelTtmlDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelTtmlDestinationSettingsPtrOutput() ChannelTtmlDestinationSettingsPtrOutput
	ToChannelTtmlDestinationSettingsPtrOutputWithContext(context.Context) ChannelTtmlDestinationSettingsPtrOutput
}

ChannelTtmlDestinationSettingsPtrInput is an input type that accepts ChannelTtmlDestinationSettingsArgs, ChannelTtmlDestinationSettingsPtr and ChannelTtmlDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelTtmlDestinationSettingsPtrInput` via:

        ChannelTtmlDestinationSettingsArgs{...}

or:

        nil

type ChannelTtmlDestinationSettingsPtrOutput

type ChannelTtmlDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelTtmlDestinationSettingsPtrOutput) Elem

func (ChannelTtmlDestinationSettingsPtrOutput) ElementType

func (ChannelTtmlDestinationSettingsPtrOutput) StyleControl

func (ChannelTtmlDestinationSettingsPtrOutput) ToChannelTtmlDestinationSettingsPtrOutput

func (o ChannelTtmlDestinationSettingsPtrOutput) ToChannelTtmlDestinationSettingsPtrOutput() ChannelTtmlDestinationSettingsPtrOutput

func (ChannelTtmlDestinationSettingsPtrOutput) ToChannelTtmlDestinationSettingsPtrOutputWithContext

func (o ChannelTtmlDestinationSettingsPtrOutput) ToChannelTtmlDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelTtmlDestinationSettingsPtrOutput

func (ChannelTtmlDestinationSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelUdpContainerSettings

type ChannelUdpContainerSettings struct {
	M2tsSettings *ChannelM2tsSettings `pulumi:"m2tsSettings"`
}

type ChannelUdpContainerSettingsArgs

type ChannelUdpContainerSettingsArgs struct {
	M2tsSettings ChannelM2tsSettingsPtrInput `pulumi:"m2tsSettings"`
}

func (ChannelUdpContainerSettingsArgs) ElementType

func (ChannelUdpContainerSettingsArgs) ToChannelUdpContainerSettingsOutput

func (i ChannelUdpContainerSettingsArgs) ToChannelUdpContainerSettingsOutput() ChannelUdpContainerSettingsOutput

func (ChannelUdpContainerSettingsArgs) ToChannelUdpContainerSettingsOutputWithContext

func (i ChannelUdpContainerSettingsArgs) ToChannelUdpContainerSettingsOutputWithContext(ctx context.Context) ChannelUdpContainerSettingsOutput

func (ChannelUdpContainerSettingsArgs) ToChannelUdpContainerSettingsPtrOutput

func (i ChannelUdpContainerSettingsArgs) ToChannelUdpContainerSettingsPtrOutput() ChannelUdpContainerSettingsPtrOutput

func (ChannelUdpContainerSettingsArgs) ToChannelUdpContainerSettingsPtrOutputWithContext

func (i ChannelUdpContainerSettingsArgs) ToChannelUdpContainerSettingsPtrOutputWithContext(ctx context.Context) ChannelUdpContainerSettingsPtrOutput

func (ChannelUdpContainerSettingsArgs) ToOutput added in v0.76.0

type ChannelUdpContainerSettingsInput

type ChannelUdpContainerSettingsInput interface {
	pulumi.Input

	ToChannelUdpContainerSettingsOutput() ChannelUdpContainerSettingsOutput
	ToChannelUdpContainerSettingsOutputWithContext(context.Context) ChannelUdpContainerSettingsOutput
}

ChannelUdpContainerSettingsInput is an input type that accepts ChannelUdpContainerSettingsArgs and ChannelUdpContainerSettingsOutput values. You can construct a concrete instance of `ChannelUdpContainerSettingsInput` via:

ChannelUdpContainerSettingsArgs{...}

type ChannelUdpContainerSettingsOutput

type ChannelUdpContainerSettingsOutput struct{ *pulumi.OutputState }

func (ChannelUdpContainerSettingsOutput) ElementType

func (ChannelUdpContainerSettingsOutput) M2tsSettings

func (ChannelUdpContainerSettingsOutput) ToChannelUdpContainerSettingsOutput

func (o ChannelUdpContainerSettingsOutput) ToChannelUdpContainerSettingsOutput() ChannelUdpContainerSettingsOutput

func (ChannelUdpContainerSettingsOutput) ToChannelUdpContainerSettingsOutputWithContext

func (o ChannelUdpContainerSettingsOutput) ToChannelUdpContainerSettingsOutputWithContext(ctx context.Context) ChannelUdpContainerSettingsOutput

func (ChannelUdpContainerSettingsOutput) ToChannelUdpContainerSettingsPtrOutput

func (o ChannelUdpContainerSettingsOutput) ToChannelUdpContainerSettingsPtrOutput() ChannelUdpContainerSettingsPtrOutput

func (ChannelUdpContainerSettingsOutput) ToChannelUdpContainerSettingsPtrOutputWithContext

func (o ChannelUdpContainerSettingsOutput) ToChannelUdpContainerSettingsPtrOutputWithContext(ctx context.Context) ChannelUdpContainerSettingsPtrOutput

func (ChannelUdpContainerSettingsOutput) ToOutput added in v0.76.0

type ChannelUdpContainerSettingsPtrInput

type ChannelUdpContainerSettingsPtrInput interface {
	pulumi.Input

	ToChannelUdpContainerSettingsPtrOutput() ChannelUdpContainerSettingsPtrOutput
	ToChannelUdpContainerSettingsPtrOutputWithContext(context.Context) ChannelUdpContainerSettingsPtrOutput
}

ChannelUdpContainerSettingsPtrInput is an input type that accepts ChannelUdpContainerSettingsArgs, ChannelUdpContainerSettingsPtr and ChannelUdpContainerSettingsPtrOutput values. You can construct a concrete instance of `ChannelUdpContainerSettingsPtrInput` via:

        ChannelUdpContainerSettingsArgs{...}

or:

        nil

type ChannelUdpContainerSettingsPtrOutput

type ChannelUdpContainerSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelUdpContainerSettingsPtrOutput) Elem

func (ChannelUdpContainerSettingsPtrOutput) ElementType

func (ChannelUdpContainerSettingsPtrOutput) M2tsSettings

func (ChannelUdpContainerSettingsPtrOutput) ToChannelUdpContainerSettingsPtrOutput

func (o ChannelUdpContainerSettingsPtrOutput) ToChannelUdpContainerSettingsPtrOutput() ChannelUdpContainerSettingsPtrOutput

func (ChannelUdpContainerSettingsPtrOutput) ToChannelUdpContainerSettingsPtrOutputWithContext

func (o ChannelUdpContainerSettingsPtrOutput) ToChannelUdpContainerSettingsPtrOutputWithContext(ctx context.Context) ChannelUdpContainerSettingsPtrOutput

func (ChannelUdpContainerSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelUdpGroupSettings

type ChannelUdpGroupSettings struct {
	InputLossAction        *string `pulumi:"inputLossAction"`
	TimedMetadataId3Frame  *string `pulumi:"timedMetadataId3Frame"`
	TimedMetadataId3Period *int    `pulumi:"timedMetadataId3Period"`
}

type ChannelUdpGroupSettingsArgs

type ChannelUdpGroupSettingsArgs struct {
	InputLossAction        pulumi.StringPtrInput `pulumi:"inputLossAction"`
	TimedMetadataId3Frame  pulumi.StringPtrInput `pulumi:"timedMetadataId3Frame"`
	TimedMetadataId3Period pulumi.IntPtrInput    `pulumi:"timedMetadataId3Period"`
}

func (ChannelUdpGroupSettingsArgs) ElementType

func (ChannelUdpGroupSettingsArgs) ToChannelUdpGroupSettingsOutput

func (i ChannelUdpGroupSettingsArgs) ToChannelUdpGroupSettingsOutput() ChannelUdpGroupSettingsOutput

func (ChannelUdpGroupSettingsArgs) ToChannelUdpGroupSettingsOutputWithContext

func (i ChannelUdpGroupSettingsArgs) ToChannelUdpGroupSettingsOutputWithContext(ctx context.Context) ChannelUdpGroupSettingsOutput

func (ChannelUdpGroupSettingsArgs) ToChannelUdpGroupSettingsPtrOutput

func (i ChannelUdpGroupSettingsArgs) ToChannelUdpGroupSettingsPtrOutput() ChannelUdpGroupSettingsPtrOutput

func (ChannelUdpGroupSettingsArgs) ToChannelUdpGroupSettingsPtrOutputWithContext

func (i ChannelUdpGroupSettingsArgs) ToChannelUdpGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelUdpGroupSettingsPtrOutput

func (ChannelUdpGroupSettingsArgs) ToOutput added in v0.76.0

type ChannelUdpGroupSettingsInput

type ChannelUdpGroupSettingsInput interface {
	pulumi.Input

	ToChannelUdpGroupSettingsOutput() ChannelUdpGroupSettingsOutput
	ToChannelUdpGroupSettingsOutputWithContext(context.Context) ChannelUdpGroupSettingsOutput
}

ChannelUdpGroupSettingsInput is an input type that accepts ChannelUdpGroupSettingsArgs and ChannelUdpGroupSettingsOutput values. You can construct a concrete instance of `ChannelUdpGroupSettingsInput` via:

ChannelUdpGroupSettingsArgs{...}

type ChannelUdpGroupSettingsOutput

type ChannelUdpGroupSettingsOutput struct{ *pulumi.OutputState }

func (ChannelUdpGroupSettingsOutput) ElementType

func (ChannelUdpGroupSettingsOutput) InputLossAction

func (ChannelUdpGroupSettingsOutput) TimedMetadataId3Frame

func (o ChannelUdpGroupSettingsOutput) TimedMetadataId3Frame() pulumi.StringPtrOutput

func (ChannelUdpGroupSettingsOutput) TimedMetadataId3Period

func (o ChannelUdpGroupSettingsOutput) TimedMetadataId3Period() pulumi.IntPtrOutput

func (ChannelUdpGroupSettingsOutput) ToChannelUdpGroupSettingsOutput

func (o ChannelUdpGroupSettingsOutput) ToChannelUdpGroupSettingsOutput() ChannelUdpGroupSettingsOutput

func (ChannelUdpGroupSettingsOutput) ToChannelUdpGroupSettingsOutputWithContext

func (o ChannelUdpGroupSettingsOutput) ToChannelUdpGroupSettingsOutputWithContext(ctx context.Context) ChannelUdpGroupSettingsOutput

func (ChannelUdpGroupSettingsOutput) ToChannelUdpGroupSettingsPtrOutput

func (o ChannelUdpGroupSettingsOutput) ToChannelUdpGroupSettingsPtrOutput() ChannelUdpGroupSettingsPtrOutput

func (ChannelUdpGroupSettingsOutput) ToChannelUdpGroupSettingsPtrOutputWithContext

func (o ChannelUdpGroupSettingsOutput) ToChannelUdpGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelUdpGroupSettingsPtrOutput

func (ChannelUdpGroupSettingsOutput) ToOutput added in v0.76.0

type ChannelUdpGroupSettingsPtrInput

type ChannelUdpGroupSettingsPtrInput interface {
	pulumi.Input

	ToChannelUdpGroupSettingsPtrOutput() ChannelUdpGroupSettingsPtrOutput
	ToChannelUdpGroupSettingsPtrOutputWithContext(context.Context) ChannelUdpGroupSettingsPtrOutput
}

ChannelUdpGroupSettingsPtrInput is an input type that accepts ChannelUdpGroupSettingsArgs, ChannelUdpGroupSettingsPtr and ChannelUdpGroupSettingsPtrOutput values. You can construct a concrete instance of `ChannelUdpGroupSettingsPtrInput` via:

        ChannelUdpGroupSettingsArgs{...}

or:

        nil

type ChannelUdpGroupSettingsPtrOutput

type ChannelUdpGroupSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelUdpGroupSettingsPtrOutput) Elem

func (ChannelUdpGroupSettingsPtrOutput) ElementType

func (ChannelUdpGroupSettingsPtrOutput) InputLossAction

func (ChannelUdpGroupSettingsPtrOutput) TimedMetadataId3Frame

func (o ChannelUdpGroupSettingsPtrOutput) TimedMetadataId3Frame() pulumi.StringPtrOutput

func (ChannelUdpGroupSettingsPtrOutput) TimedMetadataId3Period

func (o ChannelUdpGroupSettingsPtrOutput) TimedMetadataId3Period() pulumi.IntPtrOutput

func (ChannelUdpGroupSettingsPtrOutput) ToChannelUdpGroupSettingsPtrOutput

func (o ChannelUdpGroupSettingsPtrOutput) ToChannelUdpGroupSettingsPtrOutput() ChannelUdpGroupSettingsPtrOutput

func (ChannelUdpGroupSettingsPtrOutput) ToChannelUdpGroupSettingsPtrOutputWithContext

func (o ChannelUdpGroupSettingsPtrOutput) ToChannelUdpGroupSettingsPtrOutputWithContext(ctx context.Context) ChannelUdpGroupSettingsPtrOutput

func (ChannelUdpGroupSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelUdpOutputSettings

type ChannelUdpOutputSettings struct {
	BufferMsec        *int                         `pulumi:"bufferMsec"`
	ContainerSettings *ChannelUdpContainerSettings `pulumi:"containerSettings"`
	Destination       *ChannelOutputLocationRef    `pulumi:"destination"`
	FecOutputSettings *ChannelFecOutputSettings    `pulumi:"fecOutputSettings"`
}

type ChannelUdpOutputSettingsArgs

type ChannelUdpOutputSettingsArgs struct {
	BufferMsec        pulumi.IntPtrInput                  `pulumi:"bufferMsec"`
	ContainerSettings ChannelUdpContainerSettingsPtrInput `pulumi:"containerSettings"`
	Destination       ChannelOutputLocationRefPtrInput    `pulumi:"destination"`
	FecOutputSettings ChannelFecOutputSettingsPtrInput    `pulumi:"fecOutputSettings"`
}

func (ChannelUdpOutputSettingsArgs) ElementType

func (ChannelUdpOutputSettingsArgs) ToChannelUdpOutputSettingsOutput

func (i ChannelUdpOutputSettingsArgs) ToChannelUdpOutputSettingsOutput() ChannelUdpOutputSettingsOutput

func (ChannelUdpOutputSettingsArgs) ToChannelUdpOutputSettingsOutputWithContext

func (i ChannelUdpOutputSettingsArgs) ToChannelUdpOutputSettingsOutputWithContext(ctx context.Context) ChannelUdpOutputSettingsOutput

func (ChannelUdpOutputSettingsArgs) ToChannelUdpOutputSettingsPtrOutput

func (i ChannelUdpOutputSettingsArgs) ToChannelUdpOutputSettingsPtrOutput() ChannelUdpOutputSettingsPtrOutput

func (ChannelUdpOutputSettingsArgs) ToChannelUdpOutputSettingsPtrOutputWithContext

func (i ChannelUdpOutputSettingsArgs) ToChannelUdpOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelUdpOutputSettingsPtrOutput

func (ChannelUdpOutputSettingsArgs) ToOutput added in v0.76.0

type ChannelUdpOutputSettingsInput

type ChannelUdpOutputSettingsInput interface {
	pulumi.Input

	ToChannelUdpOutputSettingsOutput() ChannelUdpOutputSettingsOutput
	ToChannelUdpOutputSettingsOutputWithContext(context.Context) ChannelUdpOutputSettingsOutput
}

ChannelUdpOutputSettingsInput is an input type that accepts ChannelUdpOutputSettingsArgs and ChannelUdpOutputSettingsOutput values. You can construct a concrete instance of `ChannelUdpOutputSettingsInput` via:

ChannelUdpOutputSettingsArgs{...}

type ChannelUdpOutputSettingsOutput

type ChannelUdpOutputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelUdpOutputSettingsOutput) BufferMsec

func (ChannelUdpOutputSettingsOutput) ContainerSettings

func (ChannelUdpOutputSettingsOutput) Destination

func (ChannelUdpOutputSettingsOutput) ElementType

func (ChannelUdpOutputSettingsOutput) FecOutputSettings

func (ChannelUdpOutputSettingsOutput) ToChannelUdpOutputSettingsOutput

func (o ChannelUdpOutputSettingsOutput) ToChannelUdpOutputSettingsOutput() ChannelUdpOutputSettingsOutput

func (ChannelUdpOutputSettingsOutput) ToChannelUdpOutputSettingsOutputWithContext

func (o ChannelUdpOutputSettingsOutput) ToChannelUdpOutputSettingsOutputWithContext(ctx context.Context) ChannelUdpOutputSettingsOutput

func (ChannelUdpOutputSettingsOutput) ToChannelUdpOutputSettingsPtrOutput

func (o ChannelUdpOutputSettingsOutput) ToChannelUdpOutputSettingsPtrOutput() ChannelUdpOutputSettingsPtrOutput

func (ChannelUdpOutputSettingsOutput) ToChannelUdpOutputSettingsPtrOutputWithContext

func (o ChannelUdpOutputSettingsOutput) ToChannelUdpOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelUdpOutputSettingsPtrOutput

func (ChannelUdpOutputSettingsOutput) ToOutput added in v0.76.0

type ChannelUdpOutputSettingsPtrInput

type ChannelUdpOutputSettingsPtrInput interface {
	pulumi.Input

	ToChannelUdpOutputSettingsPtrOutput() ChannelUdpOutputSettingsPtrOutput
	ToChannelUdpOutputSettingsPtrOutputWithContext(context.Context) ChannelUdpOutputSettingsPtrOutput
}

ChannelUdpOutputSettingsPtrInput is an input type that accepts ChannelUdpOutputSettingsArgs, ChannelUdpOutputSettingsPtr and ChannelUdpOutputSettingsPtrOutput values. You can construct a concrete instance of `ChannelUdpOutputSettingsPtrInput` via:

        ChannelUdpOutputSettingsArgs{...}

or:

        nil

type ChannelUdpOutputSettingsPtrOutput

type ChannelUdpOutputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelUdpOutputSettingsPtrOutput) BufferMsec

func (ChannelUdpOutputSettingsPtrOutput) ContainerSettings

func (ChannelUdpOutputSettingsPtrOutput) Destination

func (ChannelUdpOutputSettingsPtrOutput) Elem

func (ChannelUdpOutputSettingsPtrOutput) ElementType

func (ChannelUdpOutputSettingsPtrOutput) FecOutputSettings

func (ChannelUdpOutputSettingsPtrOutput) ToChannelUdpOutputSettingsPtrOutput

func (o ChannelUdpOutputSettingsPtrOutput) ToChannelUdpOutputSettingsPtrOutput() ChannelUdpOutputSettingsPtrOutput

func (ChannelUdpOutputSettingsPtrOutput) ToChannelUdpOutputSettingsPtrOutputWithContext

func (o ChannelUdpOutputSettingsPtrOutput) ToChannelUdpOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelUdpOutputSettingsPtrOutput

func (ChannelUdpOutputSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelVideoBlackFailoverSettings

type ChannelVideoBlackFailoverSettings struct {
	BlackDetectThreshold    *float64 `pulumi:"blackDetectThreshold"`
	VideoBlackThresholdMsec *int     `pulumi:"videoBlackThresholdMsec"`
}

type ChannelVideoBlackFailoverSettingsArgs

type ChannelVideoBlackFailoverSettingsArgs struct {
	BlackDetectThreshold    pulumi.Float64PtrInput `pulumi:"blackDetectThreshold"`
	VideoBlackThresholdMsec pulumi.IntPtrInput     `pulumi:"videoBlackThresholdMsec"`
}

func (ChannelVideoBlackFailoverSettingsArgs) ElementType

func (ChannelVideoBlackFailoverSettingsArgs) ToChannelVideoBlackFailoverSettingsOutput

func (i ChannelVideoBlackFailoverSettingsArgs) ToChannelVideoBlackFailoverSettingsOutput() ChannelVideoBlackFailoverSettingsOutput

func (ChannelVideoBlackFailoverSettingsArgs) ToChannelVideoBlackFailoverSettingsOutputWithContext

func (i ChannelVideoBlackFailoverSettingsArgs) ToChannelVideoBlackFailoverSettingsOutputWithContext(ctx context.Context) ChannelVideoBlackFailoverSettingsOutput

func (ChannelVideoBlackFailoverSettingsArgs) ToChannelVideoBlackFailoverSettingsPtrOutput

func (i ChannelVideoBlackFailoverSettingsArgs) ToChannelVideoBlackFailoverSettingsPtrOutput() ChannelVideoBlackFailoverSettingsPtrOutput

func (ChannelVideoBlackFailoverSettingsArgs) ToChannelVideoBlackFailoverSettingsPtrOutputWithContext

func (i ChannelVideoBlackFailoverSettingsArgs) ToChannelVideoBlackFailoverSettingsPtrOutputWithContext(ctx context.Context) ChannelVideoBlackFailoverSettingsPtrOutput

func (ChannelVideoBlackFailoverSettingsArgs) ToOutput added in v0.76.0

type ChannelVideoBlackFailoverSettingsInput

type ChannelVideoBlackFailoverSettingsInput interface {
	pulumi.Input

	ToChannelVideoBlackFailoverSettingsOutput() ChannelVideoBlackFailoverSettingsOutput
	ToChannelVideoBlackFailoverSettingsOutputWithContext(context.Context) ChannelVideoBlackFailoverSettingsOutput
}

ChannelVideoBlackFailoverSettingsInput is an input type that accepts ChannelVideoBlackFailoverSettingsArgs and ChannelVideoBlackFailoverSettingsOutput values. You can construct a concrete instance of `ChannelVideoBlackFailoverSettingsInput` via:

ChannelVideoBlackFailoverSettingsArgs{...}

type ChannelVideoBlackFailoverSettingsOutput

type ChannelVideoBlackFailoverSettingsOutput struct{ *pulumi.OutputState }

func (ChannelVideoBlackFailoverSettingsOutput) BlackDetectThreshold

func (ChannelVideoBlackFailoverSettingsOutput) ElementType

func (ChannelVideoBlackFailoverSettingsOutput) ToChannelVideoBlackFailoverSettingsOutput

func (o ChannelVideoBlackFailoverSettingsOutput) ToChannelVideoBlackFailoverSettingsOutput() ChannelVideoBlackFailoverSettingsOutput

func (ChannelVideoBlackFailoverSettingsOutput) ToChannelVideoBlackFailoverSettingsOutputWithContext

func (o ChannelVideoBlackFailoverSettingsOutput) ToChannelVideoBlackFailoverSettingsOutputWithContext(ctx context.Context) ChannelVideoBlackFailoverSettingsOutput

func (ChannelVideoBlackFailoverSettingsOutput) ToChannelVideoBlackFailoverSettingsPtrOutput

func (o ChannelVideoBlackFailoverSettingsOutput) ToChannelVideoBlackFailoverSettingsPtrOutput() ChannelVideoBlackFailoverSettingsPtrOutput

func (ChannelVideoBlackFailoverSettingsOutput) ToChannelVideoBlackFailoverSettingsPtrOutputWithContext

func (o ChannelVideoBlackFailoverSettingsOutput) ToChannelVideoBlackFailoverSettingsPtrOutputWithContext(ctx context.Context) ChannelVideoBlackFailoverSettingsPtrOutput

func (ChannelVideoBlackFailoverSettingsOutput) ToOutput added in v0.76.0

func (ChannelVideoBlackFailoverSettingsOutput) VideoBlackThresholdMsec

func (o ChannelVideoBlackFailoverSettingsOutput) VideoBlackThresholdMsec() pulumi.IntPtrOutput

type ChannelVideoBlackFailoverSettingsPtrInput

type ChannelVideoBlackFailoverSettingsPtrInput interface {
	pulumi.Input

	ToChannelVideoBlackFailoverSettingsPtrOutput() ChannelVideoBlackFailoverSettingsPtrOutput
	ToChannelVideoBlackFailoverSettingsPtrOutputWithContext(context.Context) ChannelVideoBlackFailoverSettingsPtrOutput
}

ChannelVideoBlackFailoverSettingsPtrInput is an input type that accepts ChannelVideoBlackFailoverSettingsArgs, ChannelVideoBlackFailoverSettingsPtr and ChannelVideoBlackFailoverSettingsPtrOutput values. You can construct a concrete instance of `ChannelVideoBlackFailoverSettingsPtrInput` via:

        ChannelVideoBlackFailoverSettingsArgs{...}

or:

        nil

type ChannelVideoBlackFailoverSettingsPtrOutput

type ChannelVideoBlackFailoverSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelVideoBlackFailoverSettingsPtrOutput) BlackDetectThreshold

func (ChannelVideoBlackFailoverSettingsPtrOutput) Elem

func (ChannelVideoBlackFailoverSettingsPtrOutput) ElementType

func (ChannelVideoBlackFailoverSettingsPtrOutput) ToChannelVideoBlackFailoverSettingsPtrOutput

func (o ChannelVideoBlackFailoverSettingsPtrOutput) ToChannelVideoBlackFailoverSettingsPtrOutput() ChannelVideoBlackFailoverSettingsPtrOutput

func (ChannelVideoBlackFailoverSettingsPtrOutput) ToChannelVideoBlackFailoverSettingsPtrOutputWithContext

func (o ChannelVideoBlackFailoverSettingsPtrOutput) ToChannelVideoBlackFailoverSettingsPtrOutputWithContext(ctx context.Context) ChannelVideoBlackFailoverSettingsPtrOutput

func (ChannelVideoBlackFailoverSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelVideoBlackFailoverSettingsPtrOutput) VideoBlackThresholdMsec

type ChannelVideoCodecSettings

type ChannelVideoCodecSettings struct {
	FrameCaptureSettings *ChannelFrameCaptureSettings `pulumi:"frameCaptureSettings"`
	H264Settings         *ChannelH264Settings         `pulumi:"h264Settings"`
	H265Settings         *ChannelH265Settings         `pulumi:"h265Settings"`
	Mpeg2Settings        *ChannelMpeg2Settings        `pulumi:"mpeg2Settings"`
}

type ChannelVideoCodecSettingsArgs

type ChannelVideoCodecSettingsArgs struct {
	FrameCaptureSettings ChannelFrameCaptureSettingsPtrInput `pulumi:"frameCaptureSettings"`
	H264Settings         ChannelH264SettingsPtrInput         `pulumi:"h264Settings"`
	H265Settings         ChannelH265SettingsPtrInput         `pulumi:"h265Settings"`
	Mpeg2Settings        ChannelMpeg2SettingsPtrInput        `pulumi:"mpeg2Settings"`
}

func (ChannelVideoCodecSettingsArgs) ElementType

func (ChannelVideoCodecSettingsArgs) ToChannelVideoCodecSettingsOutput

func (i ChannelVideoCodecSettingsArgs) ToChannelVideoCodecSettingsOutput() ChannelVideoCodecSettingsOutput

func (ChannelVideoCodecSettingsArgs) ToChannelVideoCodecSettingsOutputWithContext

func (i ChannelVideoCodecSettingsArgs) ToChannelVideoCodecSettingsOutputWithContext(ctx context.Context) ChannelVideoCodecSettingsOutput

func (ChannelVideoCodecSettingsArgs) ToChannelVideoCodecSettingsPtrOutput

func (i ChannelVideoCodecSettingsArgs) ToChannelVideoCodecSettingsPtrOutput() ChannelVideoCodecSettingsPtrOutput

func (ChannelVideoCodecSettingsArgs) ToChannelVideoCodecSettingsPtrOutputWithContext

func (i ChannelVideoCodecSettingsArgs) ToChannelVideoCodecSettingsPtrOutputWithContext(ctx context.Context) ChannelVideoCodecSettingsPtrOutput

func (ChannelVideoCodecSettingsArgs) ToOutput added in v0.76.0

type ChannelVideoCodecSettingsInput

type ChannelVideoCodecSettingsInput interface {
	pulumi.Input

	ToChannelVideoCodecSettingsOutput() ChannelVideoCodecSettingsOutput
	ToChannelVideoCodecSettingsOutputWithContext(context.Context) ChannelVideoCodecSettingsOutput
}

ChannelVideoCodecSettingsInput is an input type that accepts ChannelVideoCodecSettingsArgs and ChannelVideoCodecSettingsOutput values. You can construct a concrete instance of `ChannelVideoCodecSettingsInput` via:

ChannelVideoCodecSettingsArgs{...}

type ChannelVideoCodecSettingsOutput

type ChannelVideoCodecSettingsOutput struct{ *pulumi.OutputState }

func (ChannelVideoCodecSettingsOutput) ElementType

func (ChannelVideoCodecSettingsOutput) FrameCaptureSettings

func (ChannelVideoCodecSettingsOutput) H264Settings

func (ChannelVideoCodecSettingsOutput) H265Settings

func (ChannelVideoCodecSettingsOutput) Mpeg2Settings

func (ChannelVideoCodecSettingsOutput) ToChannelVideoCodecSettingsOutput

func (o ChannelVideoCodecSettingsOutput) ToChannelVideoCodecSettingsOutput() ChannelVideoCodecSettingsOutput

func (ChannelVideoCodecSettingsOutput) ToChannelVideoCodecSettingsOutputWithContext

func (o ChannelVideoCodecSettingsOutput) ToChannelVideoCodecSettingsOutputWithContext(ctx context.Context) ChannelVideoCodecSettingsOutput

func (ChannelVideoCodecSettingsOutput) ToChannelVideoCodecSettingsPtrOutput

func (o ChannelVideoCodecSettingsOutput) ToChannelVideoCodecSettingsPtrOutput() ChannelVideoCodecSettingsPtrOutput

func (ChannelVideoCodecSettingsOutput) ToChannelVideoCodecSettingsPtrOutputWithContext

func (o ChannelVideoCodecSettingsOutput) ToChannelVideoCodecSettingsPtrOutputWithContext(ctx context.Context) ChannelVideoCodecSettingsPtrOutput

func (ChannelVideoCodecSettingsOutput) ToOutput added in v0.76.0

type ChannelVideoCodecSettingsPtrInput

type ChannelVideoCodecSettingsPtrInput interface {
	pulumi.Input

	ToChannelVideoCodecSettingsPtrOutput() ChannelVideoCodecSettingsPtrOutput
	ToChannelVideoCodecSettingsPtrOutputWithContext(context.Context) ChannelVideoCodecSettingsPtrOutput
}

ChannelVideoCodecSettingsPtrInput is an input type that accepts ChannelVideoCodecSettingsArgs, ChannelVideoCodecSettingsPtr and ChannelVideoCodecSettingsPtrOutput values. You can construct a concrete instance of `ChannelVideoCodecSettingsPtrInput` via:

        ChannelVideoCodecSettingsArgs{...}

or:

        nil

type ChannelVideoCodecSettingsPtrOutput

type ChannelVideoCodecSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelVideoCodecSettingsPtrOutput) Elem

func (ChannelVideoCodecSettingsPtrOutput) ElementType

func (ChannelVideoCodecSettingsPtrOutput) FrameCaptureSettings

func (ChannelVideoCodecSettingsPtrOutput) H264Settings

func (ChannelVideoCodecSettingsPtrOutput) H265Settings

func (ChannelVideoCodecSettingsPtrOutput) Mpeg2Settings

func (ChannelVideoCodecSettingsPtrOutput) ToChannelVideoCodecSettingsPtrOutput

func (o ChannelVideoCodecSettingsPtrOutput) ToChannelVideoCodecSettingsPtrOutput() ChannelVideoCodecSettingsPtrOutput

func (ChannelVideoCodecSettingsPtrOutput) ToChannelVideoCodecSettingsPtrOutputWithContext

func (o ChannelVideoCodecSettingsPtrOutput) ToChannelVideoCodecSettingsPtrOutputWithContext(ctx context.Context) ChannelVideoCodecSettingsPtrOutput

func (ChannelVideoCodecSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelVideoDescription

type ChannelVideoDescription struct {
	CodecSettings   *ChannelVideoCodecSettings `pulumi:"codecSettings"`
	Height          *int                       `pulumi:"height"`
	Name            *string                    `pulumi:"name"`
	RespondToAfd    *string                    `pulumi:"respondToAfd"`
	ScalingBehavior *string                    `pulumi:"scalingBehavior"`
	Sharpness       *int                       `pulumi:"sharpness"`
	Width           *int                       `pulumi:"width"`
}

type ChannelVideoDescriptionArgs

type ChannelVideoDescriptionArgs struct {
	CodecSettings   ChannelVideoCodecSettingsPtrInput `pulumi:"codecSettings"`
	Height          pulumi.IntPtrInput                `pulumi:"height"`
	Name            pulumi.StringPtrInput             `pulumi:"name"`
	RespondToAfd    pulumi.StringPtrInput             `pulumi:"respondToAfd"`
	ScalingBehavior pulumi.StringPtrInput             `pulumi:"scalingBehavior"`
	Sharpness       pulumi.IntPtrInput                `pulumi:"sharpness"`
	Width           pulumi.IntPtrInput                `pulumi:"width"`
}

func (ChannelVideoDescriptionArgs) ElementType

func (ChannelVideoDescriptionArgs) ToChannelVideoDescriptionOutput

func (i ChannelVideoDescriptionArgs) ToChannelVideoDescriptionOutput() ChannelVideoDescriptionOutput

func (ChannelVideoDescriptionArgs) ToChannelVideoDescriptionOutputWithContext

func (i ChannelVideoDescriptionArgs) ToChannelVideoDescriptionOutputWithContext(ctx context.Context) ChannelVideoDescriptionOutput

func (ChannelVideoDescriptionArgs) ToOutput added in v0.76.0

type ChannelVideoDescriptionArray

type ChannelVideoDescriptionArray []ChannelVideoDescriptionInput

func (ChannelVideoDescriptionArray) ElementType

func (ChannelVideoDescriptionArray) ToChannelVideoDescriptionArrayOutput

func (i ChannelVideoDescriptionArray) ToChannelVideoDescriptionArrayOutput() ChannelVideoDescriptionArrayOutput

func (ChannelVideoDescriptionArray) ToChannelVideoDescriptionArrayOutputWithContext

func (i ChannelVideoDescriptionArray) ToChannelVideoDescriptionArrayOutputWithContext(ctx context.Context) ChannelVideoDescriptionArrayOutput

func (ChannelVideoDescriptionArray) ToOutput added in v0.76.0

type ChannelVideoDescriptionArrayInput

type ChannelVideoDescriptionArrayInput interface {
	pulumi.Input

	ToChannelVideoDescriptionArrayOutput() ChannelVideoDescriptionArrayOutput
	ToChannelVideoDescriptionArrayOutputWithContext(context.Context) ChannelVideoDescriptionArrayOutput
}

ChannelVideoDescriptionArrayInput is an input type that accepts ChannelVideoDescriptionArray and ChannelVideoDescriptionArrayOutput values. You can construct a concrete instance of `ChannelVideoDescriptionArrayInput` via:

ChannelVideoDescriptionArray{ ChannelVideoDescriptionArgs{...} }

type ChannelVideoDescriptionArrayOutput

type ChannelVideoDescriptionArrayOutput struct{ *pulumi.OutputState }

func (ChannelVideoDescriptionArrayOutput) ElementType

func (ChannelVideoDescriptionArrayOutput) Index

func (ChannelVideoDescriptionArrayOutput) ToChannelVideoDescriptionArrayOutput

func (o ChannelVideoDescriptionArrayOutput) ToChannelVideoDescriptionArrayOutput() ChannelVideoDescriptionArrayOutput

func (ChannelVideoDescriptionArrayOutput) ToChannelVideoDescriptionArrayOutputWithContext

func (o ChannelVideoDescriptionArrayOutput) ToChannelVideoDescriptionArrayOutputWithContext(ctx context.Context) ChannelVideoDescriptionArrayOutput

func (ChannelVideoDescriptionArrayOutput) ToOutput added in v0.76.0

type ChannelVideoDescriptionInput

type ChannelVideoDescriptionInput interface {
	pulumi.Input

	ToChannelVideoDescriptionOutput() ChannelVideoDescriptionOutput
	ToChannelVideoDescriptionOutputWithContext(context.Context) ChannelVideoDescriptionOutput
}

ChannelVideoDescriptionInput is an input type that accepts ChannelVideoDescriptionArgs and ChannelVideoDescriptionOutput values. You can construct a concrete instance of `ChannelVideoDescriptionInput` via:

ChannelVideoDescriptionArgs{...}

type ChannelVideoDescriptionOutput

type ChannelVideoDescriptionOutput struct{ *pulumi.OutputState }

func (ChannelVideoDescriptionOutput) CodecSettings

func (ChannelVideoDescriptionOutput) ElementType

func (ChannelVideoDescriptionOutput) Height

func (ChannelVideoDescriptionOutput) Name

func (ChannelVideoDescriptionOutput) RespondToAfd

func (ChannelVideoDescriptionOutput) ScalingBehavior

func (ChannelVideoDescriptionOutput) Sharpness

func (ChannelVideoDescriptionOutput) ToChannelVideoDescriptionOutput

func (o ChannelVideoDescriptionOutput) ToChannelVideoDescriptionOutput() ChannelVideoDescriptionOutput

func (ChannelVideoDescriptionOutput) ToChannelVideoDescriptionOutputWithContext

func (o ChannelVideoDescriptionOutput) ToChannelVideoDescriptionOutputWithContext(ctx context.Context) ChannelVideoDescriptionOutput

func (ChannelVideoDescriptionOutput) ToOutput added in v0.76.0

func (ChannelVideoDescriptionOutput) Width

type ChannelVideoSelector

type ChannelVideoSelector struct {
	ColorSpace         *string                                 `pulumi:"colorSpace"`
	ColorSpaceSettings *ChannelVideoSelectorColorSpaceSettings `pulumi:"colorSpaceSettings"`
	ColorSpaceUsage    *string                                 `pulumi:"colorSpaceUsage"`
	SelectorSettings   *ChannelVideoSelectorSettings           `pulumi:"selectorSettings"`
}

type ChannelVideoSelectorArgs

type ChannelVideoSelectorArgs struct {
	ColorSpace         pulumi.StringPtrInput                          `pulumi:"colorSpace"`
	ColorSpaceSettings ChannelVideoSelectorColorSpaceSettingsPtrInput `pulumi:"colorSpaceSettings"`
	ColorSpaceUsage    pulumi.StringPtrInput                          `pulumi:"colorSpaceUsage"`
	SelectorSettings   ChannelVideoSelectorSettingsPtrInput           `pulumi:"selectorSettings"`
}

func (ChannelVideoSelectorArgs) ElementType

func (ChannelVideoSelectorArgs) ElementType() reflect.Type

func (ChannelVideoSelectorArgs) ToChannelVideoSelectorOutput

func (i ChannelVideoSelectorArgs) ToChannelVideoSelectorOutput() ChannelVideoSelectorOutput

func (ChannelVideoSelectorArgs) ToChannelVideoSelectorOutputWithContext

func (i ChannelVideoSelectorArgs) ToChannelVideoSelectorOutputWithContext(ctx context.Context) ChannelVideoSelectorOutput

func (ChannelVideoSelectorArgs) ToChannelVideoSelectorPtrOutput

func (i ChannelVideoSelectorArgs) ToChannelVideoSelectorPtrOutput() ChannelVideoSelectorPtrOutput

func (ChannelVideoSelectorArgs) ToChannelVideoSelectorPtrOutputWithContext

func (i ChannelVideoSelectorArgs) ToChannelVideoSelectorPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorPtrOutput

func (ChannelVideoSelectorArgs) ToOutput added in v0.76.0

type ChannelVideoSelectorColorSpaceSettings

type ChannelVideoSelectorColorSpaceSettings struct {
	Hdr10Settings *ChannelHdr10Settings `pulumi:"hdr10Settings"`
}

type ChannelVideoSelectorColorSpaceSettingsArgs

type ChannelVideoSelectorColorSpaceSettingsArgs struct {
	Hdr10Settings ChannelHdr10SettingsPtrInput `pulumi:"hdr10Settings"`
}

func (ChannelVideoSelectorColorSpaceSettingsArgs) ElementType

func (ChannelVideoSelectorColorSpaceSettingsArgs) ToChannelVideoSelectorColorSpaceSettingsOutput

func (i ChannelVideoSelectorColorSpaceSettingsArgs) ToChannelVideoSelectorColorSpaceSettingsOutput() ChannelVideoSelectorColorSpaceSettingsOutput

func (ChannelVideoSelectorColorSpaceSettingsArgs) ToChannelVideoSelectorColorSpaceSettingsOutputWithContext

func (i ChannelVideoSelectorColorSpaceSettingsArgs) ToChannelVideoSelectorColorSpaceSettingsOutputWithContext(ctx context.Context) ChannelVideoSelectorColorSpaceSettingsOutput

func (ChannelVideoSelectorColorSpaceSettingsArgs) ToChannelVideoSelectorColorSpaceSettingsPtrOutput

func (i ChannelVideoSelectorColorSpaceSettingsArgs) ToChannelVideoSelectorColorSpaceSettingsPtrOutput() ChannelVideoSelectorColorSpaceSettingsPtrOutput

func (ChannelVideoSelectorColorSpaceSettingsArgs) ToChannelVideoSelectorColorSpaceSettingsPtrOutputWithContext

func (i ChannelVideoSelectorColorSpaceSettingsArgs) ToChannelVideoSelectorColorSpaceSettingsPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorColorSpaceSettingsPtrOutput

func (ChannelVideoSelectorColorSpaceSettingsArgs) ToOutput added in v0.76.0

type ChannelVideoSelectorColorSpaceSettingsInput

type ChannelVideoSelectorColorSpaceSettingsInput interface {
	pulumi.Input

	ToChannelVideoSelectorColorSpaceSettingsOutput() ChannelVideoSelectorColorSpaceSettingsOutput
	ToChannelVideoSelectorColorSpaceSettingsOutputWithContext(context.Context) ChannelVideoSelectorColorSpaceSettingsOutput
}

ChannelVideoSelectorColorSpaceSettingsInput is an input type that accepts ChannelVideoSelectorColorSpaceSettingsArgs and ChannelVideoSelectorColorSpaceSettingsOutput values. You can construct a concrete instance of `ChannelVideoSelectorColorSpaceSettingsInput` via:

ChannelVideoSelectorColorSpaceSettingsArgs{...}

type ChannelVideoSelectorColorSpaceSettingsOutput

type ChannelVideoSelectorColorSpaceSettingsOutput struct{ *pulumi.OutputState }

func (ChannelVideoSelectorColorSpaceSettingsOutput) ElementType

func (ChannelVideoSelectorColorSpaceSettingsOutput) Hdr10Settings

func (ChannelVideoSelectorColorSpaceSettingsOutput) ToChannelVideoSelectorColorSpaceSettingsOutput

func (o ChannelVideoSelectorColorSpaceSettingsOutput) ToChannelVideoSelectorColorSpaceSettingsOutput() ChannelVideoSelectorColorSpaceSettingsOutput

func (ChannelVideoSelectorColorSpaceSettingsOutput) ToChannelVideoSelectorColorSpaceSettingsOutputWithContext

func (o ChannelVideoSelectorColorSpaceSettingsOutput) ToChannelVideoSelectorColorSpaceSettingsOutputWithContext(ctx context.Context) ChannelVideoSelectorColorSpaceSettingsOutput

func (ChannelVideoSelectorColorSpaceSettingsOutput) ToChannelVideoSelectorColorSpaceSettingsPtrOutput

func (o ChannelVideoSelectorColorSpaceSettingsOutput) ToChannelVideoSelectorColorSpaceSettingsPtrOutput() ChannelVideoSelectorColorSpaceSettingsPtrOutput

func (ChannelVideoSelectorColorSpaceSettingsOutput) ToChannelVideoSelectorColorSpaceSettingsPtrOutputWithContext

func (o ChannelVideoSelectorColorSpaceSettingsOutput) ToChannelVideoSelectorColorSpaceSettingsPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorColorSpaceSettingsPtrOutput

func (ChannelVideoSelectorColorSpaceSettingsOutput) ToOutput added in v0.76.0

type ChannelVideoSelectorColorSpaceSettingsPtrInput

type ChannelVideoSelectorColorSpaceSettingsPtrInput interface {
	pulumi.Input

	ToChannelVideoSelectorColorSpaceSettingsPtrOutput() ChannelVideoSelectorColorSpaceSettingsPtrOutput
	ToChannelVideoSelectorColorSpaceSettingsPtrOutputWithContext(context.Context) ChannelVideoSelectorColorSpaceSettingsPtrOutput
}

ChannelVideoSelectorColorSpaceSettingsPtrInput is an input type that accepts ChannelVideoSelectorColorSpaceSettingsArgs, ChannelVideoSelectorColorSpaceSettingsPtr and ChannelVideoSelectorColorSpaceSettingsPtrOutput values. You can construct a concrete instance of `ChannelVideoSelectorColorSpaceSettingsPtrInput` via:

        ChannelVideoSelectorColorSpaceSettingsArgs{...}

or:

        nil

type ChannelVideoSelectorColorSpaceSettingsPtrOutput

type ChannelVideoSelectorColorSpaceSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelVideoSelectorColorSpaceSettingsPtrOutput) Elem

func (ChannelVideoSelectorColorSpaceSettingsPtrOutput) ElementType

func (ChannelVideoSelectorColorSpaceSettingsPtrOutput) Hdr10Settings

func (ChannelVideoSelectorColorSpaceSettingsPtrOutput) ToChannelVideoSelectorColorSpaceSettingsPtrOutput

func (o ChannelVideoSelectorColorSpaceSettingsPtrOutput) ToChannelVideoSelectorColorSpaceSettingsPtrOutput() ChannelVideoSelectorColorSpaceSettingsPtrOutput

func (ChannelVideoSelectorColorSpaceSettingsPtrOutput) ToChannelVideoSelectorColorSpaceSettingsPtrOutputWithContext

func (o ChannelVideoSelectorColorSpaceSettingsPtrOutput) ToChannelVideoSelectorColorSpaceSettingsPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorColorSpaceSettingsPtrOutput

func (ChannelVideoSelectorColorSpaceSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelVideoSelectorInput

type ChannelVideoSelectorInput interface {
	pulumi.Input

	ToChannelVideoSelectorOutput() ChannelVideoSelectorOutput
	ToChannelVideoSelectorOutputWithContext(context.Context) ChannelVideoSelectorOutput
}

ChannelVideoSelectorInput is an input type that accepts ChannelVideoSelectorArgs and ChannelVideoSelectorOutput values. You can construct a concrete instance of `ChannelVideoSelectorInput` via:

ChannelVideoSelectorArgs{...}

type ChannelVideoSelectorOutput

type ChannelVideoSelectorOutput struct{ *pulumi.OutputState }

func (ChannelVideoSelectorOutput) ColorSpace

func (ChannelVideoSelectorOutput) ColorSpaceSettings

func (ChannelVideoSelectorOutput) ColorSpaceUsage

func (ChannelVideoSelectorOutput) ElementType

func (ChannelVideoSelectorOutput) ElementType() reflect.Type

func (ChannelVideoSelectorOutput) SelectorSettings

func (ChannelVideoSelectorOutput) ToChannelVideoSelectorOutput

func (o ChannelVideoSelectorOutput) ToChannelVideoSelectorOutput() ChannelVideoSelectorOutput

func (ChannelVideoSelectorOutput) ToChannelVideoSelectorOutputWithContext

func (o ChannelVideoSelectorOutput) ToChannelVideoSelectorOutputWithContext(ctx context.Context) ChannelVideoSelectorOutput

func (ChannelVideoSelectorOutput) ToChannelVideoSelectorPtrOutput

func (o ChannelVideoSelectorOutput) ToChannelVideoSelectorPtrOutput() ChannelVideoSelectorPtrOutput

func (ChannelVideoSelectorOutput) ToChannelVideoSelectorPtrOutputWithContext

func (o ChannelVideoSelectorOutput) ToChannelVideoSelectorPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorPtrOutput

func (ChannelVideoSelectorOutput) ToOutput added in v0.76.0

type ChannelVideoSelectorPid

type ChannelVideoSelectorPid struct {
	Pid *int `pulumi:"pid"`
}

type ChannelVideoSelectorPidArgs

type ChannelVideoSelectorPidArgs struct {
	Pid pulumi.IntPtrInput `pulumi:"pid"`
}

func (ChannelVideoSelectorPidArgs) ElementType

func (ChannelVideoSelectorPidArgs) ToChannelVideoSelectorPidOutput

func (i ChannelVideoSelectorPidArgs) ToChannelVideoSelectorPidOutput() ChannelVideoSelectorPidOutput

func (ChannelVideoSelectorPidArgs) ToChannelVideoSelectorPidOutputWithContext

func (i ChannelVideoSelectorPidArgs) ToChannelVideoSelectorPidOutputWithContext(ctx context.Context) ChannelVideoSelectorPidOutput

func (ChannelVideoSelectorPidArgs) ToChannelVideoSelectorPidPtrOutput

func (i ChannelVideoSelectorPidArgs) ToChannelVideoSelectorPidPtrOutput() ChannelVideoSelectorPidPtrOutput

func (ChannelVideoSelectorPidArgs) ToChannelVideoSelectorPidPtrOutputWithContext

func (i ChannelVideoSelectorPidArgs) ToChannelVideoSelectorPidPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorPidPtrOutput

func (ChannelVideoSelectorPidArgs) ToOutput added in v0.76.0

type ChannelVideoSelectorPidInput

type ChannelVideoSelectorPidInput interface {
	pulumi.Input

	ToChannelVideoSelectorPidOutput() ChannelVideoSelectorPidOutput
	ToChannelVideoSelectorPidOutputWithContext(context.Context) ChannelVideoSelectorPidOutput
}

ChannelVideoSelectorPidInput is an input type that accepts ChannelVideoSelectorPidArgs and ChannelVideoSelectorPidOutput values. You can construct a concrete instance of `ChannelVideoSelectorPidInput` via:

ChannelVideoSelectorPidArgs{...}

type ChannelVideoSelectorPidOutput

type ChannelVideoSelectorPidOutput struct{ *pulumi.OutputState }

func (ChannelVideoSelectorPidOutput) ElementType

func (ChannelVideoSelectorPidOutput) Pid

func (ChannelVideoSelectorPidOutput) ToChannelVideoSelectorPidOutput

func (o ChannelVideoSelectorPidOutput) ToChannelVideoSelectorPidOutput() ChannelVideoSelectorPidOutput

func (ChannelVideoSelectorPidOutput) ToChannelVideoSelectorPidOutputWithContext

func (o ChannelVideoSelectorPidOutput) ToChannelVideoSelectorPidOutputWithContext(ctx context.Context) ChannelVideoSelectorPidOutput

func (ChannelVideoSelectorPidOutput) ToChannelVideoSelectorPidPtrOutput

func (o ChannelVideoSelectorPidOutput) ToChannelVideoSelectorPidPtrOutput() ChannelVideoSelectorPidPtrOutput

func (ChannelVideoSelectorPidOutput) ToChannelVideoSelectorPidPtrOutputWithContext

func (o ChannelVideoSelectorPidOutput) ToChannelVideoSelectorPidPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorPidPtrOutput

func (ChannelVideoSelectorPidOutput) ToOutput added in v0.76.0

type ChannelVideoSelectorPidPtrInput

type ChannelVideoSelectorPidPtrInput interface {
	pulumi.Input

	ToChannelVideoSelectorPidPtrOutput() ChannelVideoSelectorPidPtrOutput
	ToChannelVideoSelectorPidPtrOutputWithContext(context.Context) ChannelVideoSelectorPidPtrOutput
}

ChannelVideoSelectorPidPtrInput is an input type that accepts ChannelVideoSelectorPidArgs, ChannelVideoSelectorPidPtr and ChannelVideoSelectorPidPtrOutput values. You can construct a concrete instance of `ChannelVideoSelectorPidPtrInput` via:

        ChannelVideoSelectorPidArgs{...}

or:

        nil

type ChannelVideoSelectorPidPtrOutput

type ChannelVideoSelectorPidPtrOutput struct{ *pulumi.OutputState }

func (ChannelVideoSelectorPidPtrOutput) Elem

func (ChannelVideoSelectorPidPtrOutput) ElementType

func (ChannelVideoSelectorPidPtrOutput) Pid

func (ChannelVideoSelectorPidPtrOutput) ToChannelVideoSelectorPidPtrOutput

func (o ChannelVideoSelectorPidPtrOutput) ToChannelVideoSelectorPidPtrOutput() ChannelVideoSelectorPidPtrOutput

func (ChannelVideoSelectorPidPtrOutput) ToChannelVideoSelectorPidPtrOutputWithContext

func (o ChannelVideoSelectorPidPtrOutput) ToChannelVideoSelectorPidPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorPidPtrOutput

func (ChannelVideoSelectorPidPtrOutput) ToOutput added in v0.76.0

type ChannelVideoSelectorProgramId

type ChannelVideoSelectorProgramId struct {
	ProgramId *int `pulumi:"programId"`
}

type ChannelVideoSelectorProgramIdArgs

type ChannelVideoSelectorProgramIdArgs struct {
	ProgramId pulumi.IntPtrInput `pulumi:"programId"`
}

func (ChannelVideoSelectorProgramIdArgs) ElementType

func (ChannelVideoSelectorProgramIdArgs) ToChannelVideoSelectorProgramIdOutput

func (i ChannelVideoSelectorProgramIdArgs) ToChannelVideoSelectorProgramIdOutput() ChannelVideoSelectorProgramIdOutput

func (ChannelVideoSelectorProgramIdArgs) ToChannelVideoSelectorProgramIdOutputWithContext

func (i ChannelVideoSelectorProgramIdArgs) ToChannelVideoSelectorProgramIdOutputWithContext(ctx context.Context) ChannelVideoSelectorProgramIdOutput

func (ChannelVideoSelectorProgramIdArgs) ToChannelVideoSelectorProgramIdPtrOutput

func (i ChannelVideoSelectorProgramIdArgs) ToChannelVideoSelectorProgramIdPtrOutput() ChannelVideoSelectorProgramIdPtrOutput

func (ChannelVideoSelectorProgramIdArgs) ToChannelVideoSelectorProgramIdPtrOutputWithContext

func (i ChannelVideoSelectorProgramIdArgs) ToChannelVideoSelectorProgramIdPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorProgramIdPtrOutput

func (ChannelVideoSelectorProgramIdArgs) ToOutput added in v0.76.0

type ChannelVideoSelectorProgramIdInput

type ChannelVideoSelectorProgramIdInput interface {
	pulumi.Input

	ToChannelVideoSelectorProgramIdOutput() ChannelVideoSelectorProgramIdOutput
	ToChannelVideoSelectorProgramIdOutputWithContext(context.Context) ChannelVideoSelectorProgramIdOutput
}

ChannelVideoSelectorProgramIdInput is an input type that accepts ChannelVideoSelectorProgramIdArgs and ChannelVideoSelectorProgramIdOutput values. You can construct a concrete instance of `ChannelVideoSelectorProgramIdInput` via:

ChannelVideoSelectorProgramIdArgs{...}

type ChannelVideoSelectorProgramIdOutput

type ChannelVideoSelectorProgramIdOutput struct{ *pulumi.OutputState }

func (ChannelVideoSelectorProgramIdOutput) ElementType

func (ChannelVideoSelectorProgramIdOutput) ProgramId

func (ChannelVideoSelectorProgramIdOutput) ToChannelVideoSelectorProgramIdOutput

func (o ChannelVideoSelectorProgramIdOutput) ToChannelVideoSelectorProgramIdOutput() ChannelVideoSelectorProgramIdOutput

func (ChannelVideoSelectorProgramIdOutput) ToChannelVideoSelectorProgramIdOutputWithContext

func (o ChannelVideoSelectorProgramIdOutput) ToChannelVideoSelectorProgramIdOutputWithContext(ctx context.Context) ChannelVideoSelectorProgramIdOutput

func (ChannelVideoSelectorProgramIdOutput) ToChannelVideoSelectorProgramIdPtrOutput

func (o ChannelVideoSelectorProgramIdOutput) ToChannelVideoSelectorProgramIdPtrOutput() ChannelVideoSelectorProgramIdPtrOutput

func (ChannelVideoSelectorProgramIdOutput) ToChannelVideoSelectorProgramIdPtrOutputWithContext

func (o ChannelVideoSelectorProgramIdOutput) ToChannelVideoSelectorProgramIdPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorProgramIdPtrOutput

func (ChannelVideoSelectorProgramIdOutput) ToOutput added in v0.76.0

type ChannelVideoSelectorProgramIdPtrInput

type ChannelVideoSelectorProgramIdPtrInput interface {
	pulumi.Input

	ToChannelVideoSelectorProgramIdPtrOutput() ChannelVideoSelectorProgramIdPtrOutput
	ToChannelVideoSelectorProgramIdPtrOutputWithContext(context.Context) ChannelVideoSelectorProgramIdPtrOutput
}

ChannelVideoSelectorProgramIdPtrInput is an input type that accepts ChannelVideoSelectorProgramIdArgs, ChannelVideoSelectorProgramIdPtr and ChannelVideoSelectorProgramIdPtrOutput values. You can construct a concrete instance of `ChannelVideoSelectorProgramIdPtrInput` via:

        ChannelVideoSelectorProgramIdArgs{...}

or:

        nil

type ChannelVideoSelectorProgramIdPtrOutput

type ChannelVideoSelectorProgramIdPtrOutput struct{ *pulumi.OutputState }

func (ChannelVideoSelectorProgramIdPtrOutput) Elem

func (ChannelVideoSelectorProgramIdPtrOutput) ElementType

func (ChannelVideoSelectorProgramIdPtrOutput) ProgramId

func (ChannelVideoSelectorProgramIdPtrOutput) ToChannelVideoSelectorProgramIdPtrOutput

func (o ChannelVideoSelectorProgramIdPtrOutput) ToChannelVideoSelectorProgramIdPtrOutput() ChannelVideoSelectorProgramIdPtrOutput

func (ChannelVideoSelectorProgramIdPtrOutput) ToChannelVideoSelectorProgramIdPtrOutputWithContext

func (o ChannelVideoSelectorProgramIdPtrOutput) ToChannelVideoSelectorProgramIdPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorProgramIdPtrOutput

func (ChannelVideoSelectorProgramIdPtrOutput) ToOutput added in v0.76.0

type ChannelVideoSelectorPtrInput

type ChannelVideoSelectorPtrInput interface {
	pulumi.Input

	ToChannelVideoSelectorPtrOutput() ChannelVideoSelectorPtrOutput
	ToChannelVideoSelectorPtrOutputWithContext(context.Context) ChannelVideoSelectorPtrOutput
}

ChannelVideoSelectorPtrInput is an input type that accepts ChannelVideoSelectorArgs, ChannelVideoSelectorPtr and ChannelVideoSelectorPtrOutput values. You can construct a concrete instance of `ChannelVideoSelectorPtrInput` via:

        ChannelVideoSelectorArgs{...}

or:

        nil

type ChannelVideoSelectorPtrOutput

type ChannelVideoSelectorPtrOutput struct{ *pulumi.OutputState }

func (ChannelVideoSelectorPtrOutput) ColorSpace

func (ChannelVideoSelectorPtrOutput) ColorSpaceSettings

func (ChannelVideoSelectorPtrOutput) ColorSpaceUsage

func (ChannelVideoSelectorPtrOutput) Elem

func (ChannelVideoSelectorPtrOutput) ElementType

func (ChannelVideoSelectorPtrOutput) SelectorSettings

func (ChannelVideoSelectorPtrOutput) ToChannelVideoSelectorPtrOutput

func (o ChannelVideoSelectorPtrOutput) ToChannelVideoSelectorPtrOutput() ChannelVideoSelectorPtrOutput

func (ChannelVideoSelectorPtrOutput) ToChannelVideoSelectorPtrOutputWithContext

func (o ChannelVideoSelectorPtrOutput) ToChannelVideoSelectorPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorPtrOutput

func (ChannelVideoSelectorPtrOutput) ToOutput added in v0.76.0

type ChannelVideoSelectorSettings

type ChannelVideoSelectorSettings struct {
	VideoSelectorPid       *ChannelVideoSelectorPid       `pulumi:"videoSelectorPid"`
	VideoSelectorProgramId *ChannelVideoSelectorProgramId `pulumi:"videoSelectorProgramId"`
}

type ChannelVideoSelectorSettingsArgs

type ChannelVideoSelectorSettingsArgs struct {
	VideoSelectorPid       ChannelVideoSelectorPidPtrInput       `pulumi:"videoSelectorPid"`
	VideoSelectorProgramId ChannelVideoSelectorProgramIdPtrInput `pulumi:"videoSelectorProgramId"`
}

func (ChannelVideoSelectorSettingsArgs) ElementType

func (ChannelVideoSelectorSettingsArgs) ToChannelVideoSelectorSettingsOutput

func (i ChannelVideoSelectorSettingsArgs) ToChannelVideoSelectorSettingsOutput() ChannelVideoSelectorSettingsOutput

func (ChannelVideoSelectorSettingsArgs) ToChannelVideoSelectorSettingsOutputWithContext

func (i ChannelVideoSelectorSettingsArgs) ToChannelVideoSelectorSettingsOutputWithContext(ctx context.Context) ChannelVideoSelectorSettingsOutput

func (ChannelVideoSelectorSettingsArgs) ToChannelVideoSelectorSettingsPtrOutput

func (i ChannelVideoSelectorSettingsArgs) ToChannelVideoSelectorSettingsPtrOutput() ChannelVideoSelectorSettingsPtrOutput

func (ChannelVideoSelectorSettingsArgs) ToChannelVideoSelectorSettingsPtrOutputWithContext

func (i ChannelVideoSelectorSettingsArgs) ToChannelVideoSelectorSettingsPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorSettingsPtrOutput

func (ChannelVideoSelectorSettingsArgs) ToOutput added in v0.76.0

type ChannelVideoSelectorSettingsInput

type ChannelVideoSelectorSettingsInput interface {
	pulumi.Input

	ToChannelVideoSelectorSettingsOutput() ChannelVideoSelectorSettingsOutput
	ToChannelVideoSelectorSettingsOutputWithContext(context.Context) ChannelVideoSelectorSettingsOutput
}

ChannelVideoSelectorSettingsInput is an input type that accepts ChannelVideoSelectorSettingsArgs and ChannelVideoSelectorSettingsOutput values. You can construct a concrete instance of `ChannelVideoSelectorSettingsInput` via:

ChannelVideoSelectorSettingsArgs{...}

type ChannelVideoSelectorSettingsOutput

type ChannelVideoSelectorSettingsOutput struct{ *pulumi.OutputState }

func (ChannelVideoSelectorSettingsOutput) ElementType

func (ChannelVideoSelectorSettingsOutput) ToChannelVideoSelectorSettingsOutput

func (o ChannelVideoSelectorSettingsOutput) ToChannelVideoSelectorSettingsOutput() ChannelVideoSelectorSettingsOutput

func (ChannelVideoSelectorSettingsOutput) ToChannelVideoSelectorSettingsOutputWithContext

func (o ChannelVideoSelectorSettingsOutput) ToChannelVideoSelectorSettingsOutputWithContext(ctx context.Context) ChannelVideoSelectorSettingsOutput

func (ChannelVideoSelectorSettingsOutput) ToChannelVideoSelectorSettingsPtrOutput

func (o ChannelVideoSelectorSettingsOutput) ToChannelVideoSelectorSettingsPtrOutput() ChannelVideoSelectorSettingsPtrOutput

func (ChannelVideoSelectorSettingsOutput) ToChannelVideoSelectorSettingsPtrOutputWithContext

func (o ChannelVideoSelectorSettingsOutput) ToChannelVideoSelectorSettingsPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorSettingsPtrOutput

func (ChannelVideoSelectorSettingsOutput) ToOutput added in v0.76.0

func (ChannelVideoSelectorSettingsOutput) VideoSelectorPid

func (ChannelVideoSelectorSettingsOutput) VideoSelectorProgramId

type ChannelVideoSelectorSettingsPtrInput

type ChannelVideoSelectorSettingsPtrInput interface {
	pulumi.Input

	ToChannelVideoSelectorSettingsPtrOutput() ChannelVideoSelectorSettingsPtrOutput
	ToChannelVideoSelectorSettingsPtrOutputWithContext(context.Context) ChannelVideoSelectorSettingsPtrOutput
}

ChannelVideoSelectorSettingsPtrInput is an input type that accepts ChannelVideoSelectorSettingsArgs, ChannelVideoSelectorSettingsPtr and ChannelVideoSelectorSettingsPtrOutput values. You can construct a concrete instance of `ChannelVideoSelectorSettingsPtrInput` via:

        ChannelVideoSelectorSettingsArgs{...}

or:

        nil

type ChannelVideoSelectorSettingsPtrOutput

type ChannelVideoSelectorSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelVideoSelectorSettingsPtrOutput) Elem

func (ChannelVideoSelectorSettingsPtrOutput) ElementType

func (ChannelVideoSelectorSettingsPtrOutput) ToChannelVideoSelectorSettingsPtrOutput

func (o ChannelVideoSelectorSettingsPtrOutput) ToChannelVideoSelectorSettingsPtrOutput() ChannelVideoSelectorSettingsPtrOutput

func (ChannelVideoSelectorSettingsPtrOutput) ToChannelVideoSelectorSettingsPtrOutputWithContext

func (o ChannelVideoSelectorSettingsPtrOutput) ToChannelVideoSelectorSettingsPtrOutputWithContext(ctx context.Context) ChannelVideoSelectorSettingsPtrOutput

func (ChannelVideoSelectorSettingsPtrOutput) ToOutput added in v0.76.0

func (ChannelVideoSelectorSettingsPtrOutput) VideoSelectorPid

func (ChannelVideoSelectorSettingsPtrOutput) VideoSelectorProgramId

type ChannelVpcOutputSettings

type ChannelVpcOutputSettings struct {
	PublicAddressAllocationIds []string `pulumi:"publicAddressAllocationIds"`
	SecurityGroupIds           []string `pulumi:"securityGroupIds"`
	SubnetIds                  []string `pulumi:"subnetIds"`
}

type ChannelVpcOutputSettingsArgs

type ChannelVpcOutputSettingsArgs struct {
	PublicAddressAllocationIds pulumi.StringArrayInput `pulumi:"publicAddressAllocationIds"`
	SecurityGroupIds           pulumi.StringArrayInput `pulumi:"securityGroupIds"`
	SubnetIds                  pulumi.StringArrayInput `pulumi:"subnetIds"`
}

func (ChannelVpcOutputSettingsArgs) ElementType

func (ChannelVpcOutputSettingsArgs) ToChannelVpcOutputSettingsOutput

func (i ChannelVpcOutputSettingsArgs) ToChannelVpcOutputSettingsOutput() ChannelVpcOutputSettingsOutput

func (ChannelVpcOutputSettingsArgs) ToChannelVpcOutputSettingsOutputWithContext

func (i ChannelVpcOutputSettingsArgs) ToChannelVpcOutputSettingsOutputWithContext(ctx context.Context) ChannelVpcOutputSettingsOutput

func (ChannelVpcOutputSettingsArgs) ToChannelVpcOutputSettingsPtrOutput

func (i ChannelVpcOutputSettingsArgs) ToChannelVpcOutputSettingsPtrOutput() ChannelVpcOutputSettingsPtrOutput

func (ChannelVpcOutputSettingsArgs) ToChannelVpcOutputSettingsPtrOutputWithContext

func (i ChannelVpcOutputSettingsArgs) ToChannelVpcOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelVpcOutputSettingsPtrOutput

func (ChannelVpcOutputSettingsArgs) ToOutput added in v0.76.0

type ChannelVpcOutputSettingsInput

type ChannelVpcOutputSettingsInput interface {
	pulumi.Input

	ToChannelVpcOutputSettingsOutput() ChannelVpcOutputSettingsOutput
	ToChannelVpcOutputSettingsOutputWithContext(context.Context) ChannelVpcOutputSettingsOutput
}

ChannelVpcOutputSettingsInput is an input type that accepts ChannelVpcOutputSettingsArgs and ChannelVpcOutputSettingsOutput values. You can construct a concrete instance of `ChannelVpcOutputSettingsInput` via:

ChannelVpcOutputSettingsArgs{...}

type ChannelVpcOutputSettingsOutput

type ChannelVpcOutputSettingsOutput struct{ *pulumi.OutputState }

func (ChannelVpcOutputSettingsOutput) ElementType

func (ChannelVpcOutputSettingsOutput) PublicAddressAllocationIds

func (o ChannelVpcOutputSettingsOutput) PublicAddressAllocationIds() pulumi.StringArrayOutput

func (ChannelVpcOutputSettingsOutput) SecurityGroupIds

func (ChannelVpcOutputSettingsOutput) SubnetIds

func (ChannelVpcOutputSettingsOutput) ToChannelVpcOutputSettingsOutput

func (o ChannelVpcOutputSettingsOutput) ToChannelVpcOutputSettingsOutput() ChannelVpcOutputSettingsOutput

func (ChannelVpcOutputSettingsOutput) ToChannelVpcOutputSettingsOutputWithContext

func (o ChannelVpcOutputSettingsOutput) ToChannelVpcOutputSettingsOutputWithContext(ctx context.Context) ChannelVpcOutputSettingsOutput

func (ChannelVpcOutputSettingsOutput) ToChannelVpcOutputSettingsPtrOutput

func (o ChannelVpcOutputSettingsOutput) ToChannelVpcOutputSettingsPtrOutput() ChannelVpcOutputSettingsPtrOutput

func (ChannelVpcOutputSettingsOutput) ToChannelVpcOutputSettingsPtrOutputWithContext

func (o ChannelVpcOutputSettingsOutput) ToChannelVpcOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelVpcOutputSettingsPtrOutput

func (ChannelVpcOutputSettingsOutput) ToOutput added in v0.76.0

type ChannelVpcOutputSettingsPtrInput

type ChannelVpcOutputSettingsPtrInput interface {
	pulumi.Input

	ToChannelVpcOutputSettingsPtrOutput() ChannelVpcOutputSettingsPtrOutput
	ToChannelVpcOutputSettingsPtrOutputWithContext(context.Context) ChannelVpcOutputSettingsPtrOutput
}

ChannelVpcOutputSettingsPtrInput is an input type that accepts ChannelVpcOutputSettingsArgs, ChannelVpcOutputSettingsPtr and ChannelVpcOutputSettingsPtrOutput values. You can construct a concrete instance of `ChannelVpcOutputSettingsPtrInput` via:

        ChannelVpcOutputSettingsArgs{...}

or:

        nil

type ChannelVpcOutputSettingsPtrOutput

type ChannelVpcOutputSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelVpcOutputSettingsPtrOutput) Elem

func (ChannelVpcOutputSettingsPtrOutput) ElementType

func (ChannelVpcOutputSettingsPtrOutput) PublicAddressAllocationIds

func (o ChannelVpcOutputSettingsPtrOutput) PublicAddressAllocationIds() pulumi.StringArrayOutput

func (ChannelVpcOutputSettingsPtrOutput) SecurityGroupIds

func (ChannelVpcOutputSettingsPtrOutput) SubnetIds

func (ChannelVpcOutputSettingsPtrOutput) ToChannelVpcOutputSettingsPtrOutput

func (o ChannelVpcOutputSettingsPtrOutput) ToChannelVpcOutputSettingsPtrOutput() ChannelVpcOutputSettingsPtrOutput

func (ChannelVpcOutputSettingsPtrOutput) ToChannelVpcOutputSettingsPtrOutputWithContext

func (o ChannelVpcOutputSettingsPtrOutput) ToChannelVpcOutputSettingsPtrOutputWithContext(ctx context.Context) ChannelVpcOutputSettingsPtrOutput

func (ChannelVpcOutputSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelWavSettings

type ChannelWavSettings struct {
	BitDepth   *float64 `pulumi:"bitDepth"`
	CodingMode *string  `pulumi:"codingMode"`
	SampleRate *float64 `pulumi:"sampleRate"`
}

type ChannelWavSettingsArgs

type ChannelWavSettingsArgs struct {
	BitDepth   pulumi.Float64PtrInput `pulumi:"bitDepth"`
	CodingMode pulumi.StringPtrInput  `pulumi:"codingMode"`
	SampleRate pulumi.Float64PtrInput `pulumi:"sampleRate"`
}

func (ChannelWavSettingsArgs) ElementType

func (ChannelWavSettingsArgs) ElementType() reflect.Type

func (ChannelWavSettingsArgs) ToChannelWavSettingsOutput

func (i ChannelWavSettingsArgs) ToChannelWavSettingsOutput() ChannelWavSettingsOutput

func (ChannelWavSettingsArgs) ToChannelWavSettingsOutputWithContext

func (i ChannelWavSettingsArgs) ToChannelWavSettingsOutputWithContext(ctx context.Context) ChannelWavSettingsOutput

func (ChannelWavSettingsArgs) ToChannelWavSettingsPtrOutput

func (i ChannelWavSettingsArgs) ToChannelWavSettingsPtrOutput() ChannelWavSettingsPtrOutput

func (ChannelWavSettingsArgs) ToChannelWavSettingsPtrOutputWithContext

func (i ChannelWavSettingsArgs) ToChannelWavSettingsPtrOutputWithContext(ctx context.Context) ChannelWavSettingsPtrOutput

func (ChannelWavSettingsArgs) ToOutput added in v0.76.0

type ChannelWavSettingsInput

type ChannelWavSettingsInput interface {
	pulumi.Input

	ToChannelWavSettingsOutput() ChannelWavSettingsOutput
	ToChannelWavSettingsOutputWithContext(context.Context) ChannelWavSettingsOutput
}

ChannelWavSettingsInput is an input type that accepts ChannelWavSettingsArgs and ChannelWavSettingsOutput values. You can construct a concrete instance of `ChannelWavSettingsInput` via:

ChannelWavSettingsArgs{...}

type ChannelWavSettingsOutput

type ChannelWavSettingsOutput struct{ *pulumi.OutputState }

func (ChannelWavSettingsOutput) BitDepth

func (ChannelWavSettingsOutput) CodingMode

func (ChannelWavSettingsOutput) ElementType

func (ChannelWavSettingsOutput) ElementType() reflect.Type

func (ChannelWavSettingsOutput) SampleRate

func (ChannelWavSettingsOutput) ToChannelWavSettingsOutput

func (o ChannelWavSettingsOutput) ToChannelWavSettingsOutput() ChannelWavSettingsOutput

func (ChannelWavSettingsOutput) ToChannelWavSettingsOutputWithContext

func (o ChannelWavSettingsOutput) ToChannelWavSettingsOutputWithContext(ctx context.Context) ChannelWavSettingsOutput

func (ChannelWavSettingsOutput) ToChannelWavSettingsPtrOutput

func (o ChannelWavSettingsOutput) ToChannelWavSettingsPtrOutput() ChannelWavSettingsPtrOutput

func (ChannelWavSettingsOutput) ToChannelWavSettingsPtrOutputWithContext

func (o ChannelWavSettingsOutput) ToChannelWavSettingsPtrOutputWithContext(ctx context.Context) ChannelWavSettingsPtrOutput

func (ChannelWavSettingsOutput) ToOutput added in v0.76.0

type ChannelWavSettingsPtrInput

type ChannelWavSettingsPtrInput interface {
	pulumi.Input

	ToChannelWavSettingsPtrOutput() ChannelWavSettingsPtrOutput
	ToChannelWavSettingsPtrOutputWithContext(context.Context) ChannelWavSettingsPtrOutput
}

ChannelWavSettingsPtrInput is an input type that accepts ChannelWavSettingsArgs, ChannelWavSettingsPtr and ChannelWavSettingsPtrOutput values. You can construct a concrete instance of `ChannelWavSettingsPtrInput` via:

        ChannelWavSettingsArgs{...}

or:

        nil

type ChannelWavSettingsPtrOutput

type ChannelWavSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelWavSettingsPtrOutput) BitDepth

func (ChannelWavSettingsPtrOutput) CodingMode

func (ChannelWavSettingsPtrOutput) Elem

func (ChannelWavSettingsPtrOutput) ElementType

func (ChannelWavSettingsPtrOutput) SampleRate

func (ChannelWavSettingsPtrOutput) ToChannelWavSettingsPtrOutput

func (o ChannelWavSettingsPtrOutput) ToChannelWavSettingsPtrOutput() ChannelWavSettingsPtrOutput

func (ChannelWavSettingsPtrOutput) ToChannelWavSettingsPtrOutputWithContext

func (o ChannelWavSettingsPtrOutput) ToChannelWavSettingsPtrOutputWithContext(ctx context.Context) ChannelWavSettingsPtrOutput

func (ChannelWavSettingsPtrOutput) ToOutput added in v0.76.0

type ChannelWebvttDestinationSettings

type ChannelWebvttDestinationSettings struct {
	StyleControl *string `pulumi:"styleControl"`
}

type ChannelWebvttDestinationSettingsArgs

type ChannelWebvttDestinationSettingsArgs struct {
	StyleControl pulumi.StringPtrInput `pulumi:"styleControl"`
}

func (ChannelWebvttDestinationSettingsArgs) ElementType

func (ChannelWebvttDestinationSettingsArgs) ToChannelWebvttDestinationSettingsOutput

func (i ChannelWebvttDestinationSettingsArgs) ToChannelWebvttDestinationSettingsOutput() ChannelWebvttDestinationSettingsOutput

func (ChannelWebvttDestinationSettingsArgs) ToChannelWebvttDestinationSettingsOutputWithContext

func (i ChannelWebvttDestinationSettingsArgs) ToChannelWebvttDestinationSettingsOutputWithContext(ctx context.Context) ChannelWebvttDestinationSettingsOutput

func (ChannelWebvttDestinationSettingsArgs) ToChannelWebvttDestinationSettingsPtrOutput

func (i ChannelWebvttDestinationSettingsArgs) ToChannelWebvttDestinationSettingsPtrOutput() ChannelWebvttDestinationSettingsPtrOutput

func (ChannelWebvttDestinationSettingsArgs) ToChannelWebvttDestinationSettingsPtrOutputWithContext

func (i ChannelWebvttDestinationSettingsArgs) ToChannelWebvttDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelWebvttDestinationSettingsPtrOutput

func (ChannelWebvttDestinationSettingsArgs) ToOutput added in v0.76.0

type ChannelWebvttDestinationSettingsInput

type ChannelWebvttDestinationSettingsInput interface {
	pulumi.Input

	ToChannelWebvttDestinationSettingsOutput() ChannelWebvttDestinationSettingsOutput
	ToChannelWebvttDestinationSettingsOutputWithContext(context.Context) ChannelWebvttDestinationSettingsOutput
}

ChannelWebvttDestinationSettingsInput is an input type that accepts ChannelWebvttDestinationSettingsArgs and ChannelWebvttDestinationSettingsOutput values. You can construct a concrete instance of `ChannelWebvttDestinationSettingsInput` via:

ChannelWebvttDestinationSettingsArgs{...}

type ChannelWebvttDestinationSettingsOutput

type ChannelWebvttDestinationSettingsOutput struct{ *pulumi.OutputState }

func (ChannelWebvttDestinationSettingsOutput) ElementType

func (ChannelWebvttDestinationSettingsOutput) StyleControl added in v0.9.0

func (ChannelWebvttDestinationSettingsOutput) ToChannelWebvttDestinationSettingsOutput

func (o ChannelWebvttDestinationSettingsOutput) ToChannelWebvttDestinationSettingsOutput() ChannelWebvttDestinationSettingsOutput

func (ChannelWebvttDestinationSettingsOutput) ToChannelWebvttDestinationSettingsOutputWithContext

func (o ChannelWebvttDestinationSettingsOutput) ToChannelWebvttDestinationSettingsOutputWithContext(ctx context.Context) ChannelWebvttDestinationSettingsOutput

func (ChannelWebvttDestinationSettingsOutput) ToChannelWebvttDestinationSettingsPtrOutput

func (o ChannelWebvttDestinationSettingsOutput) ToChannelWebvttDestinationSettingsPtrOutput() ChannelWebvttDestinationSettingsPtrOutput

func (ChannelWebvttDestinationSettingsOutput) ToChannelWebvttDestinationSettingsPtrOutputWithContext

func (o ChannelWebvttDestinationSettingsOutput) ToChannelWebvttDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelWebvttDestinationSettingsPtrOutput

func (ChannelWebvttDestinationSettingsOutput) ToOutput added in v0.76.0

type ChannelWebvttDestinationSettingsPtrInput

type ChannelWebvttDestinationSettingsPtrInput interface {
	pulumi.Input

	ToChannelWebvttDestinationSettingsPtrOutput() ChannelWebvttDestinationSettingsPtrOutput
	ToChannelWebvttDestinationSettingsPtrOutputWithContext(context.Context) ChannelWebvttDestinationSettingsPtrOutput
}

ChannelWebvttDestinationSettingsPtrInput is an input type that accepts ChannelWebvttDestinationSettingsArgs, ChannelWebvttDestinationSettingsPtr and ChannelWebvttDestinationSettingsPtrOutput values. You can construct a concrete instance of `ChannelWebvttDestinationSettingsPtrInput` via:

        ChannelWebvttDestinationSettingsArgs{...}

or:

        nil

type ChannelWebvttDestinationSettingsPtrOutput

type ChannelWebvttDestinationSettingsPtrOutput struct{ *pulumi.OutputState }

func (ChannelWebvttDestinationSettingsPtrOutput) Elem

func (ChannelWebvttDestinationSettingsPtrOutput) ElementType

func (ChannelWebvttDestinationSettingsPtrOutput) StyleControl added in v0.9.0

func (ChannelWebvttDestinationSettingsPtrOutput) ToChannelWebvttDestinationSettingsPtrOutput

func (o ChannelWebvttDestinationSettingsPtrOutput) ToChannelWebvttDestinationSettingsPtrOutput() ChannelWebvttDestinationSettingsPtrOutput

func (ChannelWebvttDestinationSettingsPtrOutput) ToChannelWebvttDestinationSettingsPtrOutputWithContext

func (o ChannelWebvttDestinationSettingsPtrOutput) ToChannelWebvttDestinationSettingsPtrOutputWithContext(ctx context.Context) ChannelWebvttDestinationSettingsPtrOutput

func (ChannelWebvttDestinationSettingsPtrOutput) ToOutput added in v0.76.0

type Input deprecated

type Input struct {
	pulumi.CustomResourceState

	Arn                 pulumi.StringOutput                     `pulumi:"arn"`
	Destinations        InputDestinationRequestArrayOutput      `pulumi:"destinations"`
	InputDevices        InputDeviceSettingsArrayOutput          `pulumi:"inputDevices"`
	InputSecurityGroups pulumi.StringArrayOutput                `pulumi:"inputSecurityGroups"`
	MediaConnectFlows   InputMediaConnectFlowRequestArrayOutput `pulumi:"mediaConnectFlows"`
	Name                pulumi.StringPtrOutput                  `pulumi:"name"`
	RoleArn             pulumi.StringPtrOutput                  `pulumi:"roleArn"`
	Sources             InputSourceRequestArrayOutput           `pulumi:"sources"`
	Tags                pulumi.AnyOutput                        `pulumi:"tags"`
	Type                pulumi.StringPtrOutput                  `pulumi:"type"`
	Vpc                 InputVpcRequestPtrOutput                `pulumi:"vpc"`
}

Resource Type definition for AWS::MediaLive::Input

Deprecated: Input is not yet supported by AWS Native, so its creation will currently fail. Please use the classic AWS provider, if possible.

func GetInput

func GetInput(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *InputState, opts ...pulumi.ResourceOption) (*Input, error)

GetInput gets an existing Input resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewInput

func NewInput(ctx *pulumi.Context,
	name string, args *InputArgs, opts ...pulumi.ResourceOption) (*Input, error)

NewInput registers a new resource with the given unique name, arguments, and options.

func (*Input) ElementType

func (*Input) ElementType() reflect.Type

func (*Input) ToInputOutput

func (i *Input) ToInputOutput() InputOutput

func (*Input) ToInputOutputWithContext

func (i *Input) ToInputOutputWithContext(ctx context.Context) InputOutput

func (*Input) ToOutput added in v0.76.0

func (i *Input) ToOutput(ctx context.Context) pulumix.Output[*Input]

type InputArgs

The set of arguments for constructing a Input resource.

func (InputArgs) ElementType

func (InputArgs) ElementType() reflect.Type

type InputDestinationRequest added in v0.2.0

type InputDestinationRequest struct {
	StreamName *string `pulumi:"streamName"`
}

type InputDestinationRequestArgs added in v0.2.0

type InputDestinationRequestArgs struct {
	StreamName pulumi.StringPtrInput `pulumi:"streamName"`
}

func (InputDestinationRequestArgs) ElementType added in v0.2.0

func (InputDestinationRequestArgs) ToInputDestinationRequestOutput added in v0.2.0

func (i InputDestinationRequestArgs) ToInputDestinationRequestOutput() InputDestinationRequestOutput

func (InputDestinationRequestArgs) ToInputDestinationRequestOutputWithContext added in v0.2.0

func (i InputDestinationRequestArgs) ToInputDestinationRequestOutputWithContext(ctx context.Context) InputDestinationRequestOutput

func (InputDestinationRequestArgs) ToOutput added in v0.76.0

type InputDestinationRequestArray added in v0.2.0

type InputDestinationRequestArray []InputDestinationRequestInput

func (InputDestinationRequestArray) ElementType added in v0.2.0

func (InputDestinationRequestArray) ToInputDestinationRequestArrayOutput added in v0.2.0

func (i InputDestinationRequestArray) ToInputDestinationRequestArrayOutput() InputDestinationRequestArrayOutput

func (InputDestinationRequestArray) ToInputDestinationRequestArrayOutputWithContext added in v0.2.0

func (i InputDestinationRequestArray) ToInputDestinationRequestArrayOutputWithContext(ctx context.Context) InputDestinationRequestArrayOutput

func (InputDestinationRequestArray) ToOutput added in v0.76.0

type InputDestinationRequestArrayInput added in v0.2.0

type InputDestinationRequestArrayInput interface {
	pulumi.Input

	ToInputDestinationRequestArrayOutput() InputDestinationRequestArrayOutput
	ToInputDestinationRequestArrayOutputWithContext(context.Context) InputDestinationRequestArrayOutput
}

InputDestinationRequestArrayInput is an input type that accepts InputDestinationRequestArray and InputDestinationRequestArrayOutput values. You can construct a concrete instance of `InputDestinationRequestArrayInput` via:

InputDestinationRequestArray{ InputDestinationRequestArgs{...} }

type InputDestinationRequestArrayOutput added in v0.2.0

type InputDestinationRequestArrayOutput struct{ *pulumi.OutputState }

func (InputDestinationRequestArrayOutput) ElementType added in v0.2.0

func (InputDestinationRequestArrayOutput) Index added in v0.2.0

func (InputDestinationRequestArrayOutput) ToInputDestinationRequestArrayOutput added in v0.2.0

func (o InputDestinationRequestArrayOutput) ToInputDestinationRequestArrayOutput() InputDestinationRequestArrayOutput

func (InputDestinationRequestArrayOutput) ToInputDestinationRequestArrayOutputWithContext added in v0.2.0

func (o InputDestinationRequestArrayOutput) ToInputDestinationRequestArrayOutputWithContext(ctx context.Context) InputDestinationRequestArrayOutput

func (InputDestinationRequestArrayOutput) ToOutput added in v0.76.0

type InputDestinationRequestInput added in v0.2.0

type InputDestinationRequestInput interface {
	pulumi.Input

	ToInputDestinationRequestOutput() InputDestinationRequestOutput
	ToInputDestinationRequestOutputWithContext(context.Context) InputDestinationRequestOutput
}

InputDestinationRequestInput is an input type that accepts InputDestinationRequestArgs and InputDestinationRequestOutput values. You can construct a concrete instance of `InputDestinationRequestInput` via:

InputDestinationRequestArgs{...}

type InputDestinationRequestOutput added in v0.2.0

type InputDestinationRequestOutput struct{ *pulumi.OutputState }

func (InputDestinationRequestOutput) ElementType added in v0.2.0

func (InputDestinationRequestOutput) StreamName added in v0.2.0

func (InputDestinationRequestOutput) ToInputDestinationRequestOutput added in v0.2.0

func (o InputDestinationRequestOutput) ToInputDestinationRequestOutput() InputDestinationRequestOutput

func (InputDestinationRequestOutput) ToInputDestinationRequestOutputWithContext added in v0.2.0

func (o InputDestinationRequestOutput) ToInputDestinationRequestOutputWithContext(ctx context.Context) InputDestinationRequestOutput

func (InputDestinationRequestOutput) ToOutput added in v0.76.0

type InputDeviceSettings added in v0.2.0

type InputDeviceSettings struct {
	Id *string `pulumi:"id"`
}

type InputDeviceSettingsArgs added in v0.2.0

type InputDeviceSettingsArgs struct {
	Id pulumi.StringPtrInput `pulumi:"id"`
}

func (InputDeviceSettingsArgs) ElementType added in v0.2.0

func (InputDeviceSettingsArgs) ElementType() reflect.Type

func (InputDeviceSettingsArgs) ToInputDeviceSettingsOutput added in v0.2.0

func (i InputDeviceSettingsArgs) ToInputDeviceSettingsOutput() InputDeviceSettingsOutput

func (InputDeviceSettingsArgs) ToInputDeviceSettingsOutputWithContext added in v0.2.0

func (i InputDeviceSettingsArgs) ToInputDeviceSettingsOutputWithContext(ctx context.Context) InputDeviceSettingsOutput

func (InputDeviceSettingsArgs) ToOutput added in v0.76.0

type InputDeviceSettingsArray added in v0.2.0

type InputDeviceSettingsArray []InputDeviceSettingsInput

func (InputDeviceSettingsArray) ElementType added in v0.2.0

func (InputDeviceSettingsArray) ElementType() reflect.Type

func (InputDeviceSettingsArray) ToInputDeviceSettingsArrayOutput added in v0.2.0

func (i InputDeviceSettingsArray) ToInputDeviceSettingsArrayOutput() InputDeviceSettingsArrayOutput

func (InputDeviceSettingsArray) ToInputDeviceSettingsArrayOutputWithContext added in v0.2.0

func (i InputDeviceSettingsArray) ToInputDeviceSettingsArrayOutputWithContext(ctx context.Context) InputDeviceSettingsArrayOutput

func (InputDeviceSettingsArray) ToOutput added in v0.76.0

type InputDeviceSettingsArrayInput added in v0.2.0

type InputDeviceSettingsArrayInput interface {
	pulumi.Input

	ToInputDeviceSettingsArrayOutput() InputDeviceSettingsArrayOutput
	ToInputDeviceSettingsArrayOutputWithContext(context.Context) InputDeviceSettingsArrayOutput
}

InputDeviceSettingsArrayInput is an input type that accepts InputDeviceSettingsArray and InputDeviceSettingsArrayOutput values. You can construct a concrete instance of `InputDeviceSettingsArrayInput` via:

InputDeviceSettingsArray{ InputDeviceSettingsArgs{...} }

type InputDeviceSettingsArrayOutput added in v0.2.0

type InputDeviceSettingsArrayOutput struct{ *pulumi.OutputState }

func (InputDeviceSettingsArrayOutput) ElementType added in v0.2.0

func (InputDeviceSettingsArrayOutput) Index added in v0.2.0

func (InputDeviceSettingsArrayOutput) ToInputDeviceSettingsArrayOutput added in v0.2.0

func (o InputDeviceSettingsArrayOutput) ToInputDeviceSettingsArrayOutput() InputDeviceSettingsArrayOutput

func (InputDeviceSettingsArrayOutput) ToInputDeviceSettingsArrayOutputWithContext added in v0.2.0

func (o InputDeviceSettingsArrayOutput) ToInputDeviceSettingsArrayOutputWithContext(ctx context.Context) InputDeviceSettingsArrayOutput

func (InputDeviceSettingsArrayOutput) ToOutput added in v0.76.0

type InputDeviceSettingsInput added in v0.2.0

type InputDeviceSettingsInput interface {
	pulumi.Input

	ToInputDeviceSettingsOutput() InputDeviceSettingsOutput
	ToInputDeviceSettingsOutputWithContext(context.Context) InputDeviceSettingsOutput
}

InputDeviceSettingsInput is an input type that accepts InputDeviceSettingsArgs and InputDeviceSettingsOutput values. You can construct a concrete instance of `InputDeviceSettingsInput` via:

InputDeviceSettingsArgs{...}

type InputDeviceSettingsOutput added in v0.2.0

type InputDeviceSettingsOutput struct{ *pulumi.OutputState }

func (InputDeviceSettingsOutput) ElementType added in v0.2.0

func (InputDeviceSettingsOutput) ElementType() reflect.Type

func (InputDeviceSettingsOutput) Id added in v0.2.0

func (InputDeviceSettingsOutput) ToInputDeviceSettingsOutput added in v0.2.0

func (o InputDeviceSettingsOutput) ToInputDeviceSettingsOutput() InputDeviceSettingsOutput

func (InputDeviceSettingsOutput) ToInputDeviceSettingsOutputWithContext added in v0.2.0

func (o InputDeviceSettingsOutput) ToInputDeviceSettingsOutputWithContext(ctx context.Context) InputDeviceSettingsOutput

func (InputDeviceSettingsOutput) ToOutput added in v0.76.0

type InputInput

type InputInput interface {
	pulumi.Input

	ToInputOutput() InputOutput
	ToInputOutputWithContext(ctx context.Context) InputOutput
}

type InputMediaConnectFlowRequest

type InputMediaConnectFlowRequest struct {
	FlowArn *string `pulumi:"flowArn"`
}

type InputMediaConnectFlowRequestArgs

type InputMediaConnectFlowRequestArgs struct {
	FlowArn pulumi.StringPtrInput `pulumi:"flowArn"`
}

func (InputMediaConnectFlowRequestArgs) ElementType

func (InputMediaConnectFlowRequestArgs) ToInputMediaConnectFlowRequestOutput

func (i InputMediaConnectFlowRequestArgs) ToInputMediaConnectFlowRequestOutput() InputMediaConnectFlowRequestOutput

func (InputMediaConnectFlowRequestArgs) ToInputMediaConnectFlowRequestOutputWithContext

func (i InputMediaConnectFlowRequestArgs) ToInputMediaConnectFlowRequestOutputWithContext(ctx context.Context) InputMediaConnectFlowRequestOutput

func (InputMediaConnectFlowRequestArgs) ToOutput added in v0.76.0

type InputMediaConnectFlowRequestArray

type InputMediaConnectFlowRequestArray []InputMediaConnectFlowRequestInput

func (InputMediaConnectFlowRequestArray) ElementType

func (InputMediaConnectFlowRequestArray) ToInputMediaConnectFlowRequestArrayOutput

func (i InputMediaConnectFlowRequestArray) ToInputMediaConnectFlowRequestArrayOutput() InputMediaConnectFlowRequestArrayOutput

func (InputMediaConnectFlowRequestArray) ToInputMediaConnectFlowRequestArrayOutputWithContext

func (i InputMediaConnectFlowRequestArray) ToInputMediaConnectFlowRequestArrayOutputWithContext(ctx context.Context) InputMediaConnectFlowRequestArrayOutput

func (InputMediaConnectFlowRequestArray) ToOutput added in v0.76.0

type InputMediaConnectFlowRequestArrayInput

type InputMediaConnectFlowRequestArrayInput interface {
	pulumi.Input

	ToInputMediaConnectFlowRequestArrayOutput() InputMediaConnectFlowRequestArrayOutput
	ToInputMediaConnectFlowRequestArrayOutputWithContext(context.Context) InputMediaConnectFlowRequestArrayOutput
}

InputMediaConnectFlowRequestArrayInput is an input type that accepts InputMediaConnectFlowRequestArray and InputMediaConnectFlowRequestArrayOutput values. You can construct a concrete instance of `InputMediaConnectFlowRequestArrayInput` via:

InputMediaConnectFlowRequestArray{ InputMediaConnectFlowRequestArgs{...} }

type InputMediaConnectFlowRequestArrayOutput

type InputMediaConnectFlowRequestArrayOutput struct{ *pulumi.OutputState }

func (InputMediaConnectFlowRequestArrayOutput) ElementType

func (InputMediaConnectFlowRequestArrayOutput) Index

func (InputMediaConnectFlowRequestArrayOutput) ToInputMediaConnectFlowRequestArrayOutput

func (o InputMediaConnectFlowRequestArrayOutput) ToInputMediaConnectFlowRequestArrayOutput() InputMediaConnectFlowRequestArrayOutput

func (InputMediaConnectFlowRequestArrayOutput) ToInputMediaConnectFlowRequestArrayOutputWithContext

func (o InputMediaConnectFlowRequestArrayOutput) ToInputMediaConnectFlowRequestArrayOutputWithContext(ctx context.Context) InputMediaConnectFlowRequestArrayOutput

func (InputMediaConnectFlowRequestArrayOutput) ToOutput added in v0.76.0

type InputMediaConnectFlowRequestInput

type InputMediaConnectFlowRequestInput interface {
	pulumi.Input

	ToInputMediaConnectFlowRequestOutput() InputMediaConnectFlowRequestOutput
	ToInputMediaConnectFlowRequestOutputWithContext(context.Context) InputMediaConnectFlowRequestOutput
}

InputMediaConnectFlowRequestInput is an input type that accepts InputMediaConnectFlowRequestArgs and InputMediaConnectFlowRequestOutput values. You can construct a concrete instance of `InputMediaConnectFlowRequestInput` via:

InputMediaConnectFlowRequestArgs{...}

type InputMediaConnectFlowRequestOutput

type InputMediaConnectFlowRequestOutput struct{ *pulumi.OutputState }

func (InputMediaConnectFlowRequestOutput) ElementType

func (InputMediaConnectFlowRequestOutput) FlowArn

func (InputMediaConnectFlowRequestOutput) ToInputMediaConnectFlowRequestOutput

func (o InputMediaConnectFlowRequestOutput) ToInputMediaConnectFlowRequestOutput() InputMediaConnectFlowRequestOutput

func (InputMediaConnectFlowRequestOutput) ToInputMediaConnectFlowRequestOutputWithContext

func (o InputMediaConnectFlowRequestOutput) ToInputMediaConnectFlowRequestOutputWithContext(ctx context.Context) InputMediaConnectFlowRequestOutput

func (InputMediaConnectFlowRequestOutput) ToOutput added in v0.76.0

type InputOutput

type InputOutput struct{ *pulumi.OutputState }

func (InputOutput) Arn added in v0.17.0

func (InputOutput) Destinations added in v0.17.0

func (InputOutput) ElementType

func (InputOutput) ElementType() reflect.Type

func (InputOutput) InputDevices added in v0.17.0

func (InputOutput) InputSecurityGroups added in v0.17.0

func (o InputOutput) InputSecurityGroups() pulumi.StringArrayOutput

func (InputOutput) MediaConnectFlows added in v0.17.0

func (InputOutput) Name added in v0.17.0

func (InputOutput) RoleArn added in v0.17.0

func (o InputOutput) RoleArn() pulumi.StringPtrOutput

func (InputOutput) Sources added in v0.17.0

func (InputOutput) Tags added in v0.17.0

func (o InputOutput) Tags() pulumi.AnyOutput

func (InputOutput) ToInputOutput

func (o InputOutput) ToInputOutput() InputOutput

func (InputOutput) ToInputOutputWithContext

func (o InputOutput) ToInputOutputWithContext(ctx context.Context) InputOutput

func (InputOutput) ToOutput added in v0.76.0

func (o InputOutput) ToOutput(ctx context.Context) pulumix.Output[*Input]

func (InputOutput) Type added in v0.17.0

func (InputOutput) Vpc added in v0.17.0

type InputSecurityGroup deprecated

type InputSecurityGroup struct {
	pulumi.CustomResourceState

	Arn            pulumi.StringOutput                                 `pulumi:"arn"`
	Tags           pulumi.AnyOutput                                    `pulumi:"tags"`
	WhitelistRules InputSecurityGroupInputWhitelistRuleCidrArrayOutput `pulumi:"whitelistRules"`
}

Resource Type definition for AWS::MediaLive::InputSecurityGroup

Deprecated: InputSecurityGroup is not yet supported by AWS Native, so its creation will currently fail. Please use the classic AWS provider, if possible.

func GetInputSecurityGroup

func GetInputSecurityGroup(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *InputSecurityGroupState, opts ...pulumi.ResourceOption) (*InputSecurityGroup, error)

GetInputSecurityGroup gets an existing InputSecurityGroup resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewInputSecurityGroup

func NewInputSecurityGroup(ctx *pulumi.Context,
	name string, args *InputSecurityGroupArgs, opts ...pulumi.ResourceOption) (*InputSecurityGroup, error)

NewInputSecurityGroup registers a new resource with the given unique name, arguments, and options.

func (*InputSecurityGroup) ElementType

func (*InputSecurityGroup) ElementType() reflect.Type

func (*InputSecurityGroup) ToInputSecurityGroupOutput

func (i *InputSecurityGroup) ToInputSecurityGroupOutput() InputSecurityGroupOutput

func (*InputSecurityGroup) ToInputSecurityGroupOutputWithContext

func (i *InputSecurityGroup) ToInputSecurityGroupOutputWithContext(ctx context.Context) InputSecurityGroupOutput

func (*InputSecurityGroup) ToOutput added in v0.76.0

type InputSecurityGroupArgs

type InputSecurityGroupArgs struct {
	Tags           pulumi.Input
	WhitelistRules InputSecurityGroupInputWhitelistRuleCidrArrayInput
}

The set of arguments for constructing a InputSecurityGroup resource.

func (InputSecurityGroupArgs) ElementType

func (InputSecurityGroupArgs) ElementType() reflect.Type

type InputSecurityGroupInput

type InputSecurityGroupInput interface {
	pulumi.Input

	ToInputSecurityGroupOutput() InputSecurityGroupOutput
	ToInputSecurityGroupOutputWithContext(ctx context.Context) InputSecurityGroupOutput
}

type InputSecurityGroupInputWhitelistRuleCidr

type InputSecurityGroupInputWhitelistRuleCidr struct {
	Cidr *string `pulumi:"cidr"`
}

type InputSecurityGroupInputWhitelistRuleCidrArgs

type InputSecurityGroupInputWhitelistRuleCidrArgs struct {
	Cidr pulumi.StringPtrInput `pulumi:"cidr"`
}

func (InputSecurityGroupInputWhitelistRuleCidrArgs) ElementType

func (InputSecurityGroupInputWhitelistRuleCidrArgs) ToInputSecurityGroupInputWhitelistRuleCidrOutput

func (i InputSecurityGroupInputWhitelistRuleCidrArgs) ToInputSecurityGroupInputWhitelistRuleCidrOutput() InputSecurityGroupInputWhitelistRuleCidrOutput

func (InputSecurityGroupInputWhitelistRuleCidrArgs) ToInputSecurityGroupInputWhitelistRuleCidrOutputWithContext

func (i InputSecurityGroupInputWhitelistRuleCidrArgs) ToInputSecurityGroupInputWhitelistRuleCidrOutputWithContext(ctx context.Context) InputSecurityGroupInputWhitelistRuleCidrOutput

func (InputSecurityGroupInputWhitelistRuleCidrArgs) ToOutput added in v0.76.0

type InputSecurityGroupInputWhitelistRuleCidrArray

type InputSecurityGroupInputWhitelistRuleCidrArray []InputSecurityGroupInputWhitelistRuleCidrInput

func (InputSecurityGroupInputWhitelistRuleCidrArray) ElementType

func (InputSecurityGroupInputWhitelistRuleCidrArray) ToInputSecurityGroupInputWhitelistRuleCidrArrayOutput

func (i InputSecurityGroupInputWhitelistRuleCidrArray) ToInputSecurityGroupInputWhitelistRuleCidrArrayOutput() InputSecurityGroupInputWhitelistRuleCidrArrayOutput

func (InputSecurityGroupInputWhitelistRuleCidrArray) ToInputSecurityGroupInputWhitelistRuleCidrArrayOutputWithContext

func (i InputSecurityGroupInputWhitelistRuleCidrArray) ToInputSecurityGroupInputWhitelistRuleCidrArrayOutputWithContext(ctx context.Context) InputSecurityGroupInputWhitelistRuleCidrArrayOutput

func (InputSecurityGroupInputWhitelistRuleCidrArray) ToOutput added in v0.76.0

type InputSecurityGroupInputWhitelistRuleCidrArrayInput

type InputSecurityGroupInputWhitelistRuleCidrArrayInput interface {
	pulumi.Input

	ToInputSecurityGroupInputWhitelistRuleCidrArrayOutput() InputSecurityGroupInputWhitelistRuleCidrArrayOutput
	ToInputSecurityGroupInputWhitelistRuleCidrArrayOutputWithContext(context.Context) InputSecurityGroupInputWhitelistRuleCidrArrayOutput
}

InputSecurityGroupInputWhitelistRuleCidrArrayInput is an input type that accepts InputSecurityGroupInputWhitelistRuleCidrArray and InputSecurityGroupInputWhitelistRuleCidrArrayOutput values. You can construct a concrete instance of `InputSecurityGroupInputWhitelistRuleCidrArrayInput` via:

InputSecurityGroupInputWhitelistRuleCidrArray{ InputSecurityGroupInputWhitelistRuleCidrArgs{...} }

type InputSecurityGroupInputWhitelistRuleCidrArrayOutput

type InputSecurityGroupInputWhitelistRuleCidrArrayOutput struct{ *pulumi.OutputState }

func (InputSecurityGroupInputWhitelistRuleCidrArrayOutput) ElementType

func (InputSecurityGroupInputWhitelistRuleCidrArrayOutput) Index

func (InputSecurityGroupInputWhitelistRuleCidrArrayOutput) ToInputSecurityGroupInputWhitelistRuleCidrArrayOutput

func (o InputSecurityGroupInputWhitelistRuleCidrArrayOutput) ToInputSecurityGroupInputWhitelistRuleCidrArrayOutput() InputSecurityGroupInputWhitelistRuleCidrArrayOutput

func (InputSecurityGroupInputWhitelistRuleCidrArrayOutput) ToInputSecurityGroupInputWhitelistRuleCidrArrayOutputWithContext

func (o InputSecurityGroupInputWhitelistRuleCidrArrayOutput) ToInputSecurityGroupInputWhitelistRuleCidrArrayOutputWithContext(ctx context.Context) InputSecurityGroupInputWhitelistRuleCidrArrayOutput

func (InputSecurityGroupInputWhitelistRuleCidrArrayOutput) ToOutput added in v0.76.0

type InputSecurityGroupInputWhitelistRuleCidrInput

type InputSecurityGroupInputWhitelistRuleCidrInput interface {
	pulumi.Input

	ToInputSecurityGroupInputWhitelistRuleCidrOutput() InputSecurityGroupInputWhitelistRuleCidrOutput
	ToInputSecurityGroupInputWhitelistRuleCidrOutputWithContext(context.Context) InputSecurityGroupInputWhitelistRuleCidrOutput
}

InputSecurityGroupInputWhitelistRuleCidrInput is an input type that accepts InputSecurityGroupInputWhitelistRuleCidrArgs and InputSecurityGroupInputWhitelistRuleCidrOutput values. You can construct a concrete instance of `InputSecurityGroupInputWhitelistRuleCidrInput` via:

InputSecurityGroupInputWhitelistRuleCidrArgs{...}

type InputSecurityGroupInputWhitelistRuleCidrOutput

type InputSecurityGroupInputWhitelistRuleCidrOutput struct{ *pulumi.OutputState }

func (InputSecurityGroupInputWhitelistRuleCidrOutput) Cidr

func (InputSecurityGroupInputWhitelistRuleCidrOutput) ElementType

func (InputSecurityGroupInputWhitelistRuleCidrOutput) ToInputSecurityGroupInputWhitelistRuleCidrOutput

func (o InputSecurityGroupInputWhitelistRuleCidrOutput) ToInputSecurityGroupInputWhitelistRuleCidrOutput() InputSecurityGroupInputWhitelistRuleCidrOutput

func (InputSecurityGroupInputWhitelistRuleCidrOutput) ToInputSecurityGroupInputWhitelistRuleCidrOutputWithContext

func (o InputSecurityGroupInputWhitelistRuleCidrOutput) ToInputSecurityGroupInputWhitelistRuleCidrOutputWithContext(ctx context.Context) InputSecurityGroupInputWhitelistRuleCidrOutput

func (InputSecurityGroupInputWhitelistRuleCidrOutput) ToOutput added in v0.76.0

type InputSecurityGroupOutput

type InputSecurityGroupOutput struct{ *pulumi.OutputState }

func (InputSecurityGroupOutput) Arn added in v0.17.0

func (InputSecurityGroupOutput) ElementType

func (InputSecurityGroupOutput) ElementType() reflect.Type

func (InputSecurityGroupOutput) Tags added in v0.17.0

func (InputSecurityGroupOutput) ToInputSecurityGroupOutput

func (o InputSecurityGroupOutput) ToInputSecurityGroupOutput() InputSecurityGroupOutput

func (InputSecurityGroupOutput) ToInputSecurityGroupOutputWithContext

func (o InputSecurityGroupOutput) ToInputSecurityGroupOutputWithContext(ctx context.Context) InputSecurityGroupOutput

func (InputSecurityGroupOutput) ToOutput added in v0.76.0

func (InputSecurityGroupOutput) WhitelistRules added in v0.17.0

type InputSecurityGroupState

type InputSecurityGroupState struct {
}

func (InputSecurityGroupState) ElementType

func (InputSecurityGroupState) ElementType() reflect.Type

type InputSourceRequest added in v0.2.0

type InputSourceRequest struct {
	PasswordParam *string `pulumi:"passwordParam"`
	Url           *string `pulumi:"url"`
	Username      *string `pulumi:"username"`
}

type InputSourceRequestArgs added in v0.2.0

type InputSourceRequestArgs struct {
	PasswordParam pulumi.StringPtrInput `pulumi:"passwordParam"`
	Url           pulumi.StringPtrInput `pulumi:"url"`
	Username      pulumi.StringPtrInput `pulumi:"username"`
}

func (InputSourceRequestArgs) ElementType added in v0.2.0

func (InputSourceRequestArgs) ElementType() reflect.Type

func (InputSourceRequestArgs) ToInputSourceRequestOutput added in v0.2.0

func (i InputSourceRequestArgs) ToInputSourceRequestOutput() InputSourceRequestOutput

func (InputSourceRequestArgs) ToInputSourceRequestOutputWithContext added in v0.2.0

func (i InputSourceRequestArgs) ToInputSourceRequestOutputWithContext(ctx context.Context) InputSourceRequestOutput

func (InputSourceRequestArgs) ToOutput added in v0.76.0

type InputSourceRequestArray added in v0.2.0

type InputSourceRequestArray []InputSourceRequestInput

func (InputSourceRequestArray) ElementType added in v0.2.0

func (InputSourceRequestArray) ElementType() reflect.Type

func (InputSourceRequestArray) ToInputSourceRequestArrayOutput added in v0.2.0

func (i InputSourceRequestArray) ToInputSourceRequestArrayOutput() InputSourceRequestArrayOutput

func (InputSourceRequestArray) ToInputSourceRequestArrayOutputWithContext added in v0.2.0

func (i InputSourceRequestArray) ToInputSourceRequestArrayOutputWithContext(ctx context.Context) InputSourceRequestArrayOutput

func (InputSourceRequestArray) ToOutput added in v0.76.0

type InputSourceRequestArrayInput added in v0.2.0

type InputSourceRequestArrayInput interface {
	pulumi.Input

	ToInputSourceRequestArrayOutput() InputSourceRequestArrayOutput
	ToInputSourceRequestArrayOutputWithContext(context.Context) InputSourceRequestArrayOutput
}

InputSourceRequestArrayInput is an input type that accepts InputSourceRequestArray and InputSourceRequestArrayOutput values. You can construct a concrete instance of `InputSourceRequestArrayInput` via:

InputSourceRequestArray{ InputSourceRequestArgs{...} }

type InputSourceRequestArrayOutput added in v0.2.0

type InputSourceRequestArrayOutput struct{ *pulumi.OutputState }

func (InputSourceRequestArrayOutput) ElementType added in v0.2.0

func (InputSourceRequestArrayOutput) Index added in v0.2.0

func (InputSourceRequestArrayOutput) ToInputSourceRequestArrayOutput added in v0.2.0

func (o InputSourceRequestArrayOutput) ToInputSourceRequestArrayOutput() InputSourceRequestArrayOutput

func (InputSourceRequestArrayOutput) ToInputSourceRequestArrayOutputWithContext added in v0.2.0

func (o InputSourceRequestArrayOutput) ToInputSourceRequestArrayOutputWithContext(ctx context.Context) InputSourceRequestArrayOutput

func (InputSourceRequestArrayOutput) ToOutput added in v0.76.0

type InputSourceRequestInput added in v0.2.0

type InputSourceRequestInput interface {
	pulumi.Input

	ToInputSourceRequestOutput() InputSourceRequestOutput
	ToInputSourceRequestOutputWithContext(context.Context) InputSourceRequestOutput
}

InputSourceRequestInput is an input type that accepts InputSourceRequestArgs and InputSourceRequestOutput values. You can construct a concrete instance of `InputSourceRequestInput` via:

InputSourceRequestArgs{...}

type InputSourceRequestOutput added in v0.2.0

type InputSourceRequestOutput struct{ *pulumi.OutputState }

func (InputSourceRequestOutput) ElementType added in v0.2.0

func (InputSourceRequestOutput) ElementType() reflect.Type

func (InputSourceRequestOutput) PasswordParam added in v0.2.0

func (InputSourceRequestOutput) ToInputSourceRequestOutput added in v0.2.0

func (o InputSourceRequestOutput) ToInputSourceRequestOutput() InputSourceRequestOutput

func (InputSourceRequestOutput) ToInputSourceRequestOutputWithContext added in v0.2.0

func (o InputSourceRequestOutput) ToInputSourceRequestOutputWithContext(ctx context.Context) InputSourceRequestOutput

func (InputSourceRequestOutput) ToOutput added in v0.76.0

func (InputSourceRequestOutput) Url added in v0.2.0

func (InputSourceRequestOutput) Username added in v0.2.0

type InputState

type InputState struct {
}

func (InputState) ElementType

func (InputState) ElementType() reflect.Type

type InputVpcRequest added in v0.2.0

type InputVpcRequest struct {
	SecurityGroupIds []string `pulumi:"securityGroupIds"`
	SubnetIds        []string `pulumi:"subnetIds"`
}

type InputVpcRequestArgs added in v0.2.0

type InputVpcRequestArgs struct {
	SecurityGroupIds pulumi.StringArrayInput `pulumi:"securityGroupIds"`
	SubnetIds        pulumi.StringArrayInput `pulumi:"subnetIds"`
}

func (InputVpcRequestArgs) ElementType added in v0.2.0

func (InputVpcRequestArgs) ElementType() reflect.Type

func (InputVpcRequestArgs) ToInputVpcRequestOutput added in v0.2.0

func (i InputVpcRequestArgs) ToInputVpcRequestOutput() InputVpcRequestOutput

func (InputVpcRequestArgs) ToInputVpcRequestOutputWithContext added in v0.2.0

func (i InputVpcRequestArgs) ToInputVpcRequestOutputWithContext(ctx context.Context) InputVpcRequestOutput

func (InputVpcRequestArgs) ToInputVpcRequestPtrOutput added in v0.2.0

func (i InputVpcRequestArgs) ToInputVpcRequestPtrOutput() InputVpcRequestPtrOutput

func (InputVpcRequestArgs) ToInputVpcRequestPtrOutputWithContext added in v0.2.0

func (i InputVpcRequestArgs) ToInputVpcRequestPtrOutputWithContext(ctx context.Context) InputVpcRequestPtrOutput

func (InputVpcRequestArgs) ToOutput added in v0.76.0

type InputVpcRequestInput added in v0.2.0

type InputVpcRequestInput interface {
	pulumi.Input

	ToInputVpcRequestOutput() InputVpcRequestOutput
	ToInputVpcRequestOutputWithContext(context.Context) InputVpcRequestOutput
}

InputVpcRequestInput is an input type that accepts InputVpcRequestArgs and InputVpcRequestOutput values. You can construct a concrete instance of `InputVpcRequestInput` via:

InputVpcRequestArgs{...}

type InputVpcRequestOutput added in v0.2.0

type InputVpcRequestOutput struct{ *pulumi.OutputState }

func (InputVpcRequestOutput) ElementType added in v0.2.0

func (InputVpcRequestOutput) ElementType() reflect.Type

func (InputVpcRequestOutput) SecurityGroupIds added in v0.2.0

func (o InputVpcRequestOutput) SecurityGroupIds() pulumi.StringArrayOutput

func (InputVpcRequestOutput) SubnetIds added in v0.2.0

func (InputVpcRequestOutput) ToInputVpcRequestOutput added in v0.2.0

func (o InputVpcRequestOutput) ToInputVpcRequestOutput() InputVpcRequestOutput

func (InputVpcRequestOutput) ToInputVpcRequestOutputWithContext added in v0.2.0

func (o InputVpcRequestOutput) ToInputVpcRequestOutputWithContext(ctx context.Context) InputVpcRequestOutput

func (InputVpcRequestOutput) ToInputVpcRequestPtrOutput added in v0.2.0

func (o InputVpcRequestOutput) ToInputVpcRequestPtrOutput() InputVpcRequestPtrOutput

func (InputVpcRequestOutput) ToInputVpcRequestPtrOutputWithContext added in v0.2.0

func (o InputVpcRequestOutput) ToInputVpcRequestPtrOutputWithContext(ctx context.Context) InputVpcRequestPtrOutput

func (InputVpcRequestOutput) ToOutput added in v0.76.0

type InputVpcRequestPtrInput added in v0.2.0

type InputVpcRequestPtrInput interface {
	pulumi.Input

	ToInputVpcRequestPtrOutput() InputVpcRequestPtrOutput
	ToInputVpcRequestPtrOutputWithContext(context.Context) InputVpcRequestPtrOutput
}

InputVpcRequestPtrInput is an input type that accepts InputVpcRequestArgs, InputVpcRequestPtr and InputVpcRequestPtrOutput values. You can construct a concrete instance of `InputVpcRequestPtrInput` via:

        InputVpcRequestArgs{...}

or:

        nil

func InputVpcRequestPtr added in v0.2.0

func InputVpcRequestPtr(v *InputVpcRequestArgs) InputVpcRequestPtrInput

type InputVpcRequestPtrOutput added in v0.2.0

type InputVpcRequestPtrOutput struct{ *pulumi.OutputState }

func (InputVpcRequestPtrOutput) Elem added in v0.2.0

func (InputVpcRequestPtrOutput) ElementType added in v0.2.0

func (InputVpcRequestPtrOutput) ElementType() reflect.Type

func (InputVpcRequestPtrOutput) SecurityGroupIds added in v0.2.0

func (o InputVpcRequestPtrOutput) SecurityGroupIds() pulumi.StringArrayOutput

func (InputVpcRequestPtrOutput) SubnetIds added in v0.2.0

func (InputVpcRequestPtrOutput) ToInputVpcRequestPtrOutput added in v0.2.0

func (o InputVpcRequestPtrOutput) ToInputVpcRequestPtrOutput() InputVpcRequestPtrOutput

func (InputVpcRequestPtrOutput) ToInputVpcRequestPtrOutputWithContext added in v0.2.0

func (o InputVpcRequestPtrOutput) ToInputVpcRequestPtrOutputWithContext(ctx context.Context) InputVpcRequestPtrOutput

func (InputVpcRequestPtrOutput) ToOutput added in v0.76.0

type LookupChannelArgs added in v0.12.0

type LookupChannelArgs struct {
	Id string `pulumi:"id"`
}

type LookupChannelOutputArgs added in v0.12.0

type LookupChannelOutputArgs struct {
	Id pulumi.StringInput `pulumi:"id"`
}

func (LookupChannelOutputArgs) ElementType added in v0.12.0

func (LookupChannelOutputArgs) ElementType() reflect.Type

type LookupChannelResult added in v0.12.0

type LookupChannelResult struct {
	Arn                   *string                           `pulumi:"arn"`
	CdiInputSpecification *ChannelCdiInputSpecification     `pulumi:"cdiInputSpecification"`
	ChannelClass          *string                           `pulumi:"channelClass"`
	Destinations          []ChannelOutputDestination        `pulumi:"destinations"`
	EncoderSettings       *ChannelEncoderSettings           `pulumi:"encoderSettings"`
	Id                    *string                           `pulumi:"id"`
	InputAttachments      []ChannelInputAttachment          `pulumi:"inputAttachments"`
	InputSpecification    *ChannelInputSpecification        `pulumi:"inputSpecification"`
	Inputs                []string                          `pulumi:"inputs"`
	LogLevel              *string                           `pulumi:"logLevel"`
	Maintenance           *ChannelMaintenanceCreateSettings `pulumi:"maintenance"`
	Name                  *string                           `pulumi:"name"`
	RoleArn               *string                           `pulumi:"roleArn"`
	Tags                  interface{}                       `pulumi:"tags"`
}

func LookupChannel added in v0.12.0

func LookupChannel(ctx *pulumi.Context, args *LookupChannelArgs, opts ...pulumi.InvokeOption) (*LookupChannelResult, error)

Resource Type definition for AWS::MediaLive::Channel

type LookupChannelResultOutput added in v0.12.0

type LookupChannelResultOutput struct{ *pulumi.OutputState }

func LookupChannelOutput added in v0.12.0

func LookupChannelOutput(ctx *pulumi.Context, args LookupChannelOutputArgs, opts ...pulumi.InvokeOption) LookupChannelResultOutput

func (LookupChannelResultOutput) Arn added in v0.12.0

func (LookupChannelResultOutput) CdiInputSpecification added in v0.12.0

func (LookupChannelResultOutput) ChannelClass added in v0.12.0

func (LookupChannelResultOutput) Destinations added in v0.12.0

func (LookupChannelResultOutput) ElementType added in v0.12.0

func (LookupChannelResultOutput) ElementType() reflect.Type

func (LookupChannelResultOutput) EncoderSettings added in v0.12.0

func (LookupChannelResultOutput) Id added in v0.12.0

func (LookupChannelResultOutput) InputAttachments added in v0.12.0

func (LookupChannelResultOutput) InputSpecification added in v0.12.0

func (LookupChannelResultOutput) Inputs added in v0.12.0

func (LookupChannelResultOutput) LogLevel added in v0.12.0

func (LookupChannelResultOutput) Maintenance added in v0.59.0

func (LookupChannelResultOutput) Name added in v0.12.0

func (LookupChannelResultOutput) RoleArn added in v0.12.0

func (LookupChannelResultOutput) Tags added in v0.12.0

func (LookupChannelResultOutput) ToLookupChannelResultOutput added in v0.12.0

func (o LookupChannelResultOutput) ToLookupChannelResultOutput() LookupChannelResultOutput

func (LookupChannelResultOutput) ToLookupChannelResultOutputWithContext added in v0.12.0

func (o LookupChannelResultOutput) ToLookupChannelResultOutputWithContext(ctx context.Context) LookupChannelResultOutput

func (LookupChannelResultOutput) ToOutput added in v0.76.0

type LookupInputArgs added in v0.12.0

type LookupInputArgs struct {
	Id string `pulumi:"id"`
}

type LookupInputOutputArgs added in v0.12.0

type LookupInputOutputArgs struct {
	Id pulumi.StringInput `pulumi:"id"`
}

func (LookupInputOutputArgs) ElementType added in v0.12.0

func (LookupInputOutputArgs) ElementType() reflect.Type

type LookupInputResult added in v0.12.0

type LookupInputResult struct {
	Arn                 *string                        `pulumi:"arn"`
	Destinations        []InputDestinationRequest      `pulumi:"destinations"`
	Id                  *string                        `pulumi:"id"`
	InputDevices        []InputDeviceSettings          `pulumi:"inputDevices"`
	InputSecurityGroups []string                       `pulumi:"inputSecurityGroups"`
	MediaConnectFlows   []InputMediaConnectFlowRequest `pulumi:"mediaConnectFlows"`
	Name                *string                        `pulumi:"name"`
	RoleArn             *string                        `pulumi:"roleArn"`
	Sources             []InputSourceRequest           `pulumi:"sources"`
	Tags                interface{}                    `pulumi:"tags"`
}

func LookupInput added in v0.12.0

func LookupInput(ctx *pulumi.Context, args *LookupInputArgs, opts ...pulumi.InvokeOption) (*LookupInputResult, error)

Resource Type definition for AWS::MediaLive::Input

type LookupInputResultOutput added in v0.12.0

type LookupInputResultOutput struct{ *pulumi.OutputState }

func LookupInputOutput added in v0.12.0

func LookupInputOutput(ctx *pulumi.Context, args LookupInputOutputArgs, opts ...pulumi.InvokeOption) LookupInputResultOutput

func (LookupInputResultOutput) Arn added in v0.12.0

func (LookupInputResultOutput) Destinations added in v0.12.0

func (LookupInputResultOutput) ElementType added in v0.12.0

func (LookupInputResultOutput) ElementType() reflect.Type

func (LookupInputResultOutput) Id added in v0.12.0

func (LookupInputResultOutput) InputDevices added in v0.12.0

func (LookupInputResultOutput) InputSecurityGroups added in v0.12.0

func (o LookupInputResultOutput) InputSecurityGroups() pulumi.StringArrayOutput

func (LookupInputResultOutput) MediaConnectFlows added in v0.12.0

func (LookupInputResultOutput) Name added in v0.12.0

func (LookupInputResultOutput) RoleArn added in v0.12.0

func (LookupInputResultOutput) Sources added in v0.12.0

func (LookupInputResultOutput) Tags added in v0.12.0

func (LookupInputResultOutput) ToLookupInputResultOutput added in v0.12.0

func (o LookupInputResultOutput) ToLookupInputResultOutput() LookupInputResultOutput

func (LookupInputResultOutput) ToLookupInputResultOutputWithContext added in v0.12.0

func (o LookupInputResultOutput) ToLookupInputResultOutputWithContext(ctx context.Context) LookupInputResultOutput

func (LookupInputResultOutput) ToOutput added in v0.76.0

type LookupInputSecurityGroupArgs added in v0.12.0

type LookupInputSecurityGroupArgs struct {
	Id string `pulumi:"id"`
}

type LookupInputSecurityGroupOutputArgs added in v0.12.0

type LookupInputSecurityGroupOutputArgs struct {
	Id pulumi.StringInput `pulumi:"id"`
}

func (LookupInputSecurityGroupOutputArgs) ElementType added in v0.12.0

type LookupInputSecurityGroupResult added in v0.12.0

type LookupInputSecurityGroupResult struct {
	Arn            *string                                    `pulumi:"arn"`
	Id             *string                                    `pulumi:"id"`
	Tags           interface{}                                `pulumi:"tags"`
	WhitelistRules []InputSecurityGroupInputWhitelistRuleCidr `pulumi:"whitelistRules"`
}

func LookupInputSecurityGroup added in v0.12.0

func LookupInputSecurityGroup(ctx *pulumi.Context, args *LookupInputSecurityGroupArgs, opts ...pulumi.InvokeOption) (*LookupInputSecurityGroupResult, error)

Resource Type definition for AWS::MediaLive::InputSecurityGroup

type LookupInputSecurityGroupResultOutput added in v0.12.0

type LookupInputSecurityGroupResultOutput struct{ *pulumi.OutputState }

func (LookupInputSecurityGroupResultOutput) Arn added in v0.12.0

func (LookupInputSecurityGroupResultOutput) ElementType added in v0.12.0

func (LookupInputSecurityGroupResultOutput) Id added in v0.12.0

func (LookupInputSecurityGroupResultOutput) Tags added in v0.12.0

func (LookupInputSecurityGroupResultOutput) ToLookupInputSecurityGroupResultOutput added in v0.12.0

func (o LookupInputSecurityGroupResultOutput) ToLookupInputSecurityGroupResultOutput() LookupInputSecurityGroupResultOutput

func (LookupInputSecurityGroupResultOutput) ToLookupInputSecurityGroupResultOutputWithContext added in v0.12.0

func (o LookupInputSecurityGroupResultOutput) ToLookupInputSecurityGroupResultOutputWithContext(ctx context.Context) LookupInputSecurityGroupResultOutput

func (LookupInputSecurityGroupResultOutput) ToOutput added in v0.76.0

func (LookupInputSecurityGroupResultOutput) WhitelistRules added in v0.12.0

Jump to

Keyboard shortcuts

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