Show / Hide Table of Contents

Interface CfnRuntime.ICodeProperty

Object represents source code from zip file.

Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRuntime.ICodeProperty
Syntax (vb)
Public Interface CfnRuntime.ICodeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-code.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.BedrockAgentCore;

             var codeProperty = new CodeProperty {
                 S3 = new S3LocationProperty {
                     Bucket = "bucket",
                     Prefix = "prefix",

                     // the properties below are optional
                     VersionId = "versionId"
                 }
             };

Synopsis

Properties

S3

S3 Location Configuration.

Properties

S3

S3 Location Configuration.

object? S3 { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-code.html#cfn-bedrockagentcore-runtime-code-s3

Type union: either IResolvable or CfnRuntime.IS3LocationProperty

Back to top Generated by DocFX