# Generated by default/object.tt package Paws::SSM::ResourceComplianceSummaryItem; use Moose; has ComplianceType => (is => 'ro', isa => 'Str'); has CompliantSummary => (is => 'ro', isa => 'Paws::SSM::CompliantSummary'); has ExecutionSummary => (is => 'ro', isa => 'Paws::SSM::ComplianceExecutionSummary'); has NonCompliantSummary => (is => 'ro', isa => 'Paws::SSM::NonCompliantSummary'); has OverallSeverity => (is => 'ro', isa => 'Str'); has ResourceId => (is => 'ro', isa => 'Str'); has ResourceType => (is => 'ro', isa => 'Str'); has Status => (is => 'ro', isa => 'Str'); 1; ### main pod documentation begin ### =head1 NAME Paws::SSM::ResourceComplianceSummaryItem =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::SSM::ResourceComplianceSummaryItem object: $service_obj->Method(Att1 => { ComplianceType => $value, ..., Status => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::ResourceComplianceSummaryItem object: $result = $service_obj->Method(...); $result->Att1->ComplianceType =head1 DESCRIPTION Compliance summary information for a specific resource. =head1 ATTRIBUTES =head2 ComplianceType => Str The compliance type. =head2 CompliantSummary => L A list of items that are compliant for the resource. =head2 ExecutionSummary => L Information about the execution. =head2 NonCompliantSummary => L A list of items that aren't compliant for the resource. =head2 OverallSeverity => Str The highest severity item found for the resource. The resource is compliant for this item. =head2 ResourceId => Str The resource ID. =head2 ResourceType => Str The resource type. =head2 Status => Str The compliance status for the resource. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut