public class GetSecretValueResponse extends AbstractModel
Constructor and Description |
---|
GetSecretValueResponse() |
Modifier and Type | Method and Description |
---|---|
String |
getRequestId()
Get The unique request ID, which is returned for each request.
|
String |
getSecretBinary()
Get If the `SecretBinary` field in the request body is specified in the `CreateSecret` call, this field is returned and base64-encoded.
|
String |
getSecretName()
Get Name of the Secret.
|
String |
getSecretString()
Get If the `SecretString` field in the request body is specified in the `CreateSecret` call, this field is returned.
|
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 If the `SecretBinary` field in the request body is specified in the `CreateSecret` call, this field is returned and base64-encoded.
|
void |
setSecretName(String SecretName)
Set Name of the Secret.
|
void |
setSecretString(String SecretString)
Set If the `SecretString` field in the request body is specified in the `CreateSecret` call, this field is returned.
|
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 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
- If the `SecretBinary` field in the request body is specified in the `CreateSecret` call, this field is returned and base64-encoded. The caller needs to perform base64 decoding to obtain the original data. Either `SecretBinary` or `SecretString` will be returned.public String getSecretString()
public void setSecretString(String SecretString)
SecretString
- If the `SecretString` field in the request body is specified in the `CreateSecret` call, this field is returned. Either `SecretBinary` or `SecretString` will be returned.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 © 2021. All rights reserved.