Class: Aws::CodeArtifact::Types::SuccessfulPackageVersionInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::SuccessfulPackageVersionInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeartifact/types.rb
Overview
Contains the revision and status of a package version.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#revision ⇒ String
The revision of a package version.
-
#status ⇒ String
The status of a package version.
Instance Attribute Details
#revision ⇒ String
The revision of a package version.
3078 3079 3080 3081 3082 3083 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 3078 class SuccessfulPackageVersionInfo < Struct.new( :revision, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of a package version. Valid statuses are:
-
`Published`
-
`Unfinished`
-
`Unlisted`
-
`Archived`
-
`Disposed`
3078 3079 3080 3081 3082 3083 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 3078 class SuccessfulPackageVersionInfo < Struct.new( :revision, :status) SENSITIVE = [] include Aws::Structure end |