Class CfnInstanceStorageConfig.S3ConfigProperty
Information about the Amazon Simple Storage Service (Amazon S3) storage type.
Inheritance
System.Object
CfnInstanceStorageConfig.S3ConfigProperty
Implements
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.AWS.Connect.dll
Syntax (csharp)
public class S3ConfigProperty : Object, CfnInstanceStorageConfig.IS3ConfigProperty
Syntax (vb)
Public Class S3ConfigProperty
Inherits Object
Implements CfnInstanceStorageConfig.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
Constructors
S3ConfigProperty() |
Properties
BucketName | The S3 bucket name. |
BucketPrefix | The S3 bucket prefix. |
EncryptionConfig | The Amazon S3 encryption configuration. |
Constructors
S3ConfigProperty()
public S3ConfigProperty()
Properties
BucketName
The S3 bucket name.
public string BucketName { get; set; }
Property Value
System.String
Remarks
BucketPrefix
The S3 bucket prefix.
public string BucketPrefix { get; set; }
Property Value
System.String
Remarks
EncryptionConfig
The Amazon S3 encryption configuration.
public object EncryptionConfig { get; set; }
Property Value
System.Object