Class GetSecretValueRequest
- java.lang.Object
-
- software.amazon.awssdk.core.SdkRequest
-
- software.amazon.awssdk.awscore.AwsRequest
-
- software.amazon.awssdk.services.secretsmanager.model.SecretsManagerRequest
-
- software.amazon.awssdk.services.secretsmanager.model.GetSecretValueRequest
-
- All Implemented Interfaces:
SdkPojo,ToCopyableBuilder<GetSecretValueRequest.Builder,GetSecretValueRequest>
@Generated("software.amazon.awssdk:codegen") public final class GetSecretValueRequest extends SecretsManagerRequest implements ToCopyableBuilder<GetSecretValueRequest.Builder,GetSecretValueRequest>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceGetSecretValueRequest.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GetSecretValueRequest.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()List<SdkField<?>>sdkFields()StringsecretId()The ARN or name of the secret to retrieve.static Class<? extends GetSecretValueRequest.Builder>serializableBuilderClass()GetSecretValueRequest.BuildertoBuilder()StringtoString()Returns a string representation of this object.StringversionId()The unique identifier of the version of the secret to retrieve.StringversionStage()The staging label of the version of the secret to retrieve.-
Methods inherited from class software.amazon.awssdk.awscore.AwsRequest
overrideConfiguration
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
secretId
public final String secretId()
The ARN or name of the secret to retrieve. To retrieve a secret from another account, you must use an ARN.
For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See Finding a secret from a partial ARN.
- Returns:
- The ARN or name of the secret to retrieve. To retrieve a secret from another account, you must use an
ARN.
For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See Finding a secret from a partial ARN.
-
versionId
public final String 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 aVersionStageorVersionId, then Secrets Manager returns theAWSCURRENTversion.This value is typically a UUID-type value with 32 hexadecimal digits.
- Returns:
- 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 aVersionStageorVersionId, then Secrets Manager returns theAWSCURRENTversion.This value is typically a UUID-type value with 32 hexadecimal digits.
-
versionStage
public final String 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 aVersionStageorVersionId, Secrets Manager returns theAWSCURRENTversion.- Returns:
- 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 aVersionStageorVersionId, Secrets Manager returns theAWSCURRENTversion.
-
toBuilder
public GetSecretValueRequest.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<GetSecretValueRequest.Builder,GetSecretValueRequest>- Specified by:
toBuilderin classSecretsManagerRequest
-
builder
public static GetSecretValueRequest.Builder builder()
-
serializableBuilderClass
public static Class<? extends GetSecretValueRequest.Builder> serializableBuilderClass()
-
hashCode
public final int hashCode()
- Overrides:
hashCodein classAwsRequest
-
equals
public final boolean equals(Object obj)
- Overrides:
equalsin classAwsRequest
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
getValueForField
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
- Overrides:
getValueForFieldin classSdkRequest
-
-