Class: Aws::SageMaker::Types::GitConfigForUpdate

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass GitConfigForUpdate data as a hash:

{
  secret_arn: "SecretArn",
}

Specifies configuration details for a Git repository when the repository is updated.

Instance Attribute Summary collapse

Instance Attribute Details

#secret_arnString

The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the credentials used to access the git repository. The secret must have a staging label of ‘AWSCURRENT` and must be in the following format:

‘UserName, “password”: Password`

Returns:

  • (String)


5015
5016
5017
5018
# File 'lib/aws-sdk-sagemaker/types.rb', line 5015

class GitConfigForUpdate < Struct.new(
  :secret_arn)
  include Aws::Structure
end