interface S3LocationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_bedrock.CfnFlow.S3LocationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnFlow_S3LocationProperty |
![]() | software.amazon.awscdk.services.bedrock.CfnFlow.S3LocationProperty |
![]() | aws_cdk.aws_bedrock.CfnFlow.S3LocationProperty |
![]() | aws-cdk-lib » aws_bedrock » CfnFlow » 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 { aws_bedrock as bedrock } from 'aws-cdk-lib';
const s3LocationProperty: bedrock.CfnFlow.S3LocationProperty = {
bucket: 'bucket',
key: 'key',
// the properties below are optional
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
The S3 bucket containing the flow definition.
key
Type:
string
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.