Show / Hide Table of Contents

Class CfnFlow.StorageFlowNodeServiceConfigurationProperty

Contains configurations for the service to use for storing the input into the node.

Inheritance
object
CfnFlow.StorageFlowNodeServiceConfigurationProperty
Implements
CfnFlow.IStorageFlowNodeServiceConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFlow.StorageFlowNodeServiceConfigurationProperty : CfnFlow.IStorageFlowNodeServiceConfigurationProperty
Syntax (vb)
Public Class CfnFlow.StorageFlowNodeServiceConfigurationProperty Implements CfnFlow.IStorageFlowNodeServiceConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-storageflownodeserviceconfiguration.html

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.AWS.Bedrock;

             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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-storageflownodeserviceconfiguration.html

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.AWS.Bedrock;

             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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-storageflownodeserviceconfiguration.html#cfn-bedrock-flow-storageflownodeserviceconfiguration-s3

Type union: either IResolvable or CfnFlow.IStorageFlowNodeS3ConfigurationProperty

Implements

CfnFlow.IStorageFlowNodeServiceConfigurationProperty
Back to top Generated by DocFX