Class: Aws::CodeArtifact::Types::DomainEntryPoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::DomainEntryPoint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeartifact/types.rb
Overview
Information about how a package originally entered the CodeArtifact domain. For packages published directly to CodeArtifact, the entry point is the repository it was published to. For packages ingested from an external repository, the entry point is the external connection that it was ingested from. An external connection is a CodeArtifact repository that is connected to an external repository such as the npm registry or NuGet gallery.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#external_connection_name ⇒ String
The name of the external connection that a package was ingested from.
-
#repository_name ⇒ String
The name of the repository that a package was originally published to.
Instance Attribute Details
#external_connection_name ⇒ String
The name of the external connection that a package was ingested from.
1115 1116 1117 1118 1119 1120 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1115 class DomainEntryPoint < Struct.new( :repository_name, :external_connection_name) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository that a package was originally published to.
1115 1116 1117 1118 1119 1120 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1115 class DomainEntryPoint < Struct.new( :repository_name, :external_connection_name) SENSITIVE = [] include Aws::Structure end |