Class WebACLSummary
- java.lang.Object
-
- com.amazonaws.services.waf.model.WebACLSummary
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class WebACLSummary extends Object implements Serializable, Cloneable
Contains the identifier and the name or description of the WebACL.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WebACLSummary()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WebACLSummary
clone()
boolean
equals(Object obj)
String
getName()
A friendly name or description of the WebACL.String
getWebACLId()
A unique identifier for aWebACL
.int
hashCode()
void
setName(String name)
A friendly name or description of the WebACL.void
setWebACLId(String webACLId)
A unique identifier for aWebACL
.String
toString()
Returns a string representation of this object; useful for testing and debugging.WebACLSummary
withName(String name)
A friendly name or description of the WebACL.WebACLSummary
withWebACLId(String webACLId)
A unique identifier for aWebACL
.
-
-
-
Method Detail
-
setWebACLId
public void setWebACLId(String webACLId)
A unique identifier for a
WebACL
. You useWebACLId
to get information about aWebACL
(see GetWebACL), update aWebACL
(see UpdateWebACL), and delete aWebACL
from AWS WAF (see DeleteWebACL).WebACLId
is returned by CreateWebACL and by ListWebACLs.- Parameters:
webACLId
- A unique identifier for aWebACL
. You useWebACLId
to get information about aWebACL
(see GetWebACL), update aWebACL
(see UpdateWebACL), and delete aWebACL
from AWS WAF (see DeleteWebACL).WebACLId
is returned by CreateWebACL and by ListWebACLs.
-
getWebACLId
public String getWebACLId()
A unique identifier for a
WebACL
. You useWebACLId
to get information about aWebACL
(see GetWebACL), update aWebACL
(see UpdateWebACL), and delete aWebACL
from AWS WAF (see DeleteWebACL).WebACLId
is returned by CreateWebACL and by ListWebACLs.- Returns:
- A unique identifier for a
WebACL
. You useWebACLId
to get information about aWebACL
(see GetWebACL), update aWebACL
(see UpdateWebACL), and delete aWebACL
from AWS WAF (see DeleteWebACL).WebACLId
is returned by CreateWebACL and by ListWebACLs.
-
withWebACLId
public WebACLSummary withWebACLId(String webACLId)
A unique identifier for a
WebACL
. You useWebACLId
to get information about aWebACL
(see GetWebACL), update aWebACL
(see UpdateWebACL), and delete aWebACL
from AWS WAF (see DeleteWebACL).WebACLId
is returned by CreateWebACL and by ListWebACLs.- Parameters:
webACLId
- A unique identifier for aWebACL
. You useWebACLId
to get information about aWebACL
(see GetWebACL), update aWebACL
(see UpdateWebACL), and delete aWebACL
from AWS WAF (see DeleteWebACL).WebACLId
is returned by CreateWebACL and by ListWebACLs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setName
public void setName(String name)
A friendly name or description of the WebACL. You can't change the name of a
WebACL
after you create it.- Parameters:
name
- A friendly name or description of the WebACL. You can't change the name of aWebACL
after you create it.
-
getName
public String getName()
A friendly name or description of the WebACL. You can't change the name of a
WebACL
after you create it.- Returns:
- A friendly name or description of the WebACL. You can't
change the name of a
WebACL
after you create it.
-
withName
public WebACLSummary withName(String name)
A friendly name or description of the WebACL. You can't change the name of a
WebACL
after you create it.- Parameters:
name
- A friendly name or description of the WebACL. You can't change the name of aWebACL
after you create it.- 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 WebACLSummary clone()
-
-