public class PutSecretValueRequest extends AbstractModel
| Constructor and Description | 
|---|
| PutSecretValueRequest() | 
| PutSecretValueRequest(PutSecretValueRequest 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 | getSecretBinary()Get Base64-encoded binary credential information. | 
| String | getSecretName()Get Name of a Secret where the version is added to. | 
| String | getSecretString()Get Secret information plaintext in text format, base64 encoding is not needed. | 
| String | getVersionId()Get ID of the new Secret version. | 
| void | setSecretBinary(String SecretBinary)Set Base64-encoded binary credential information. | 
| void | setSecretName(String SecretName)Set Name of a Secret where the version is added to. | 
| void | setSecretString(String SecretString)Set Secret information plaintext in text format, base64 encoding is not needed. | 
| void | setVersionId(String VersionId)Set ID of the new 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, toJsonStringpublic PutSecretValueRequest()
public PutSecretValueRequest(PutSecretValueRequest source)
public String getSecretName()
public void setSecretName(String SecretName)
SecretName - Name of a Secret where the version is added to.public String getVersionId()
public void setVersionId(String VersionId)
VersionId - ID of the new Secret version. It can be up to 64 bytes, contain letters, digits, hyphens (-), and underscores (_), and must begin with a letter or digit.public String getSecretBinary()
public void setSecretBinary(String SecretBinary)
SecretBinary - Base64-encoded binary credential information.
Either `SecretBinary` or `SecretString` must be set.public String getSecretString()
public void setSecretString(String SecretString)
SecretString - Secret information plaintext in text format, base64 encoding is not needed. Either `SecretBinary` or `SecretString` must be set.Copyright © 2023. All rights reserved.