/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the secretsmanager-2017-10-17.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.SecretsManager.Model { /// /// Container for the parameters to the GetSecretValue operation. /// Retrieves the contents of the encrypted fields SecretString or SecretBinary /// from the specified version of a secret, whichever contains content. /// /// /// /// We recommend that you cache your secret values by using client-side caching. Caching /// secrets improves speed and reduces your costs. For more information, see Cache /// secrets for your applications. /// /// /// /// To retrieve the previous version of a secret, use VersionStage and specify /// AWSPREVIOUS. To revert to the previous version of a secret, call UpdateSecretVersionStage. /// /// /// /// Secrets Manager generates a CloudTrail log entry when you call this action. Do not /// include sensitive information in request parameters because it might be logged. For /// more information, see Logging /// Secrets Manager events with CloudTrail. /// /// /// /// Required permissions: secretsmanager:GetSecretValue. If the /// secret is encrypted using a customer-managed key instead of the Amazon Web Services /// managed key aws/secretsmanager, then you also need kms:Decrypt /// permissions for that key. For more information, see /// IAM policy actions for Secrets Manager and Authentication /// and access control in Secrets Manager. /// /// public partial class GetSecretValueRequest : AmazonSecretsManagerRequest { private string _secretId; private string _versionId; private string _versionStage; /// /// Gets and sets the property SecretId. /// /// The ARN or name of the secret to retrieve. /// /// /// /// For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. /// See Finding /// a secret from a partial ARN. /// /// [AWSProperty(Required=true, Min=1, Max=2048)] public string SecretId { get { return this._secretId; } set { this._secretId = value; } } // Check to see if SecretId property is set internal bool IsSetSecretId() { return this._secretId != null; } /// /// Gets and sets the property VersionId. /// /// The unique identifier of the version of the secret to retrieve. If you include both /// this parameter and VersionStage, the two parameters must refer to the /// same secret version. If you don't specify either a VersionStage or VersionId, /// then Secrets Manager returns the AWSCURRENT version. /// /// /// /// This value is typically a UUID-type /// value with 32 hexadecimal digits. /// /// [AWSProperty(Min=32, Max=64)] public string VersionId { get { return this._versionId; } set { this._versionId = value; } } // Check to see if VersionId property is set internal bool IsSetVersionId() { return this._versionId != null; } /// /// Gets and sets the property VersionStage. /// /// The staging label of the version of the secret to retrieve. /// /// /// /// Secrets Manager uses staging labels to keep track of different versions during the /// rotation process. If you include both this parameter and VersionId, the /// two parameters must refer to the same secret version. If you don't specify either /// a VersionStage or VersionId, Secrets Manager returns the /// AWSCURRENT version. /// /// [AWSProperty(Min=1, Max=256)] public string VersionStage { get { return this._versionStage; } set { this._versionStage = value; } } // Check to see if VersionStage property is set internal bool IsSetVersionStage() { return this._versionStage != null; } } }