Show / Hide Table of Contents

Class CfnRuntimePropsMixin.CodeProperty

Object represents source code from zip file.

Inheritance
object
CfnRuntimePropsMixin.CodeProperty
Implements
CfnRuntimePropsMixin.ICodeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnRuntimePropsMixin.CodeProperty : CfnRuntimePropsMixin.ICodeProperty
Syntax (vb)
Public Class CfnRuntimePropsMixin.CodeProperty Implements CfnRuntimePropsMixin.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.CfnPropertyMixins.AWS.BedrockAgentCore;

             var codeProperty = new CodeProperty {
                 S3 = new S3LocationProperty {
                     Bucket = "bucket",
                     Prefix = "prefix",
                     VersionId = "versionId"
                 }
             };

Synopsis

Constructors

CodeProperty()

Object represents source code from zip file.

Properties

S3

S3 Location Configuration.

Constructors

CodeProperty()

Object represents source code from zip file.

public CodeProperty()
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.CfnPropertyMixins.AWS.BedrockAgentCore;

             var codeProperty = new CodeProperty {
                 S3 = new S3LocationProperty {
                     Bucket = "bucket",
                     Prefix = "prefix",
                     VersionId = "versionId"
                 }
             };

Properties

S3

S3 Location Configuration.

public object? S3 { get; set; }
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 CfnRuntimePropsMixin.IS3LocationProperty

Implements

CfnRuntimePropsMixin.ICodeProperty
Back to top Generated by DocFX