Class CfnInstanceStorageConfigPropsMixin.S3ConfigProperty
Information about the Amazon Simple Storage Service (Amazon S3) storage type.
Inherited Members
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
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
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
Remarks
BucketPrefix
The S3 bucket prefix.
public string? BucketPrefix { get; set; }
Property Value
Remarks
EncryptionConfig
The Amazon S3 encryption configuration.
public object? EncryptionConfig { get; set; }