Class: Aws::CodeArtifact::Types::PackageDescription

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

Overview

Details about a package.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#formatString

A format that specifies the type of the package.

Returns:

  • (String)


2570
2571
2572
2573
2574
2575
2576
2577
# File 'lib/aws-sdk-codeartifact/types.rb', line 2570

class PackageDescription < Struct.new(
  :format,
  :namespace,
  :name,
  :origin_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the package.

Returns:

  • (String)


2570
2571
2572
2573
2574
2575
2576
2577
# File 'lib/aws-sdk-codeartifact/types.rb', line 2570

class PackageDescription < Struct.new(
  :format,
  :namespace,
  :name,
  :origin_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#namespaceString

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its `groupId`.

  • The namespace of an npm package is its `scope`.

  • Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace.

Returns:

  • (String)


2570
2571
2572
2573
2574
2575
2576
2577
# File 'lib/aws-sdk-codeartifact/types.rb', line 2570

class PackageDescription < Struct.new(
  :format,
  :namespace,
  :name,
  :origin_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#origin_configurationTypes::PackageOriginConfiguration

The package origin configuration for the package.



2570
2571
2572
2573
2574
2575
2576
2577
# File 'lib/aws-sdk-codeartifact/types.rb', line 2570

class PackageDescription < Struct.new(
  :format,
  :namespace,
  :name,
  :origin_configuration)
  SENSITIVE = []
  include Aws::Structure
end