Class: Aws::CodeArtifact::Types::DisposePackageVersionsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::DisposePackageVersionsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeartifact/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed_versions ⇒ Hash<String,Types::PackageVersionError>
A ‘PackageVersionError` object that contains a map of errors codes for the disposed package versions that failed.
-
#successful_versions ⇒ Hash<String,Types::SuccessfulPackageVersionInfo>
A list of the package versions that were successfully disposed.
Instance Attribute Details
#failed_versions ⇒ Hash<String,Types::PackageVersionError>
A ‘PackageVersionError` object that contains a map of errors codes for the disposed package versions that failed. The possible error codes are:
-
‘ALREADY_EXISTS`
-
‘MISMATCHED_REVISION`
-
‘MISMATCHED_STATUS`
-
‘NOT_ALLOWED`
-
‘NOT_FOUND`
-
‘SKIPPED`
1033 1034 1035 1036 1037 1038 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1033 class DisposePackageVersionsResult < 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 disposed.
1033 1034 1035 1036 1037 1038 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1033 class DisposePackageVersionsResult < Struct.new( :successful_versions, :failed_versions) SENSITIVE = [] include Aws::Structure end |