Interface CfnRepository.CodeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRepository.CodeProperty.Jsii$Proxy
- Enclosing class:
CfnRepository
@Stability(Stable)
public static interface CfnRepository.CodeProperty
extends software.amazon.jsii.JsiiSerializable
Information about code to be committed.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.codecommit.*; CodeProperty codeProperty = CodeProperty.builder() .s3(S3Property.builder() .bucket("bucket") .key("key") // the properties below are optional .objectVersion("objectVersion") .build()) // the properties below are optional .branchName("branchName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRepository.CodeProperty
static final class
An implementation forCfnRepository.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.Changes to this property are ignored after initial resource creation.
-
getBranchName
Optional.Specifies a branch name to be used as the default branch when importing code into a repository on initial creation. If this property is not set, the name main will be used for the default branch for the repository. Changes to this property are ignored after initial resource creation. We recommend using this parameter to set the name to main to align with the default behavior of CodeCommit unless another name is needed.
-
builder
- Returns:
- a
CfnRepository.CodeProperty.Builder
ofCfnRepository.CodeProperty
-