Show / Hide Table of Contents

Class CfnPackagingGroupMixinProps

Properties for CfnPackagingGroupPropsMixin.

Inheritance
object
CfnPackagingGroupMixinProps
Implements
ICfnPackagingGroupMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnPackagingGroupMixinProps : ICfnPackagingGroupMixinProps
Syntax (vb)
Public Class CfnPackagingGroupMixinProps Implements ICfnPackagingGroupMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackage-packaginggroup.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage;

             var cfnPackagingGroupMixinProps = new CfnPackagingGroupMixinProps {
                 Authorization = new AuthorizationProperty {
                     CdnIdentifierSecret = "cdnIdentifierSecret",
                     SecretsRoleArn = "secretsRoleArn"
                 },
                 EgressAccessLogs = new LogConfigurationProperty {
                     LogGroupName = "logGroupName"
                 },
                 Id = "id",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnPackagingGroupMixinProps()

Properties for CfnPackagingGroupPropsMixin.

Properties

Authorization

Parameters for CDN authorization.

EgressAccessLogs

The configuration parameters for egress access logging.

Id

Unique identifier that you assign to the packaging group.

Tags

The tags to assign to the packaging group.

Constructors

CfnPackagingGroupMixinProps()

Properties for CfnPackagingGroupPropsMixin.

public CfnPackagingGroupMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackage-packaginggroup.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage;

             var cfnPackagingGroupMixinProps = new CfnPackagingGroupMixinProps {
                 Authorization = new AuthorizationProperty {
                     CdnIdentifierSecret = "cdnIdentifierSecret",
                     SecretsRoleArn = "secretsRoleArn"
                 },
                 EgressAccessLogs = new LogConfigurationProperty {
                     LogGroupName = "logGroupName"
                 },
                 Id = "id",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Authorization

Parameters for CDN authorization.

public object? Authorization { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackage-packaginggroup.html#cfn-mediapackage-packaginggroup-authorization

Type union: either IResolvable or CfnPackagingGroupPropsMixin.IAuthorizationProperty

EgressAccessLogs

The configuration parameters for egress access logging.

public object? EgressAccessLogs { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackage-packaginggroup.html#cfn-mediapackage-packaginggroup-egressaccesslogs

Type union: either IResolvable or CfnPackagingGroupPropsMixin.ILogConfigurationProperty

Id

Unique identifier that you assign to the packaging group.

public string? Id { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackage-packaginggroup.html#cfn-mediapackage-packaginggroup-id

Tags

The tags to assign to the packaging group.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackage-packaginggroup.html#cfn-mediapackage-packaginggroup-tags

Implements

ICfnPackagingGroupMixinProps
Back to top Generated by DocFX