Class: Aws::CodeArtifact::Types::GetRepositoryEndpointRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::GetRepositoryEndpointRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeartifact/types.rb
Overview
Note:
When making an API call, you may pass GetRepositoryEndpointRequest data as a hash:
{
domain: "DomainName", # required
domain_owner: "AccountId",
repository: "RepositoryName", # required
format: "npm", # required, accepts npm, pypi, maven, nuget
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The name of the domain that contains the repository.
-
#domain_owner ⇒ String
The 12-digit account number of the AWS account that owns the domain that contains the repository.
-
#format ⇒ String
Returns which endpoint of a repository to return.
-
#repository ⇒ String
The name of the repository.
Instance Attribute Details
#domain ⇒ String
The name of the domain that contains the repository.
1591 1592 1593 1594 1595 1596 1597 1598 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1591 class GetRepositoryEndpointRequest < Struct.new( :domain, :domain_owner, :repository, :format) SENSITIVE = [] include Aws::Structure end |
#domain_owner ⇒ String
The 12-digit account number of the AWS account that owns the domain that contains the repository. It does not include dashes or spaces.
1591 1592 1593 1594 1595 1596 1597 1598 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1591 class GetRepositoryEndpointRequest < Struct.new( :domain, :domain_owner, :repository, :format) SENSITIVE = [] include Aws::Structure end |
#format ⇒ String
Returns which endpoint of a repository to return. A repository has one endpoint for each package format:
-
`npm`
-
`pypi`
-
`maven`
1591 1592 1593 1594 1595 1596 1597 1598 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1591 class GetRepositoryEndpointRequest < Struct.new( :domain, :domain_owner, :repository, :format) SENSITIVE = [] include Aws::Structure end |
#repository ⇒ String
The name of the repository.
1591 1592 1593 1594 1595 1596 1597 1598 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1591 class GetRepositoryEndpointRequest < Struct.new( :domain, :domain_owner, :repository, :format) SENSITIVE = [] include Aws::Structure end |