Class: Aws::CustomerProfiles::Types::ExportingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::ExportingConfig
- Defined in:
- gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb
Overview
Note:
When making an API call, you may pass ExportingConfig data as a hash:
{
s3_exporting: {
s3_bucket_name: "s3BucketName", # required
s3_key_name: "s3KeyNameCustomerOutputConfig",
},
}
Configuration information about the S3 bucket where Identity Resolution Jobs writes result files.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_exporting ⇒ Types::S3ExportingConfig
The S3 location where Identity Resolution Jobs write result files.
Instance Attribute Details
#s3_exporting ⇒ Types::S3ExportingConfig
The S3 location where Identity Resolution Jobs write result files.
1401 1402 1403 1404 1405 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 1401 class ExportingConfig < Struct.new( :s3_exporting) SENSITIVE = [] include Aws::Structure end |