interface CfnCodeRepositoryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnCodeRepositoryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnCodeRepositoryMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnCodeRepositoryMixinProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnCodeRepositoryMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnCodeRepositoryMixinProps |
Properties for CfnCodeRepositoryPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const cfnCodeRepositoryMixinProps: sagemaker_mixins.CfnCodeRepositoryMixinProps = {
codeRepositoryName: 'codeRepositoryName',
gitConfig: {
branch: 'branch',
repositoryUrl: 'repositoryUrl',
secretArn: 'secretArn',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The name of the Git repository. |
| git | IResolvable | Git | 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. |
| tags? | Cfn[] | List of tags for Code Repository. |
codeRepositoryName?
Type:
string
(optional)
The name of the Git repository.
gitConfig?
Type:
IResolvable | Git
(optional)
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.
tags?
Type:
Cfn[]
(optional)
List of tags for Code Repository.

.NET
Go
Java
Python
TypeScript