/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace SecretsManager { namespace Model { /** */ class AWS_SECRETSMANAGER_API DescribeSecretRequest : public SecretsManagerRequest { public: DescribeSecretRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeSecret"; } Aws::String SerializePayload() const override; Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The identifier of the secret whose details you want to retrieve. You can * specify either the Amazon Resource Name (ARN) or the friendly name of the * secret.

If you specify an ARN, we generally recommend that you * specify a complete ARN. You can specify a partial ARN too—for example, if you * don’t include the final hyphen and six random characters that Secrets Manager * adds at the end of the ARN when you created the secret. A partial ARN match can * work as long as it uniquely matches only one secret. However, if your secret has * a name that ends in a hyphen followed by six characters (before Secrets Manager * adds the hyphen and six characters to the ARN) and you try to use that as a * partial ARN, then those characters cause Secrets Manager to assume that you’re * specifying a complete ARN. This confusion can cause unexpected results. To avoid * this situation, we recommend that you don’t create secret names ending with a * hyphen followed by six characters.

If you specify an incomplete ARN * without the random suffix, and instead provide the 'friendly name', you * must not include the random suffix. If you do include the random suffix * added by Secrets Manager, you receive either a ResourceNotFoundException * or an AccessDeniedException error, depending on your permissions.

* */ inline const Aws::String& GetSecretId() const{ return m_secretId; } /** *

The identifier of the secret whose details you want to retrieve. You can * specify either the Amazon Resource Name (ARN) or the friendly name of the * secret.

If you specify an ARN, we generally recommend that you * specify a complete ARN. You can specify a partial ARN too—for example, if you * don’t include the final hyphen and six random characters that Secrets Manager * adds at the end of the ARN when you created the secret. A partial ARN match can * work as long as it uniquely matches only one secret. However, if your secret has * a name that ends in a hyphen followed by six characters (before Secrets Manager * adds the hyphen and six characters to the ARN) and you try to use that as a * partial ARN, then those characters cause Secrets Manager to assume that you’re * specifying a complete ARN. This confusion can cause unexpected results. To avoid * this situation, we recommend that you don’t create secret names ending with a * hyphen followed by six characters.

If you specify an incomplete ARN * without the random suffix, and instead provide the 'friendly name', you * must not include the random suffix. If you do include the random suffix * added by Secrets Manager, you receive either a ResourceNotFoundException * or an AccessDeniedException error, depending on your permissions.

* */ inline bool SecretIdHasBeenSet() const { return m_secretIdHasBeenSet; } /** *

The identifier of the secret whose details you want to retrieve. You can * specify either the Amazon Resource Name (ARN) or the friendly name of the * secret.

If you specify an ARN, we generally recommend that you * specify a complete ARN. You can specify a partial ARN too—for example, if you * don’t include the final hyphen and six random characters that Secrets Manager * adds at the end of the ARN when you created the secret. A partial ARN match can * work as long as it uniquely matches only one secret. However, if your secret has * a name that ends in a hyphen followed by six characters (before Secrets Manager * adds the hyphen and six characters to the ARN) and you try to use that as a * partial ARN, then those characters cause Secrets Manager to assume that you’re * specifying a complete ARN. This confusion can cause unexpected results. To avoid * this situation, we recommend that you don’t create secret names ending with a * hyphen followed by six characters.

If you specify an incomplete ARN * without the random suffix, and instead provide the 'friendly name', you * must not include the random suffix. If you do include the random suffix * added by Secrets Manager, you receive either a ResourceNotFoundException * or an AccessDeniedException error, depending on your permissions.

* */ inline void SetSecretId(const Aws::String& value) { m_secretIdHasBeenSet = true; m_secretId = value; } /** *

The identifier of the secret whose details you want to retrieve. You can * specify either the Amazon Resource Name (ARN) or the friendly name of the * secret.

If you specify an ARN, we generally recommend that you * specify a complete ARN. You can specify a partial ARN too—for example, if you * don’t include the final hyphen and six random characters that Secrets Manager * adds at the end of the ARN when you created the secret. A partial ARN match can * work as long as it uniquely matches only one secret. However, if your secret has * a name that ends in a hyphen followed by six characters (before Secrets Manager * adds the hyphen and six characters to the ARN) and you try to use that as a * partial ARN, then those characters cause Secrets Manager to assume that you’re * specifying a complete ARN. This confusion can cause unexpected results. To avoid * this situation, we recommend that you don’t create secret names ending with a * hyphen followed by six characters.

If you specify an incomplete ARN * without the random suffix, and instead provide the 'friendly name', you * must not include the random suffix. If you do include the random suffix * added by Secrets Manager, you receive either a ResourceNotFoundException * or an AccessDeniedException error, depending on your permissions.

* */ inline void SetSecretId(Aws::String&& value) { m_secretIdHasBeenSet = true; m_secretId = std::move(value); } /** *

The identifier of the secret whose details you want to retrieve. You can * specify either the Amazon Resource Name (ARN) or the friendly name of the * secret.

If you specify an ARN, we generally recommend that you * specify a complete ARN. You can specify a partial ARN too—for example, if you * don’t include the final hyphen and six random characters that Secrets Manager * adds at the end of the ARN when you created the secret. A partial ARN match can * work as long as it uniquely matches only one secret. However, if your secret has * a name that ends in a hyphen followed by six characters (before Secrets Manager * adds the hyphen and six characters to the ARN) and you try to use that as a * partial ARN, then those characters cause Secrets Manager to assume that you’re * specifying a complete ARN. This confusion can cause unexpected results. To avoid * this situation, we recommend that you don’t create secret names ending with a * hyphen followed by six characters.

If you specify an incomplete ARN * without the random suffix, and instead provide the 'friendly name', you * must not include the random suffix. If you do include the random suffix * added by Secrets Manager, you receive either a ResourceNotFoundException * or an AccessDeniedException error, depending on your permissions.

* */ inline void SetSecretId(const char* value) { m_secretIdHasBeenSet = true; m_secretId.assign(value); } /** *

The identifier of the secret whose details you want to retrieve. You can * specify either the Amazon Resource Name (ARN) or the friendly name of the * secret.

If you specify an ARN, we generally recommend that you * specify a complete ARN. You can specify a partial ARN too—for example, if you * don’t include the final hyphen and six random characters that Secrets Manager * adds at the end of the ARN when you created the secret. A partial ARN match can * work as long as it uniquely matches only one secret. However, if your secret has * a name that ends in a hyphen followed by six characters (before Secrets Manager * adds the hyphen and six characters to the ARN) and you try to use that as a * partial ARN, then those characters cause Secrets Manager to assume that you’re * specifying a complete ARN. This confusion can cause unexpected results. To avoid * this situation, we recommend that you don’t create secret names ending with a * hyphen followed by six characters.

If you specify an incomplete ARN * without the random suffix, and instead provide the 'friendly name', you * must not include the random suffix. If you do include the random suffix * added by Secrets Manager, you receive either a ResourceNotFoundException * or an AccessDeniedException error, depending on your permissions.

* */ inline DescribeSecretRequest& WithSecretId(const Aws::String& value) { SetSecretId(value); return *this;} /** *

The identifier of the secret whose details you want to retrieve. You can * specify either the Amazon Resource Name (ARN) or the friendly name of the * secret.

If you specify an ARN, we generally recommend that you * specify a complete ARN. You can specify a partial ARN too—for example, if you * don’t include the final hyphen and six random characters that Secrets Manager * adds at the end of the ARN when you created the secret. A partial ARN match can * work as long as it uniquely matches only one secret. However, if your secret has * a name that ends in a hyphen followed by six characters (before Secrets Manager * adds the hyphen and six characters to the ARN) and you try to use that as a * partial ARN, then those characters cause Secrets Manager to assume that you’re * specifying a complete ARN. This confusion can cause unexpected results. To avoid * this situation, we recommend that you don’t create secret names ending with a * hyphen followed by six characters.

If you specify an incomplete ARN * without the random suffix, and instead provide the 'friendly name', you * must not include the random suffix. If you do include the random suffix * added by Secrets Manager, you receive either a ResourceNotFoundException * or an AccessDeniedException error, depending on your permissions.

* */ inline DescribeSecretRequest& WithSecretId(Aws::String&& value) { SetSecretId(std::move(value)); return *this;} /** *

The identifier of the secret whose details you want to retrieve. You can * specify either the Amazon Resource Name (ARN) or the friendly name of the * secret.

If you specify an ARN, we generally recommend that you * specify a complete ARN. You can specify a partial ARN too—for example, if you * don’t include the final hyphen and six random characters that Secrets Manager * adds at the end of the ARN when you created the secret. A partial ARN match can * work as long as it uniquely matches only one secret. However, if your secret has * a name that ends in a hyphen followed by six characters (before Secrets Manager * adds the hyphen and six characters to the ARN) and you try to use that as a * partial ARN, then those characters cause Secrets Manager to assume that you’re * specifying a complete ARN. This confusion can cause unexpected results. To avoid * this situation, we recommend that you don’t create secret names ending with a * hyphen followed by six characters.

If you specify an incomplete ARN * without the random suffix, and instead provide the 'friendly name', you * must not include the random suffix. If you do include the random suffix * added by Secrets Manager, you receive either a ResourceNotFoundException * or an AccessDeniedException error, depending on your permissions.

* */ inline DescribeSecretRequest& WithSecretId(const char* value) { SetSecretId(value); return *this;} private: Aws::String m_secretId; bool m_secretIdHasBeenSet; }; } // namespace Model } // namespace SecretsManager } // namespace Aws