Class: Aws::CodeArtifact::Types::CopyPackageVersionsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::CopyPackageVersionsResult
- Defined in:
- gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed_versions ⇒ Hash<String,Types::PackageVersionError>
A map of package versions that failed to copy and their error codes.
-
#successful_versions ⇒ Hash<String,Types::SuccessfulPackageVersionInfo>
A list of the package versions that were successfully copied to your repository.
Instance Attribute Details
#failed_versions ⇒ Hash<String,Types::PackageVersionError>
A map of package versions that failed to copy and their error codes.
The possible error codes are in the PackageVersionError
data type.
They are:
ALREADY_EXISTS
MISMATCHED_REVISION
MISMATCHED_STATUS
NOT_ALLOWED
NOT_FOUND
SKIPPED
325 326 327 328 329 330 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 325 class CopyPackageVersionsResult < Struct.new( :successful_versions, :failed_versions) SENSITIVE = [] include Aws::Structure end |
#successful_versions ⇒ Hash<String,Types::SuccessfulPackageVersionInfo>
A list of the package versions that were successfully copied to your repository.
325 326 327 328 329 330 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 325 class CopyPackageVersionsResult < Struct.new( :successful_versions, :failed_versions) SENSITIVE = [] include Aws::Structure end |