Class: Aws::Signer::Types::RevokeSigningProfileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Signer::Types::RevokeSigningProfileRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-signer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#effective_time ⇒ Time
A timestamp for when revocation of a Signing Profile should become effective.
-
#profile_name ⇒ String
The name of the signing profile to be revoked.
-
#profile_version ⇒ String
The version of the signing profile to be revoked.
-
#reason ⇒ String
The reason for revoking a signing profile.
Instance Attribute Details
#effective_time ⇒ Time
A timestamp for when revocation of a Signing Profile should become effective. Signatures generated using the signing profile after this timestamp are not trusted.
1045 1046 1047 1048 1049 1050 1051 1052 |
# File 'lib/aws-sdk-signer/types.rb', line 1045 class RevokeSigningProfileRequest < Struct.new( :profile_name, :profile_version, :reason, :effective_time) SENSITIVE = [] include Aws::Structure end |
#profile_name ⇒ String
The name of the signing profile to be revoked.
1045 1046 1047 1048 1049 1050 1051 1052 |
# File 'lib/aws-sdk-signer/types.rb', line 1045 class RevokeSigningProfileRequest < Struct.new( :profile_name, :profile_version, :reason, :effective_time) SENSITIVE = [] include Aws::Structure end |
#profile_version ⇒ String
The version of the signing profile to be revoked.
1045 1046 1047 1048 1049 1050 1051 1052 |
# File 'lib/aws-sdk-signer/types.rb', line 1045 class RevokeSigningProfileRequest < Struct.new( :profile_name, :profile_version, :reason, :effective_time) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
The reason for revoking a signing profile.
1045 1046 1047 1048 1049 1050 1051 1052 |
# File 'lib/aws-sdk-signer/types.rb', line 1045 class RevokeSigningProfileRequest < Struct.new( :profile_name, :profile_version, :reason, :effective_time) SENSITIVE = [] include Aws::Structure end |