Class: Aws::SageMaker::Types::UpdateCodeRepositoryInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::UpdateCodeRepositoryInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass UpdateCodeRepositoryInput data as a hash:
{
code_repository_name: "EntityName", # required
git_config: {
secret_arn: "SecretArn",
},
}
Instance Attribute Summary collapse
-
#code_repository_name ⇒ String
The name of the Git repository to update.
-
#git_config ⇒ Types::GitConfigForUpdate
The configuration of the git repository, including the URL and the Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the credentials used to access the repository.
Instance Attribute Details
#code_repository_name ⇒ String
The name of the Git repository to update.
19672 19673 19674 19675 19676 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 19672 class UpdateCodeRepositoryInput < Struct.new( :code_repository_name, :git_config) include Aws::Structure end |
#git_config ⇒ Types::GitConfigForUpdate
The configuration of the git repository, including the URL and the Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the credentials used to access the repository. The secret must have a staging label of ‘AWSCURRENT` and must be in the following format:
‘UserName, “password”: Password`
19672 19673 19674 19675 19676 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 19672 class UpdateCodeRepositoryInput < Struct.new( :code_repository_name, :git_config) include Aws::Structure end |