public static interface GetSecretValueResponse.Builder extends SecretsManagerResponse.Builder, SdkPojo, CopyableBuilder<GetSecretValueResponse.Builder,GetSecretValueResponse>
Modifier and Type | Method and Description |
---|---|
GetSecretValueResponse.Builder |
arn(String arn)
The ARN of the secret.
|
GetSecretValueResponse.Builder |
createdDate(Instant createdDate)
The date and time that this version of the secret was created.
|
GetSecretValueResponse.Builder |
name(String name)
The friendly name of the secret.
|
GetSecretValueResponse.Builder |
secretBinary(SdkBytes secretBinary)
The decrypted secret value, if the secret value was originally provided as binary data in the form of a byte
array.
|
GetSecretValueResponse.Builder |
secretString(String secretString)
The decrypted secret value, if the secret value was originally provided as a string or through the Secrets
Manager console.
|
GetSecretValueResponse.Builder |
versionId(String versionId)
The unique identifier of this version of the secret.
|
GetSecretValueResponse.Builder |
versionStages(Collection<String> versionStages)
A list of all of the staging labels currently attached to this version of the secret.
|
GetSecretValueResponse.Builder |
versionStages(String... versionStages)
A list of all of the staging labels currently attached to this version of the secret.
|
build, responseMetadata, responseMetadata
sdkHttpResponse, sdkHttpResponse
equalsBySdkFields, sdkFields
copy
applyMutation, build
GetSecretValueResponse.Builder arn(String arn)
The ARN of the secret.
arn
- The ARN of the secret.GetSecretValueResponse.Builder name(String name)
The friendly name of the secret.
name
- The friendly name of the secret.GetSecretValueResponse.Builder versionId(String versionId)
The unique identifier of this version of the secret.
versionId
- The unique identifier of this version of the secret.GetSecretValueResponse.Builder secretBinary(SdkBytes secretBinary)
The decrypted secret value, if the secret value 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.
If the secret was created by using the Secrets Manager console, or if the secret value was originally
provided as a string, then this field is omitted. The secret value appears in SecretString
instead.
secretBinary
- The decrypted secret value, if the secret value 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.
If the secret was created by using the Secrets Manager console, or if the secret value was originally
provided as a string, then this field is omitted. The secret value appears in
SecretString
instead.
GetSecretValueResponse.Builder secretString(String secretString)
The decrypted secret value, if the secret value was originally provided as a string or through the Secrets Manager console.
If this secret was created by using the console, then Secrets Manager stores the information as a JSON structure of key/value pairs.
secretString
- The decrypted secret value, if the secret value was originally provided as a string or through the
Secrets Manager console.
If this secret was created by using the console, then Secrets Manager stores the information as a JSON structure of key/value pairs.
GetSecretValueResponse.Builder versionStages(Collection<String> versionStages)
A list of all of the staging labels currently attached to this version of the secret.
versionStages
- A list of all of the staging labels currently attached to this version of the secret.GetSecretValueResponse.Builder versionStages(String... versionStages)
A list of all of the staging labels currently attached to this version of the secret.
versionStages
- A list of all of the staging labels currently attached to this version of the secret.GetSecretValueResponse.Builder createdDate(Instant createdDate)
The date and time that this version of the secret was created. If you don't specify which version in
VersionId
or VersionStage
, then Secrets Manager uses the AWSCURRENT
version.
createdDate
- The date and time that this version of the secret was created. If you don't specify which version in
VersionId
or VersionStage
, then Secrets Manager uses the
AWSCURRENT
version.Copyright © 2023. All rights reserved.