interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnFlowPropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnFlowPropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnFlowPropsMixin.S3LocationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnFlowPropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnFlowPropsMixin » S3LocationProperty |
The S3 location of the flow definition.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const s3LocationProperty: bedrock_mixins.CfnFlowPropsMixin.S3LocationProperty = {
bucket: 'bucket',
key: 'key',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The S3 bucket containing the flow definition. |
| key? | string | The object key for the S3 location containing the definition. |
| version? | string | The Amazon S3 location from which to retrieve data for an S3 retrieve node or to which to store data for an S3 storage node. |
bucket?
Type:
string
(optional)
The S3 bucket containing the flow definition.
key?
Type:
string
(optional)
The object key for the S3 location containing the definition.
version?
Type:
string
(optional)
The Amazon S3 location from which to retrieve data for an S3 retrieve node or to which to store data for an S3 storage node.

.NET
Go
Java
Python
TypeScript