Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Modifies the staging labels attached to a version of a secret. Staging labels are used to track a version as it progresses through the secret rotation process. You can attach a staging label to only one version of a secret at a time. If a staging label to be added is already attached to another version, then it is moved--removed from the other version first and then attached to this one. For more information about staging labels, see Staging Labels in the Amazon Web Services Secrets Manager User Guide.
The staging labels that you specify in the VersionStage
parameter are
added to the existing list of staging labels--they don't replace it.
You can move the AWSCURRENT
staging label to this version by including
it in this call.
Whenever you move AWSCURRENT
, Secrets Manager automatically moves the
label AWSPREVIOUS
to the version that AWSCURRENT
was removed from.
If this action results in the last label being removed from a version, then the version is considered to be 'deprecated' and can be deleted by Secrets Manager.
Minimum permissions
To run this command, you must have the following permissions:
- secretsmanager:UpdateSecretVersionStage
Related operations
- To get the list of staging labels that are currently associated with
a version of a secret, use
DescribeSecret
and examine theSecretVersionsToStages
response value.
Synopsis
- data UpdateSecretVersionStage = UpdateSecretVersionStage' {}
- newUpdateSecretVersionStage :: Text -> Text -> UpdateSecretVersionStage
- updateSecretVersionStage_removeFromVersionId :: Lens' UpdateSecretVersionStage (Maybe Text)
- updateSecretVersionStage_moveToVersionId :: Lens' UpdateSecretVersionStage (Maybe Text)
- updateSecretVersionStage_secretId :: Lens' UpdateSecretVersionStage Text
- updateSecretVersionStage_versionStage :: Lens' UpdateSecretVersionStage Text
- data UpdateSecretVersionStageResponse = UpdateSecretVersionStageResponse' {}
- newUpdateSecretVersionStageResponse :: Int -> UpdateSecretVersionStageResponse
- updateSecretVersionStageResponse_arn :: Lens' UpdateSecretVersionStageResponse (Maybe Text)
- updateSecretVersionStageResponse_name :: Lens' UpdateSecretVersionStageResponse (Maybe Text)
- updateSecretVersionStageResponse_httpStatus :: Lens' UpdateSecretVersionStageResponse Int
Creating a Request
data UpdateSecretVersionStage Source #
See: newUpdateSecretVersionStage
smart constructor.
UpdateSecretVersionStage' | |
|
Instances
newUpdateSecretVersionStage Source #
:: Text | |
-> Text | |
-> UpdateSecretVersionStage |
Create a value of UpdateSecretVersionStage
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:removeFromVersionId:UpdateSecretVersionStage'
, updateSecretVersionStage_removeFromVersionId
- Specifies the secret version ID of the version that the staging label is
to be removed from. If the staging label you are trying to attach to one
version is already attached to a different version, then you must
include this parameter and specify the version that the label is to be
removed from. If the label is attached and you either do not specify
this parameter, or the version ID does not match, then the operation
fails.
$sel:moveToVersionId:UpdateSecretVersionStage'
, updateSecretVersionStage_moveToVersionId
- (Optional) The secret version ID that you want to add the staging label.
If you want to remove a label from a version, then do not specify this
parameter.
If the staging label is already attached to a different version of the
secret, then you must also specify the RemoveFromVersionId
parameter.
$sel:secretId:UpdateSecretVersionStage'
, updateSecretVersionStage_secretId
- Specifies the secret with the version with the list of staging labels
you want to modify. You can specify either the Amazon Resource Name
(ARN) or the friendly name of the secret.
For an ARN, we recommend that you specify a complete ARN rather than a partial ARN.
$sel:versionStage:UpdateSecretVersionStage'
, updateSecretVersionStage_versionStage
- The staging label to add to this version.
Request Lenses
updateSecretVersionStage_removeFromVersionId :: Lens' UpdateSecretVersionStage (Maybe Text) Source #
Specifies the secret version ID of the version that the staging label is to be removed from. If the staging label you are trying to attach to one version is already attached to a different version, then you must include this parameter and specify the version that the label is to be removed from. If the label is attached and you either do not specify this parameter, or the version ID does not match, then the operation fails.
updateSecretVersionStage_moveToVersionId :: Lens' UpdateSecretVersionStage (Maybe Text) Source #
(Optional) The secret version ID that you want to add the staging label. If you want to remove a label from a version, then do not specify this parameter.
If the staging label is already attached to a different version of the
secret, then you must also specify the RemoveFromVersionId
parameter.
updateSecretVersionStage_secretId :: Lens' UpdateSecretVersionStage Text Source #
Specifies the secret with the version with the list of staging labels you want to modify. You can specify either the Amazon Resource Name (ARN) or the friendly name of the secret.
For an ARN, we recommend that you specify a complete ARN rather than a partial ARN.
updateSecretVersionStage_versionStage :: Lens' UpdateSecretVersionStage Text Source #
The staging label to add to this version.
Destructuring the Response
data UpdateSecretVersionStageResponse Source #
See: newUpdateSecretVersionStageResponse
smart constructor.
Instances
newUpdateSecretVersionStageResponse Source #
Create a value of UpdateSecretVersionStageResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:arn:UpdateSecretVersionStageResponse'
, updateSecretVersionStageResponse_arn
- The ARN of the secret with the modified staging label.
$sel:name:UpdateSecretVersionStageResponse'
, updateSecretVersionStageResponse_name
- The friendly name of the secret with the modified staging label.
$sel:httpStatus:UpdateSecretVersionStageResponse'
, updateSecretVersionStageResponse_httpStatus
- The response's http status code.
Response Lenses
updateSecretVersionStageResponse_arn :: Lens' UpdateSecretVersionStageResponse (Maybe Text) Source #
The ARN of the secret with the modified staging label.
updateSecretVersionStageResponse_name :: Lens' UpdateSecretVersionStageResponse (Maybe Text) Source #
The friendly name of the secret with the modified staging label.
updateSecretVersionStageResponse_httpStatus :: Lens' UpdateSecretVersionStageResponse Int Source #
The response's http status code.