Class: Aws::CodeArtifact::Types::UpstreamRepository
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::UpstreamRepository
- Defined in:
- gems/aws-sdk-codeartifact/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
and UpdateRepository
.
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.
3489 3490 3491 3492 3493 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 3489 class UpstreamRepository < Struct.new( :repository_name) SENSITIVE = [] include Aws::Structure end |