interface StorageFlowNodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnFlowPropsMixin.StorageFlowNodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnFlowPropsMixin_StorageFlowNodeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnFlowPropsMixin.StorageFlowNodeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnFlowPropsMixin.StorageFlowNodeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const storageFlowNodeConfigurationProperty: bedrock.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