Interface CfnCodeRepositoryMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeRepositoryMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:31.698Z")
@Stability(Stable)
public interface CfnCodeRepositoryMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCodeRepositoryPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.*;
CfnCodeRepositoryMixinProps cfnCodeRepositoryMixinProps = CfnCodeRepositoryMixinProps.builder()
.codeRepositoryName("codeRepositoryName")
.gitConfig(GitConfigProperty.builder()
.branch("branch")
.repositoryUrl("repositoryUrl")
.secretArn("secretArn")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCodeRepositoryMixinPropsstatic final classAn implementation forCfnCodeRepositoryMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the Git repository.default ObjectConfiguration details for the Git repository, including the URL where it is located and the ARN of the AWS Secrets Manager secret that contains the credentials used to access the repository.getTags()List of tags for Code Repository.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCodeRepositoryName
The name of the Git repository.- See Also:
-
getGitConfig
Configuration details for the Git repository, including the URL where it is located and the ARN of the AWS Secrets Manager secret that contains the credentials used to access the repository.Returns union: either
IResolvableorCfnCodeRepositoryPropsMixin.GitConfigProperty- See Also:
-
getTags
List of tags for Code Repository.- See Also:
-
builder
-