public class GetSecretValueResponse extends AbstractModel
Constructor and Description |
---|
GetSecretValueResponse() |
GetSecretValueResponse(GetSecretValueResponse source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getRequestId()
Get The unique request ID, which is returned for each request.
|
String |
getSecretBinary()
Get When creating a credential (CreateSecret), if you specify binary data, this field will be the Base64-encoded returned result.
|
String |
getSecretName()
Get Name of the Secret.
|
String |
getSecretString()
Get When creating a credential (CreateSecret), if you specify general text data, this field will be the returned result.
|
String |
getVersionId()
Get ID of the Secret version.
|
void |
setRequestId(String RequestId)
Set The unique request ID, which is returned for each request.
|
void |
setSecretBinary(String SecretBinary)
Set When creating a credential (CreateSecret), if you specify binary data, this field will be the Base64-encoded returned result.
|
void |
setSecretName(String SecretName)
Set Name of the Secret.
|
void |
setSecretString(String SecretString)
Set When creating a credential (CreateSecret), if you specify general text data, this field will be the returned result.
|
void |
setVersionId(String VersionId)
Set ID of the Secret version.
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonString
public GetSecretValueResponse()
public GetSecretValueResponse(GetSecretValueResponse source)
public String getSecretName()
public void setSecretName(String SecretName)
SecretName
- Name of the Secret.public String getVersionId()
public void setVersionId(String VersionId)
VersionId
- ID of the Secret version.public String getSecretBinary()
public void setSecretBinary(String SecretBinary)
SecretBinary
- When creating a credential (CreateSecret), if you specify binary data, this field will be the Base64-encoded returned result. The application needs to Base64-decode the result to get the original data.
Either `SecretBinary` or `SecretString` cannot be empty.public String getSecretString()
public void setSecretString(String SecretString)
SecretString
- When creating a credential (CreateSecret), if you specify general text data, this field will be the returned result.
Either `SecretBinary` or `SecretString` cannot be empty.public String getRequestId()
public void setRequestId(String RequestId)
RequestId
- The unique request ID, which is returned for each request. RequestId is required for locating a problem.Copyright © 2023. All rights reserved.