There are more AWS SDK examples available in the AWS Doc SDK Examples
Use PutComplianceItems
with a CLI
The following code examples show how to use PutComplianceItems
.
- CLI
-
- AWS CLI
-
To register a compliance type and compliance details to a designated instance
This example registers the compliance type
Custom:AVCheck
to the specified managed instance. There is no output if the command succeeds.Command:
aws ssm put-compliance-items --resource-id
"i-1234567890abcdef0"
--resource-type"ManagedInstance"
--compliance-type"Custom:AVCheck"
--execution-summary"ExecutionTime=2019-02-18T16:00:00Z"
--items"Id=Version2.0,Title=ScanHost,Severity=CRITICAL,Status=COMPLIANT"
-
For API details, see PutComplianceItems
in AWS CLI Command Reference.
-
- PowerShell
-
- Tools for PowerShell
-
Example 1: This example writes a custom compliance item for the given managed instance
$item = [Amazon.SimpleSystemsManagement.Model.ComplianceItemEntry]::new() $item.Id = "07Jun2019-3" $item.Severity="LOW" $item.Status="COMPLIANT" $item.Title="Fin-test-1 - custom" Write-SSMComplianceItem -ResourceId mi-012dcb3ecea45b678 -ComplianceType Custom:VSSCompliant2 -ResourceType ManagedInstance -Item $item -ExecutionSummary_ExecutionTime "07-Jun-2019"
-
For API details, see PutComplianceItems in AWS Tools for PowerShell Cmdlet Reference.
-