Class: Aws::CodeArtifact::Types::UpstreamRepository
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::UpstreamRepository
- 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
-
#repository_name ⇒ String
The name of an upstream repository.
Instance Attribute Details
#repository_name ⇒ String
The name of an upstream repository.
3642 3643 3644 3645 3646 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 3642 class UpstreamRepository < Struct.new( :repository_name) SENSITIVE = [] include Aws::Structure end |