Class EvaluationResultIdentifier
- java.lang.Object
-
- com.amazonaws.services.config.model.EvaluationResultIdentifier
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class EvaluationResultIdentifier extends Object implements Serializable, Cloneable
Uniquely identifies an evaluation result.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EvaluationResultIdentifier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EvaluationResultIdentifier
clone()
boolean
equals(Object obj)
EvaluationResultQualifier
getEvaluationResultQualifier()
Identifies an AWS Config rule used to evaluate an AWS resource, and provides the type and ID of the evaluated resource.Date
getOrderingTimestamp()
The time of the event that triggered the evaluation of your AWS resources.int
hashCode()
void
setEvaluationResultQualifier(EvaluationResultQualifier evaluationResultQualifier)
Identifies an AWS Config rule used to evaluate an AWS resource, and provides the type and ID of the evaluated resource.void
setOrderingTimestamp(Date orderingTimestamp)
The time of the event that triggered the evaluation of your AWS resources.String
toString()
Returns a string representation of this object; useful for testing and debugging.EvaluationResultIdentifier
withEvaluationResultQualifier(EvaluationResultQualifier evaluationResultQualifier)
Identifies an AWS Config rule used to evaluate an AWS resource, and provides the type and ID of the evaluated resource.EvaluationResultIdentifier
withOrderingTimestamp(Date orderingTimestamp)
The time of the event that triggered the evaluation of your AWS resources.
-
-
-
Method Detail
-
setEvaluationResultQualifier
public void setEvaluationResultQualifier(EvaluationResultQualifier evaluationResultQualifier)
Identifies an AWS Config rule used to evaluate an AWS resource, and provides the type and ID of the evaluated resource.
- Parameters:
evaluationResultQualifier
- Identifies an AWS Config rule used to evaluate an AWS resource, and provides the type and ID of the evaluated resource.
-
getEvaluationResultQualifier
public EvaluationResultQualifier getEvaluationResultQualifier()
Identifies an AWS Config rule used to evaluate an AWS resource, and provides the type and ID of the evaluated resource.
- Returns:
- Identifies an AWS Config rule used to evaluate an AWS resource, and provides the type and ID of the evaluated resource.
-
withEvaluationResultQualifier
public EvaluationResultIdentifier withEvaluationResultQualifier(EvaluationResultQualifier evaluationResultQualifier)
Identifies an AWS Config rule used to evaluate an AWS resource, and provides the type and ID of the evaluated resource.
- Parameters:
evaluationResultQualifier
- Identifies an AWS Config rule used to evaluate an AWS resource, and provides the type and ID of the evaluated resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setOrderingTimestamp
public void setOrderingTimestamp(Date orderingTimestamp)
The time of the event that triggered the evaluation of your AWS resources. The time can indicate when AWS Config delivered a configuration item change notification, or it can indicate when AWS Config delivered the configuration snapshot, depending on which event triggered the evaluation.
- Parameters:
orderingTimestamp
- The time of the event that triggered the evaluation of your AWS resources. The time can indicate when AWS Config delivered a configuration item change notification, or it can indicate when AWS Config delivered the configuration snapshot, depending on which event triggered the evaluation.
-
getOrderingTimestamp
public Date getOrderingTimestamp()
The time of the event that triggered the evaluation of your AWS resources. The time can indicate when AWS Config delivered a configuration item change notification, or it can indicate when AWS Config delivered the configuration snapshot, depending on which event triggered the evaluation.
- Returns:
- The time of the event that triggered the evaluation of your AWS resources. The time can indicate when AWS Config delivered a configuration item change notification, or it can indicate when AWS Config delivered the configuration snapshot, depending on which event triggered the evaluation.
-
withOrderingTimestamp
public EvaluationResultIdentifier withOrderingTimestamp(Date orderingTimestamp)
The time of the event that triggered the evaluation of your AWS resources. The time can indicate when AWS Config delivered a configuration item change notification, or it can indicate when AWS Config delivered the configuration snapshot, depending on which event triggered the evaluation.
- Parameters:
orderingTimestamp
- The time of the event that triggered the evaluation of your AWS resources. The time can indicate when AWS Config delivered a configuration item change notification, or it can indicate when AWS Config delivered the configuration snapshot, depending on which event triggered the evaluation.- 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 EvaluationResultIdentifier clone()
-
-