Class: Aws::CodeArtifact::Types::RepositoryExternalConnectionInfo

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codeartifact/types.rb

Overview

Contains information about the external connection of a repository.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#external_connection_nameString

The name of the external connection associated with a repository.

Returns:

  • (String)


3036
3037
3038
3039
3040
3041
3042
# File 'lib/aws-sdk-codeartifact/types.rb', line 3036

class RepositoryExternalConnectionInfo < Struct.new(
  :external_connection_name,
  :package_format,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#package_formatString

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.

Returns:

  • (String)


3036
3037
3038
3039
3040
3041
3042
# File 'lib/aws-sdk-codeartifact/types.rb', line 3036

class RepositoryExternalConnectionInfo < Struct.new(
  :external_connection_name,
  :package_format,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status of the external connection of a repository. There is one valid value, ‘Available`.

Returns:

  • (String)


3036
3037
3038
3039
3040
3041
3042
# File 'lib/aws-sdk-codeartifact/types.rb', line 3036

class RepositoryExternalConnectionInfo < Struct.new(
  :external_connection_name,
  :package_format,
  :status)
  SENSITIVE = []
  include Aws::Structure
end