interface S3ExportingConfigProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.CustomerProfiles.CfnDomain.S3ExportingConfigProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnDomain_S3ExportingConfigProperty | 
  Java | software.amazon.awscdk.services.customerprofiles.CfnDomain.S3ExportingConfigProperty | 
  Python | aws_cdk.aws_customerprofiles.CfnDomain.S3ExportingConfigProperty | 
  TypeScript  | aws-cdk-lib » aws_customerprofiles » CfnDomain » 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 { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const s3ExportingConfigProperty: customerprofiles.CfnDomain.S3ExportingConfigProperty = {
  s3BucketName: 's3BucketName',
  // the properties below are optional
  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
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