Class CfnFlowPropsMixin.S3LocationProperty
The S3 location of the flow definition.
Implements
Inherited Members
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
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
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
Remarks
Key
The object key for the S3 location containing the definition.
public string? Key { get; set; }
Property Value
Remarks
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; }