Class: Aws::CodeArtifact::Types::RepositoryExternalConnectionInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::RepositoryExternalConnectionInfo
- Defined in:
- gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb
Overview
Contains information about the external connection of a repository.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#external_connection_name ⇒ String
The name of the external connection associated with a repository.
-
#package_format ⇒ String
The package format associated with a repository's external connection.
-
#status ⇒ String
The status of the external connection of a repository.
Instance Attribute Details
#external_connection_name ⇒ String
The name of the external connection associated with a repository.
3909 3910 3911 3912 3913 3914 3915 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 3909 class RepositoryExternalConnectionInfo < Struct.new( :external_connection_name, :package_format, :status) SENSITIVE = [] include Aws::Structure end |
#package_format ⇒ String
The package format associated with a repository's external connection. The valid package formats are:
npm
: A Node Package Manager (npm) package.pypi
: A Python Package Index (PyPI) package.maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.nuget
: A NuGet package.generic
: A generic package.ruby
: A Ruby package.swift
: A Swift package.cargo
: A Cargo package.
3909 3910 3911 3912 3913 3914 3915 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 3909 class RepositoryExternalConnectionInfo < Struct.new( :external_connection_name, :package_format, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the external connection of a repository. There is one
valid value, Available
.
3909 3910 3911 3912 3913 3914 3915 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 3909 class RepositoryExternalConnectionInfo < Struct.new( :external_connection_name, :package_format, :status) SENSITIVE = [] include Aws::Structure end |