amazonka-secretsmanager-1.6.0: Amazon Secrets Manager SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.SecretsManager.UpdateSecret

Contents

Description

Modifies many of the details of a secret. If you include a ClientRequestToken and either SecretString or SecretBinary then it also creates a new version attached to the secret.

To modify the rotation configuration of a secret, use RotateSecret instead.

  • If a version with a SecretVersionId with the same value as the ClientRequestToken parameter already exists, the operation generates an error. You cannot modify an existing version, you can only create new ones.
  • If you include SecretString or SecretBinary to create a new secret version, Secrets Manager automatically attaches the staging label AWSCURRENT to the new version.

Minimum permissions

To run this command, you must have the following permissions:

  • secretsmanager:UpdateSecret
  • kms:GenerateDataKey - needed only if you use a custom KMS key to encrypt the secret. You do not need this permission to use the account's AWS managed CMK for Secrets Manager.
  • kms:Decrypt - needed only if you use a custom KMS key to encrypt the secret. You do not need this permission to use the account's AWS managed CMK for Secrets Manager.

Related operations

  • To create a new secret, use CreateSecret .
  • To add only a new version to an existing secret, use PutSecretValue .
  • To get the details for a secret, use DescribeSecret .
  • To list the versions contained in a secret, use ListSecretVersionIds .

Synopsis

Creating a Request

updateSecret Source #

Creates a value of UpdateSecret with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • usSecretBinary - (Optional) Specifies binary data that you want to encrypt and store in the new version of the secret. To use this parameter in the command-line tools, we recommend that you store your binary data in a file and then use the appropriate technique for your tool to pass the contents of the file as a parameter. Either SecretBinary or SecretString must have a value, but not both. They cannot both be empty. This parameter is not accessible using the Secrets Manager console.-- Note: This Lens automatically encodes and decodes Base64 data. The underlying isomorphism will encode to Base64 representation during serialisation, and decode from Base64 representation during deserialisation. This Lens accepts and returns only raw unencoded data.
  • usKMSKeyId - (Optional) Specifies the ARN or alias of the KMS customer master key (CMK) to be used to encrypt the protected text in the versions of this secret. If you don't specify this value, then Secrets Manager defaults to using the default CMK in the account (the one named aws/secretsmanager ). If a KMS CMK with that name doesn't exist, then Secrets Manager creates it for you automatically the first time it needs to encrypt a version's Plaintext or PlaintextString fields. Important: You can only use the account's default CMK to encrypt and decrypt if you call this operation using credentials from the same account that owns the secret. If the secret is in a different account, then you must create a custom CMK and provide the ARN in this field.
  • usSecretString - (Optional) Specifies text data that you want to encrypt and store in this new version of the secret. Either SecretBinary or SecretString must have a value, but not both. They cannot both be empty. If you create this secret by using the Secrets Manager console then Secrets Manager puts the protected secret text in only the SecretString parameter. The Secrets Manager console stores the information as a JSON structure of keyvalue pairs that the default Lambda rotation function knows how to parse. For storing multiple values, we recommend that you use a JSON text string argument and specify keyvalue pairs. For information on how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters in the AWS CLI User Guide .
  • usClientRequestToken - (Optional) If you want to add a new version to the secret, this parameter specifies a unique identifier for the new version that helps ensure idempotency. If you use the AWS CLI or one of the AWS SDK to call this operation, then you can leave this parameter empty. The CLI or SDK generates a random UUID for you and includes that in the request. If you don't use the SDK and instead generate a raw HTTP request to the Secrets Manager service endpoint, then you must generate a ClientRequestToken yourself for new versions and include that value in the request. You typically only need to interact with this value if you implement your own retry logic and want to ensure that a given secret is not created twice. We recommend that you generate a UUID-type value to ensure uniqueness within the specified secret. Secrets Manager uses this value to prevent the accidental creation of duplicate versions if there are failures and retries during the Lambda rotation function's processing. * If the ClientRequestToken value isn't already associated with a version of the secret then a new version of the secret is created. * If a version with this value already exists and that version's SecretString and SecretBinary values are the same as those in the request then the request is ignored (the operation is idempotent). * If a version with this value already exists and that version's SecretString and SecretBinary values are different from the request then an error occurs because you cannot modify an existing secret value. This value becomes the SecretVersionId of the new version.
  • usDescription - (Optional) Specifies a user-provided description of the secret.
  • usSecretId - Specifies the secret that you want to update or to which you want to add a new version. You can specify either the Amazon Resource Name (ARN) or the friendly name of the secret.

data UpdateSecret Source #

See: updateSecret smart constructor.

Instances

Eq UpdateSecret Source # 
Data UpdateSecret Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> UpdateSecret -> c UpdateSecret #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c UpdateSecret #

toConstr :: UpdateSecret -> Constr #

dataTypeOf :: UpdateSecret -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c UpdateSecret) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c UpdateSecret) #

gmapT :: (forall b. Data b => b -> b) -> UpdateSecret -> UpdateSecret #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> UpdateSecret -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> UpdateSecret -> r #

gmapQ :: (forall d. Data d => d -> u) -> UpdateSecret -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> UpdateSecret -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> UpdateSecret -> m UpdateSecret #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateSecret -> m UpdateSecret #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateSecret -> m UpdateSecret #

Show UpdateSecret Source # 
Generic UpdateSecret Source # 

Associated Types

type Rep UpdateSecret :: * -> * #

Hashable UpdateSecret Source # 
ToJSON UpdateSecret Source # 
NFData UpdateSecret Source # 

Methods

rnf :: UpdateSecret -> () #

AWSRequest UpdateSecret Source # 
ToHeaders UpdateSecret Source # 
ToPath UpdateSecret Source # 
ToQuery UpdateSecret Source # 
type Rep UpdateSecret Source # 
type Rep UpdateSecret = D1 * (MetaData "UpdateSecret" "Network.AWS.SecretsManager.UpdateSecret" "amazonka-secretsmanager-1.6.0-K7nD2j5oEj0GsgMw0kPUxD" False) (C1 * (MetaCons "UpdateSecret'" PrefixI True) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_usSecretBinary") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe (Sensitive Base64)))) ((:*:) * (S1 * (MetaSel (Just Symbol "_usKMSKeyId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_usSecretString") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe (Sensitive Text)))))) ((:*:) * (S1 * (MetaSel (Just Symbol "_usClientRequestToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) ((:*:) * (S1 * (MetaSel (Just Symbol "_usDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_usSecretId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Text))))))
type Rs UpdateSecret Source # 

Request Lenses

usSecretBinary :: Lens' UpdateSecret (Maybe ByteString) Source #

(Optional) Specifies binary data that you want to encrypt and store in the new version of the secret. To use this parameter in the command-line tools, we recommend that you store your binary data in a file and then use the appropriate technique for your tool to pass the contents of the file as a parameter. Either SecretBinary or SecretString must have a value, but not both. They cannot both be empty. This parameter is not accessible using the Secrets Manager console.-- Note: This Lens automatically encodes and decodes Base64 data. The underlying isomorphism will encode to Base64 representation during serialisation, and decode from Base64 representation during deserialisation. This Lens accepts and returns only raw unencoded data.

usKMSKeyId :: Lens' UpdateSecret (Maybe Text) Source #

(Optional) Specifies the ARN or alias of the KMS customer master key (CMK) to be used to encrypt the protected text in the versions of this secret. If you don't specify this value, then Secrets Manager defaults to using the default CMK in the account (the one named aws/secretsmanager ). If a KMS CMK with that name doesn't exist, then Secrets Manager creates it for you automatically the first time it needs to encrypt a version's Plaintext or PlaintextString fields. Important: You can only use the account's default CMK to encrypt and decrypt if you call this operation using credentials from the same account that owns the secret. If the secret is in a different account, then you must create a custom CMK and provide the ARN in this field.

usSecretString :: Lens' UpdateSecret (Maybe Text) Source #

(Optional) Specifies text data that you want to encrypt and store in this new version of the secret. Either SecretBinary or SecretString must have a value, but not both. They cannot both be empty. If you create this secret by using the Secrets Manager console then Secrets Manager puts the protected secret text in only the SecretString parameter. The Secrets Manager console stores the information as a JSON structure of keyvalue pairs that the default Lambda rotation function knows how to parse. For storing multiple values, we recommend that you use a JSON text string argument and specify keyvalue pairs. For information on how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters in the AWS CLI User Guide .

usClientRequestToken :: Lens' UpdateSecret (Maybe Text) Source #

(Optional) If you want to add a new version to the secret, this parameter specifies a unique identifier for the new version that helps ensure idempotency. If you use the AWS CLI or one of the AWS SDK to call this operation, then you can leave this parameter empty. The CLI or SDK generates a random UUID for you and includes that in the request. If you don't use the SDK and instead generate a raw HTTP request to the Secrets Manager service endpoint, then you must generate a ClientRequestToken yourself for new versions and include that value in the request. You typically only need to interact with this value if you implement your own retry logic and want to ensure that a given secret is not created twice. We recommend that you generate a UUID-type value to ensure uniqueness within the specified secret. Secrets Manager uses this value to prevent the accidental creation of duplicate versions if there are failures and retries during the Lambda rotation function's processing. * If the ClientRequestToken value isn't already associated with a version of the secret then a new version of the secret is created. * If a version with this value already exists and that version's SecretString and SecretBinary values are the same as those in the request then the request is ignored (the operation is idempotent). * If a version with this value already exists and that version's SecretString and SecretBinary values are different from the request then an error occurs because you cannot modify an existing secret value. This value becomes the SecretVersionId of the new version.

usDescription :: Lens' UpdateSecret (Maybe Text) Source #

(Optional) Specifies a user-provided description of the secret.

usSecretId :: Lens' UpdateSecret Text Source #

Specifies the secret that you want to update or to which you want to add a new version. You can specify either the Amazon Resource Name (ARN) or the friendly name of the secret.

Destructuring the Response

updateSecretResponse Source #

Creates a value of UpdateSecretResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • usrsVersionId - If a version of the secret was created or updated by this operation, then its unique identifier is returned.
  • usrsARN - The ARN of this secret.
  • usrsName - The friendly name of this secret.
  • usrsResponseStatus - -- | The response status code.

data UpdateSecretResponse Source #

See: updateSecretResponse smart constructor.

Instances

Eq UpdateSecretResponse Source # 
Data UpdateSecretResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> UpdateSecretResponse -> c UpdateSecretResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c UpdateSecretResponse #

toConstr :: UpdateSecretResponse -> Constr #

dataTypeOf :: UpdateSecretResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c UpdateSecretResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c UpdateSecretResponse) #

gmapT :: (forall b. Data b => b -> b) -> UpdateSecretResponse -> UpdateSecretResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> UpdateSecretResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> UpdateSecretResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> UpdateSecretResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> UpdateSecretResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> UpdateSecretResponse -> m UpdateSecretResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateSecretResponse -> m UpdateSecretResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateSecretResponse -> m UpdateSecretResponse #

Read UpdateSecretResponse Source # 
Show UpdateSecretResponse Source # 
Generic UpdateSecretResponse Source # 
NFData UpdateSecretResponse Source # 

Methods

rnf :: UpdateSecretResponse -> () #

type Rep UpdateSecretResponse Source # 
type Rep UpdateSecretResponse = D1 * (MetaData "UpdateSecretResponse" "Network.AWS.SecretsManager.UpdateSecret" "amazonka-secretsmanager-1.6.0-K7nD2j5oEj0GsgMw0kPUxD" False) (C1 * (MetaCons "UpdateSecretResponse'" PrefixI True) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_usrsVersionId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_usrsARN") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text)))) ((:*:) * (S1 * (MetaSel (Just Symbol "_usrsName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_usrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Int)))))

Response Lenses

usrsVersionId :: Lens' UpdateSecretResponse (Maybe Text) Source #

If a version of the secret was created or updated by this operation, then its unique identifier is returned.

usrsARN :: Lens' UpdateSecretResponse (Maybe Text) Source #

The ARN of this secret.

usrsName :: Lens' UpdateSecretResponse (Maybe Text) Source #

The friendly name of this secret.

usrsResponseStatus :: Lens' UpdateSecretResponse Int Source #

  • - | The response status code.