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

.NET
Go
Java
Python
TypeScript