Class ComplianceContributorCount
- java.lang.Object
-
- com.amazonaws.services.config.model.ComplianceContributorCount
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ComplianceContributorCount extends Object implements Serializable, Cloneable
The number of AWS resources or AWS Config rules responsible for the current compliance of the item, up to a maximum number.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ComplianceContributorCount()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ComplianceContributorCount
clone()
boolean
equals(Object obj)
Boolean
getCapExceeded()
Indicates whether the maximum count is reached.Integer
getCappedCount()
The number of AWS resources or AWS Config rules responsible for the current compliance of the item.int
hashCode()
Boolean
isCapExceeded()
Indicates whether the maximum count is reached.void
setCapExceeded(Boolean capExceeded)
Indicates whether the maximum count is reached.void
setCappedCount(Integer cappedCount)
The number of AWS resources or AWS Config rules responsible for the current compliance of the item.String
toString()
Returns a string representation of this object; useful for testing and debugging.ComplianceContributorCount
withCapExceeded(Boolean capExceeded)
Indicates whether the maximum count is reached.ComplianceContributorCount
withCappedCount(Integer cappedCount)
The number of AWS resources or AWS Config rules responsible for the current compliance of the item.
-
-
-
Method Detail
-
setCappedCount
public void setCappedCount(Integer cappedCount)
The number of AWS resources or AWS Config rules responsible for the current compliance of the item.
- Parameters:
cappedCount
- The number of AWS resources or AWS Config rules responsible for the current compliance of the item.
-
getCappedCount
public Integer getCappedCount()
The number of AWS resources or AWS Config rules responsible for the current compliance of the item.
- Returns:
- The number of AWS resources or AWS Config rules responsible for the current compliance of the item.
-
withCappedCount
public ComplianceContributorCount withCappedCount(Integer cappedCount)
The number of AWS resources or AWS Config rules responsible for the current compliance of the item.
- Parameters:
cappedCount
- The number of AWS resources or AWS Config rules responsible for the current compliance of the item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCapExceeded
public void setCapExceeded(Boolean capExceeded)
Indicates whether the maximum count is reached.
- Parameters:
capExceeded
- Indicates whether the maximum count is reached.
-
getCapExceeded
public Boolean getCapExceeded()
Indicates whether the maximum count is reached.
- Returns:
- Indicates whether the maximum count is reached.
-
withCapExceeded
public ComplianceContributorCount withCapExceeded(Boolean capExceeded)
Indicates whether the maximum count is reached.
- Parameters:
capExceeded
- Indicates whether the maximum count is reached.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isCapExceeded
public Boolean isCapExceeded()
Indicates whether the maximum count is reached.
- Returns:
- Indicates whether the maximum count is reached.
-
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 ComplianceContributorCount clone()
-
-