Interface CfnGitHubRepositoryPropsMixin.CodeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGitHubRepositoryPropsMixin.CodeProperty.Jsii$Proxy
- Enclosing class:
CfnGitHubRepositoryPropsMixin
@Stability(Stable)
public static interface CfnGitHubRepositoryPropsMixin.CodeProperty
extends software.amazon.jsii.JsiiSerializable
The
Code property type specifies information about code to be committed.
Code is a property of the AWS::CodeStar::GitHubRepository resource.
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.codestar.*;
CodeProperty codeProperty = CodeProperty.builder()
.s3(S3Property.builder()
.bucket("bucket")
.key("key")
.objectVersion("objectVersion")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGitHubRepositoryPropsMixin.CodePropertystatic final classAn implementation forCfnGitHubRepositoryPropsMixin.CodeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3
Information about the Amazon S3 bucket that contains a ZIP file of code to be committed to the repository.Returns union: either
IResolvableorCfnGitHubRepositoryPropsMixin.S3Property- See Also:
-
builder
-