Class ModifyReplicationSubnetGroupRequest
- java.lang.Object
-
- com.amazonaws.AmazonWebServiceRequest
-
- com.amazonaws.services.databasemigrationservice.model.ModifyReplicationSubnetGroupRequest
-
- All Implemented Interfaces:
ReadLimitInfo
,Serializable
,Cloneable
public class ModifyReplicationSubnetGroupRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.amazonaws.AmazonWebServiceRequest
NOOP
-
-
Constructor Summary
Constructors Constructor Description ModifyReplicationSubnetGroupRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ModifyReplicationSubnetGroupRequest
clone()
Creates a shallow clone of this request.boolean
equals(Object obj)
String
getReplicationSubnetGroupDescription()
The description of the replication instance subnet group.String
getReplicationSubnetGroupIdentifier()
The name of the replication instance subnet group.List<String>
getSubnetIds()
A list of subnet IDs.int
hashCode()
void
setReplicationSubnetGroupDescription(String replicationSubnetGroupDescription)
The description of the replication instance subnet group.void
setReplicationSubnetGroupIdentifier(String replicationSubnetGroupIdentifier)
The name of the replication instance subnet group.void
setSubnetIds(Collection<String> subnetIds)
A list of subnet IDs.String
toString()
Returns a string representation of this object; useful for testing and debugging.ModifyReplicationSubnetGroupRequest
withReplicationSubnetGroupDescription(String replicationSubnetGroupDescription)
The description of the replication instance subnet group.ModifyReplicationSubnetGroupRequest
withReplicationSubnetGroupIdentifier(String replicationSubnetGroupIdentifier)
The name of the replication instance subnet group.ModifyReplicationSubnetGroupRequest
withSubnetIds(String... subnetIds)
A list of subnet IDs.ModifyReplicationSubnetGroupRequest
withSubnetIds(Collection<String> subnetIds)
A list of subnet IDs.-
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
-
-
-
-
Method Detail
-
setReplicationSubnetGroupIdentifier
public void setReplicationSubnetGroupIdentifier(String replicationSubnetGroupIdentifier)
The name of the replication instance subnet group.
- Parameters:
replicationSubnetGroupIdentifier
- The name of the replication instance subnet group.
-
getReplicationSubnetGroupIdentifier
public String getReplicationSubnetGroupIdentifier()
The name of the replication instance subnet group.
- Returns:
- The name of the replication instance subnet group.
-
withReplicationSubnetGroupIdentifier
public ModifyReplicationSubnetGroupRequest withReplicationSubnetGroupIdentifier(String replicationSubnetGroupIdentifier)
The name of the replication instance subnet group.
- Parameters:
replicationSubnetGroupIdentifier
- The name of the replication instance subnet group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setReplicationSubnetGroupDescription
public void setReplicationSubnetGroupDescription(String replicationSubnetGroupDescription)
The description of the replication instance subnet group.
- Parameters:
replicationSubnetGroupDescription
- The description of the replication instance subnet group.
-
getReplicationSubnetGroupDescription
public String getReplicationSubnetGroupDescription()
The description of the replication instance subnet group.
- Returns:
- The description of the replication instance subnet group.
-
withReplicationSubnetGroupDescription
public ModifyReplicationSubnetGroupRequest withReplicationSubnetGroupDescription(String replicationSubnetGroupDescription)
The description of the replication instance subnet group.
- Parameters:
replicationSubnetGroupDescription
- The description of the replication instance subnet group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getSubnetIds
public List<String> getSubnetIds()
A list of subnet IDs.
- Returns:
- A list of subnet IDs.
-
setSubnetIds
public void setSubnetIds(Collection<String> subnetIds)
A list of subnet IDs.
- Parameters:
subnetIds
- A list of subnet IDs.
-
withSubnetIds
public ModifyReplicationSubnetGroupRequest withSubnetIds(String... subnetIds)
A list of subnet IDs.
NOTE: This method appends the values to the existing list (if any). Use
setSubnetIds(java.util.Collection)
orwithSubnetIds(java.util.Collection)
if you want to override the existing values.- Parameters:
subnetIds
- A list of subnet IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withSubnetIds
public ModifyReplicationSubnetGroupRequest withSubnetIds(Collection<String> subnetIds)
A list of subnet IDs.
- Parameters:
subnetIds
- A list of subnet IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ModifyReplicationSubnetGroupRequest clone()
Description copied from class:AmazonWebServiceRequest
Creates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.- Overrides:
clone
in classAmazonWebServiceRequest
- See Also:
Object.clone()
-
-