interface ExportingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnDomainPropsMixin.ExportingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnDomainPropsMixin_ExportingConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnDomainPropsMixin.ExportingConfigProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnDomainPropsMixin.ExportingConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnDomainPropsMixin » ExportingConfigProperty |
Configuration information for exporting Identity Resolution results, for example, to an S3 bucket.
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 exportingConfigProperty: customerprofiles_mixins.CfnDomainPropsMixin.ExportingConfigProperty = {
s3Exporting: {
s3BucketName: 's3BucketName',
s3KeyName: 's3KeyName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | The S3 location where Identity Resolution Jobs write result files. |
s3Exporting?
Type:
IResolvable | S3
(optional)
The S3 location where Identity Resolution Jobs write result files.

.NET
Go
Java
Python
TypeScript