Show / Hide Table of Contents

Interface CfnInstanceStorageConfig.IS3ConfigProperty

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

Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.AWS.Connect.dll
Syntax (csharp)
public interface IS3ConfigProperty
Syntax (vb)
Public Interface IS3ConfigProperty
Remarks

Link: 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.AWS.Connect;

var s3ConfigProperty = new S3ConfigProperty {
    BucketName = "bucketName",
    BucketPrefix = "bucketPrefix",

    // the properties below are optional
    EncryptionConfig = new EncryptionConfigProperty {
        EncryptionType = "encryptionType",
        KeyId = "keyId"
    }
};

Synopsis

Properties

BucketName

The S3 bucket name.

BucketPrefix

The S3 bucket prefix.

EncryptionConfig

The Amazon S3 encryption configuration.

Properties

BucketName

The S3 bucket name.

string BucketName { get; }
Property Value

System.String

Remarks

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

BucketPrefix

The S3 bucket prefix.

string BucketPrefix { get; }
Property Value

System.String

Remarks

Link: 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.

virtual object EncryptionConfig { get; }
Property Value

System.Object

Remarks

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

Back to top Generated by DocFX