Interface CfnRuntimePropsMixin.CodeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuntimePropsMixin.CodeProperty.Jsii$Proxy
- Enclosing class:
CfnRuntimePropsMixin
@Stability(Stable)
public static interface CfnRuntimePropsMixin.CodeProperty
extends software.amazon.jsii.JsiiSerializable
Object represents source code from zip file.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.*;
CodeProperty codeProperty = CodeProperty.builder()
.s3(S3LocationProperty.builder()
.bucket("bucket")
.prefix("prefix")
.versionId("versionId")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuntimePropsMixin.CodePropertystatic final classAn implementation forCfnRuntimePropsMixin.CodeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3
S3 Location Configuration.Returns union: either
IResolvableorCfnRuntimePropsMixin.S3LocationProperty- See Also:
-
builder
-