Table of Contents

Class GetSecretValueResponse

Namespace
Amazon.SecretsManager.Model
Assembly
AWSSDK.SecretsManager.dll

This is the response object from the GetSecretValue operation.

public class GetSecretValueResponse : AmazonWebServiceResponse
Inheritance
GetSecretValueResponse

Constructors

GetSecretValueResponse()

public GetSecretValueResponse()

Properties

ARN

Gets and sets the property ARN.

The ARN of the secret.

public string ARN { get; set; }

Property Value

string

CreatedDate

Gets and sets the property CreatedDate.

The date and time that this version of the secret was created.

public DateTime CreatedDate { get; set; }

Property Value

DateTime

Name

Gets and sets the property Name.

The friendly name of the secret.

public string Name { get; set; }

Property Value

string

SecretBinary

Gets and sets the property SecretBinary.

The decrypted part of the protected secret information that was originally provided as binary data in the form of a byte array. The response parameter represents the binary data as a base64-encoded string.

This parameter is not used if the secret is created by the Secrets Manager console.

If you store custom information in this field of the secret, then you must code your Lambda rotation function to parse and interpret whatever you store in the

SecretString
or
SecretBinary
fields.
public MemoryStream SecretBinary { get; set; }

Property Value

MemoryStream

SecretString

Gets and sets the property SecretString.

The decrypted part of the protected secret information that was originally provided as a string.

If you create this secret by using the Secrets Manager console then only the

SecretString
parameter contains data. Secrets Manager stores the information as a JSON structure of key/value pairs that the Lambda rotation function knows how to parse.

If you store custom information in the secret by using the CreateSecret, UpdateSecret, or PutSecretValue API operations instead of the Secrets Manager console, or by using the Other secret type in the console, then you must code your Lambda rotation function to parse and interpret those values.

public string SecretString { get; set; }

Property Value

string

VersionId

Gets and sets the property VersionId.

The unique identifier of this version of the secret.

public string VersionId { get; set; }

Property Value

string

VersionStages

Gets and sets the property VersionStages.

A list of all of the staging labels currently attached to this version of the secret.

public List<string> VersionStages { get; set; }

Property Value

List<string>