Class DeleteTagsForDomainRequest
- java.lang.Object
-
- com.amazonaws.AmazonWebServiceRequest
-
- com.amazonaws.services.route53domains.model.DeleteTagsForDomainRequest
-
- All Implemented Interfaces:
ReadLimitInfo,Serializable,Cloneable
public class DeleteTagsForDomainRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
The DeleteTagsForDomainRequest includes the following elements.
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.amazonaws.AmazonWebServiceRequest
NOOP
-
-
Constructor Summary
Constructors Constructor Description DeleteTagsForDomainRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeleteTagsForDomainRequestclone()Creates a shallow clone of this request.booleanequals(Object obj)StringgetDomainName()The domain for which you want to delete one or more tags.List<String>getTagsToDelete()A list of tag keys to delete.inthashCode()voidsetDomainName(String domainName)The domain for which you want to delete one or more tags.voidsetTagsToDelete(Collection<String> tagsToDelete)A list of tag keys to delete.StringtoString()Returns a string representation of this object; useful for testing and debugging.DeleteTagsForDomainRequestwithDomainName(String domainName)The domain for which you want to delete one or more tags.DeleteTagsForDomainRequestwithTagsToDelete(String... tagsToDelete)A list of tag keys to delete.DeleteTagsForDomainRequestwithTagsToDelete(Collection<String> tagsToDelete)A list of tag keys to delete.-
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
-
setDomainName
public void setDomainName(String domainName)
The domain for which you want to delete one or more tags.
The name of a domain.
Type: String
Default: None
Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they're surrounded by letters, numbers, or other hyphens. You can't specify a hyphen at the beginning or end of a label. To specify an Internationalized Domain Name, you must convert the name to Punycode.
Required: Yes
- Parameters:
domainName- The domain for which you want to delete one or more tags.The name of a domain.
Type: String
Default: None
Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they're surrounded by letters, numbers, or other hyphens. You can't specify a hyphen at the beginning or end of a label. To specify an Internationalized Domain Name, you must convert the name to Punycode.
Required: Yes
-
getDomainName
public String getDomainName()
The domain for which you want to delete one or more tags.
The name of a domain.
Type: String
Default: None
Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they're surrounded by letters, numbers, or other hyphens. You can't specify a hyphen at the beginning or end of a label. To specify an Internationalized Domain Name, you must convert the name to Punycode.
Required: Yes
- Returns:
- The domain for which you want to delete one or more tags.
The name of a domain.
Type: String
Default: None
Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they're surrounded by letters, numbers, or other hyphens. You can't specify a hyphen at the beginning or end of a label. To specify an Internationalized Domain Name, you must convert the name to Punycode.
Required: Yes
-
withDomainName
public DeleteTagsForDomainRequest withDomainName(String domainName)
The domain for which you want to delete one or more tags.
The name of a domain.
Type: String
Default: None
Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they're surrounded by letters, numbers, or other hyphens. You can't specify a hyphen at the beginning or end of a label. To specify an Internationalized Domain Name, you must convert the name to Punycode.
Required: Yes
- Parameters:
domainName- The domain for which you want to delete one or more tags.The name of a domain.
Type: String
Default: None
Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they're surrounded by letters, numbers, or other hyphens. You can't specify a hyphen at the beginning or end of a label. To specify an Internationalized Domain Name, you must convert the name to Punycode.
Required: Yes
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getTagsToDelete
public List<String> getTagsToDelete()
A list of tag keys to delete.
Type: A list that contains the keys of the tags that you want to delete.
Default: None
Required: No
'>- Returns:
- A list of tag keys to delete.
Type: A list that contains the keys of the tags that you want to delete.
Default: None
Required: No
-
setTagsToDelete
public void setTagsToDelete(Collection<String> tagsToDelete)
A list of tag keys to delete.
Type: A list that contains the keys of the tags that you want to delete.
Default: None
Required: No
'>- Parameters:
tagsToDelete- A list of tag keys to delete.Type: A list that contains the keys of the tags that you want to delete.
Default: None
Required: No
-
withTagsToDelete
public DeleteTagsForDomainRequest withTagsToDelete(String... tagsToDelete)
A list of tag keys to delete.
Type: A list that contains the keys of the tags that you want to delete.
Default: None
Required: No
'>NOTE: This method appends the values to the existing list (if any). Use
setTagsToDelete(java.util.Collection)orwithTagsToDelete(java.util.Collection)if you want to override the existing values.- Parameters:
tagsToDelete- A list of tag keys to delete.Type: A list that contains the keys of the tags that you want to delete.
Default: None
Required: No
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withTagsToDelete
public DeleteTagsForDomainRequest withTagsToDelete(Collection<String> tagsToDelete)
A list of tag keys to delete.
Type: A list that contains the keys of the tags that you want to delete.
Default: None
Required: No
'>- Parameters:
tagsToDelete- A list of tag keys to delete.Type: A list that contains the keys of the tags that you want to delete.
Default: None
Required: No
- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DeleteTagsForDomainRequest clone()
Description copied from class:AmazonWebServiceRequestCreates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.- Overrides:
clonein classAmazonWebServiceRequest- See Also:
Object.clone()
-
-