interface S3ExportingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnDomainPropsMixin.S3ExportingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnDomainPropsMixin_S3ExportingConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnDomainPropsMixin.S3ExportingConfigProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnDomainPropsMixin.S3ExportingConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnDomainPropsMixin » S3ExportingConfigProperty |
The S3 location where Identity Resolution Jobs write result files.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const s3ExportingConfigProperty: customerprofiles_mixins.CfnDomainPropsMixin.S3ExportingConfigProperty = {
s3BucketName: 's3BucketName',
s3KeyName: 's3KeyName',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The name of the S3 bucket where Identity Resolution Jobs write result files. |
| s3 | string | The S3 key name of the location where Identity Resolution Jobs write result files. |
s3BucketName?
Type:
string
(optional)
The name of the S3 bucket where Identity Resolution Jobs write result files.
s3KeyName?
Type:
string
(optional)
The S3 key name of the location where Identity Resolution Jobs write result files.

.NET
Go
Java
Python
TypeScript