Class: Aws::SecretsManager::Types::CancelRotateSecretResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecretsManager::Types::CancelRotateSecretResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-secretsmanager/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the secret.
-
#name ⇒ String
The name of the secret.
-
#version_id ⇒ String
The unique identifier of the version of the secret created during the rotation.
Instance Attribute Details
#arn ⇒ String
The ARN of the secret.
143 144 145 146 147 148 149 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 143 class CancelRotateSecretResponse < Struct.new( :arn, :name, :version_id) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the secret.
143 144 145 146 147 148 149 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 143 class CancelRotateSecretResponse < Struct.new( :arn, :name, :version_id) SENSITIVE = [] include Aws::Structure end |
#version_id ⇒ String
The unique identifier of the version of the secret created during the rotation. This version might not be complete, and should be evaluated for possible deletion. We recommend that you remove the ‘VersionStage` value `AWSPENDING` from this version so that Secrets Manager can delete it. Failing to clean up a cancelled rotation can block you from starting future rotations.
143 144 145 146 147 148 149 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 143 class CancelRotateSecretResponse < Struct.new( :arn, :name, :version_id) SENSITIVE = [] include Aws::Structure end |