Class CfnFlowPropsMixin.StorageFlowNodeServiceConfigurationProperty
Contains configurations for the service to use for storing the input into the node.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFlowPropsMixin.StorageFlowNodeServiceConfigurationProperty : CfnFlowPropsMixin.IStorageFlowNodeServiceConfigurationProperty
Syntax (vb)
Public Class CfnFlowPropsMixin.StorageFlowNodeServiceConfigurationProperty Implements CfnFlowPropsMixin.IStorageFlowNodeServiceConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var storageFlowNodeServiceConfigurationProperty = new StorageFlowNodeServiceConfigurationProperty {
S3 = new StorageFlowNodeS3ConfigurationProperty {
BucketName = "bucketName"
}
};
Synopsis
Constructors
| StorageFlowNodeServiceConfigurationProperty() | Contains configurations for the service to use for storing the input into the node. |
Properties
| S3 | Contains configurations for the Amazon S3 location in which to store the input into the node. |
Constructors
StorageFlowNodeServiceConfigurationProperty()
Contains configurations for the service to use for storing the input into the node.
public StorageFlowNodeServiceConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var storageFlowNodeServiceConfigurationProperty = new StorageFlowNodeServiceConfigurationProperty {
S3 = new StorageFlowNodeS3ConfigurationProperty {
BucketName = "bucketName"
}
};
Properties
S3
Contains configurations for the Amazon S3 location in which to store the input into the node.
public object? S3 { get; set; }