Class: Aws::CodeArtifact::Types::UpstreamRepository

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

Overview

Note:

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

{
  repository_name: "RepositoryName", # required
}

Information about an upstream repository. A list of `UpstreamRepository` objects is an input parameter to

CreateRepository][1

and [UpdateRepository].

[1]: docs.aws.amazon.com/codeartifact/latest/APIReference/API_CreateRepository.html [2]: docs.aws.amazon.com/codeartifact/latest/APIReference/API_UpdateRepository.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#repository_nameString

The name of an upstream repository.

Returns:

  • (String)


3234
3235
3236
3237
3238
# File 'lib/aws-sdk-codeartifact/types.rb', line 3234

class UpstreamRepository < Struct.new(
  :repository_name)
  SENSITIVE = []
  include Aws::Structure
end