Class: Aws::ECR::Types::ImageSigningStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::ImageSigningStatus
- Defined in:
- gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
Overview
The signing status for an image. Each status corresponds to a signing profile.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failure_code ⇒ String
The failure code, which is only present if
statusisFAILED. -
#failure_reason ⇒ String
A description of why signing the image failed.
-
#signing_profile_arn ⇒ String
The ARN of the Amazon Web Services Signer signing profile used to sign the image.
-
#status ⇒ String
The image's signing status.
Instance Attribute Details
#failure_code ⇒ String
The failure code, which is only present if status is FAILED.
2684 2685 2686 2687 2688 2689 2690 2691 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2684 class ImageSigningStatus < Struct.new( :signing_profile_arn, :failure_code, :failure_reason, :status) SENSITIVE = [] include Aws::Structure end |
#failure_reason ⇒ String
A description of why signing the image failed. This field is only
present if status is FAILED.
2684 2685 2686 2687 2688 2689 2690 2691 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2684 class ImageSigningStatus < Struct.new( :signing_profile_arn, :failure_code, :failure_reason, :status) SENSITIVE = [] include Aws::Structure end |
#signing_profile_arn ⇒ String
The ARN of the Amazon Web Services Signer signing profile used to sign the image.
2684 2685 2686 2687 2688 2689 2690 2691 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2684 class ImageSigningStatus < Struct.new( :signing_profile_arn, :failure_code, :failure_reason, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The image's signing status. Possible values are:
IN_PROGRESS- Signing is currently in progress.COMPLETE- The signature was successfully generated.FAILED- Signing failed. SeefailureCodeandfailureReasonfor details.
2684 2685 2686 2687 2688 2689 2690 2691 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2684 class ImageSigningStatus < Struct.new( :signing_profile_arn, :failure_code, :failure_reason, :status) SENSITIVE = [] include Aws::Structure end |