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
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
BucketPrefix
The S3 bucket prefix.
string BucketPrefix { get; }
Property Value
System.String
Remarks
EncryptionConfig
The Amazon S3 encryption configuration.
virtual object EncryptionConfig { get; }
Property Value
System.Object