Show / Hide Table of Contents

Class CfnFlowPropsMixin.S3LocationProperty

The S3 location of the flow definition.

Inheritance
object
CfnFlowPropsMixin.S3LocationProperty
Implements
CfnFlowPropsMixin.IS3LocationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFlowPropsMixin.S3LocationProperty : CfnFlowPropsMixin.IS3LocationProperty
Syntax (vb)
Public Class CfnFlowPropsMixin.S3LocationProperty Implements CfnFlowPropsMixin.IS3LocationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-s3location.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.Mixins.Preview.AWS.Bedrock.Mixins;

             var s3LocationProperty = new S3LocationProperty {
                 Bucket = "bucket",
                 Key = "key",
                 Version = "version"
             };

Synopsis

Constructors

S3LocationProperty()

The S3 location of the flow definition.

Properties

Bucket

The S3 bucket containing the flow definition.

Key

The object key for the S3 location containing the definition.

Version

The Amazon S3 location from which to retrieve data for an S3 retrieve node or to which to store data for an S3 storage node.

Constructors

S3LocationProperty()

The S3 location of the flow definition.

public S3LocationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-s3location.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.Mixins.Preview.AWS.Bedrock.Mixins;

             var s3LocationProperty = new S3LocationProperty {
                 Bucket = "bucket",
                 Key = "key",
                 Version = "version"
             };

Properties

Bucket

The S3 bucket containing the flow definition.

public string? Bucket { get; set; }
Property Value

string

Remarks

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

Key

The object key for the S3 location containing the definition.

public string? Key { get; set; }
Property Value

string

Remarks

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

Version

The Amazon S3 location from which to retrieve data for an S3 retrieve node or to which to store data for an S3 storage node.

public string? Version { get; set; }
Property Value

string

Remarks

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

Implements

CfnFlowPropsMixin.IS3LocationProperty
Back to top Generated by DocFX