Class: Aws::ConfigService::Types::Evaluation

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-configservice/types.rb

Overview

Note:

When making an API call, you may pass Evaluation data as a hash:

{
  compliance_resource_type: "StringWithCharLimit256", # required
  compliance_resource_id: "BaseResourceId", # required
  compliance_type: "COMPLIANT", # required, accepts COMPLIANT, NON_COMPLIANT, NOT_APPLICABLE, INSUFFICIENT_DATA
  annotation: "StringWithCharLimit256",
  ordering_timestamp: Time.now, # required
}

Identifies an AWS resource and indicates whether it complies with the AWS Config rule that it was evaluated against.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#annotationString

Supplementary information about how the evaluation determined the compliance.

Returns:

  • (String)


3763
3764
3765
3766
3767
3768
3769
3770
3771
# File 'lib/aws-sdk-configservice/types.rb', line 3763

class Evaluation < Struct.new(
  :compliance_resource_type,
  :compliance_resource_id,
  :compliance_type,
  :annotation,
  :ordering_timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#compliance_resource_idString

The ID of the AWS resource that was evaluated.

Returns:

  • (String)


3763
3764
3765
3766
3767
3768
3769
3770
3771
# File 'lib/aws-sdk-configservice/types.rb', line 3763

class Evaluation < Struct.new(
  :compliance_resource_type,
  :compliance_resource_id,
  :compliance_type,
  :annotation,
  :ordering_timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#compliance_resource_typeString

The type of AWS resource that was evaluated.

Returns:

  • (String)


3763
3764
3765
3766
3767
3768
3769
3770
3771
# File 'lib/aws-sdk-configservice/types.rb', line 3763

class Evaluation < Struct.new(
  :compliance_resource_type,
  :compliance_resource_id,
  :compliance_type,
  :annotation,
  :ordering_timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#compliance_typeString

Indicates whether the AWS resource complies with the AWS Config rule that it was evaluated against.

For the ‘Evaluation` data type, AWS Config supports only the `COMPLIANT`, `NON_COMPLIANT`, and `NOT_APPLICABLE` values. AWS Config does not support the `INSUFFICIENT_DATA` value for this data type.

Similarly, AWS Config does not accept ‘INSUFFICIENT_DATA` as the value for `ComplianceType` from a `PutEvaluations` request. For example, an AWS Lambda function for a custom AWS Config rule cannot pass an `INSUFFICIENT_DATA` value to AWS Config.

Returns:

  • (String)


3763
3764
3765
3766
3767
3768
3769
3770
3771
# File 'lib/aws-sdk-configservice/types.rb', line 3763

class Evaluation < Struct.new(
  :compliance_resource_type,
  :compliance_resource_id,
  :compliance_type,
  :annotation,
  :ordering_timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#ordering_timestampTime

The time of the event in AWS Config that triggered the evaluation. For event-based evaluations, the time indicates when AWS Config created the configuration item that triggered the evaluation. For periodic evaluations, the time indicates when AWS Config triggered the evaluation at the frequency that you specified (for example, every 24 hours).

Returns:

  • (Time)


3763
3764
3765
3766
3767
3768
3769
3770
3771
# File 'lib/aws-sdk-configservice/types.rb', line 3763

class Evaluation < Struct.new(
  :compliance_resource_type,
  :compliance_resource_id,
  :compliance_type,
  :annotation,
  :ordering_timestamp)
  SENSITIVE = []
  include Aws::Structure
end