interface S3SourcePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnIntegrationPropsMixin.S3SourcePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnIntegrationPropsMixin_S3SourcePropertiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnIntegrationPropsMixin.S3SourcePropertiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnIntegrationPropsMixin.S3SourcePropertiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » CfnIntegrationPropsMixin » S3SourcePropertiesProperty |
The properties that are applied when Amazon S3 is being used as the flow source.
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/cfn-property-mixins';
const s3SourcePropertiesProperty: customerprofiles.CfnIntegrationPropsMixin.S3SourcePropertiesProperty = {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The Amazon S3 bucket name where the source files are stored. |
| bucket | string | The object key for the Amazon S3 bucket in which the source files are stored. |
bucketName?
Type:
string
(optional)
The Amazon S3 bucket name where the source files are stored.
bucketPrefix?
Type:
string
(optional)
The object key for the Amazon S3 bucket in which the source files are stored.

.NET
Go
Java
Python
TypeScript