Show / Hide Table of Contents

Class CfnInstanceStorageConfigPropsMixin.S3ConfigProperty

Information about the Amazon Simple Storage Service (Amazon S3) storage type.

Inheritance
object
CfnInstanceStorageConfigPropsMixin.S3ConfigProperty
Implements
CfnInstanceStorageConfigPropsMixin.IS3ConfigProperty
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.Connect
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnInstanceStorageConfigPropsMixin.S3ConfigProperty : CfnInstanceStorageConfigPropsMixin.IS3ConfigProperty
Syntax (vb)
Public Class CfnInstanceStorageConfigPropsMixin.S3ConfigProperty Implements CfnInstanceStorageConfigPropsMixin.IS3ConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instancestorageconfig-s3config.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.Connect;

             var s3ConfigProperty = new S3ConfigProperty {
                 BucketName = "bucketName",
                 BucketPrefix = "bucketPrefix",
                 EncryptionConfig = new EncryptionConfigProperty {
                     EncryptionType = "encryptionType",
                     KeyId = "keyId"
                 }
             };

Synopsis

Constructors

S3ConfigProperty()

Information about the Amazon Simple Storage Service (Amazon S3) storage type.

Properties

BucketName

The S3 bucket name.

BucketPrefix

The S3 bucket prefix.

EncryptionConfig

The Amazon S3 encryption configuration.

Constructors

S3ConfigProperty()

Information about the Amazon Simple Storage Service (Amazon S3) storage type.

public S3ConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instancestorageconfig-s3config.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.Connect;

             var s3ConfigProperty = new S3ConfigProperty {
                 BucketName = "bucketName",
                 BucketPrefix = "bucketPrefix",
                 EncryptionConfig = new EncryptionConfigProperty {
                     EncryptionType = "encryptionType",
                     KeyId = "keyId"
                 }
             };

Properties

BucketName

The S3 bucket name.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instancestorageconfig-s3config.html#cfn-connect-instancestorageconfig-s3config-bucketname

BucketPrefix

The S3 bucket prefix.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instancestorageconfig-s3config.html#cfn-connect-instancestorageconfig-s3config-bucketprefix

EncryptionConfig

The Amazon S3 encryption configuration.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instancestorageconfig-s3config.html#cfn-connect-instancestorageconfig-s3config-encryptionconfig

Type union: either IResolvable or CfnInstanceStorageConfigPropsMixin.IEncryptionConfigProperty

Implements

CfnInstanceStorageConfigPropsMixin.IS3ConfigProperty
Back to top Generated by DocFX