interface StorageFlowNodeServiceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnFlowPropsMixin.StorageFlowNodeServiceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnFlowPropsMixin_StorageFlowNodeServiceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnFlowPropsMixin.StorageFlowNodeServiceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnFlowPropsMixin.StorageFlowNodeServiceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnFlowPropsMixin » StorageFlowNodeServiceConfigurationProperty |
Contains configurations for the service to use for storing the input into the node.
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 storageFlowNodeServiceConfigurationProperty: bedrock_mixins.CfnFlowPropsMixin.StorageFlowNodeServiceConfigurationProperty = {
s3: {
bucketName: 'bucketName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3? | IResolvable | Storage | Contains configurations for the Amazon S3 location in which to store the input into the node. |
s3?
Type:
IResolvable | Storage
(optional)
Contains configurations for the Amazon S3 location in which to store the input into the node.

.NET
Go
Java
Python
TypeScript