class Amazonite::Ssm::PutComplianceItemsRequest

Included Modules

Defined in:

ssm/put_compliance_items_request.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(resource_id : String, resource_type : String, compliance_type : String, execution_summary : ComplianceExecutionSummary, items : Array(ComplianceItemEntry), item_content_hash : String | Nil = nil, upload_type : ComplianceUploadType | Nil = nil) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]
def self.new(*, __pull_for_json_serializable pull : JSON::PullParser) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def compliance_type : String #

Specify the compliance type. For example, specify Association (for a State Manager association), Patch, or Custom:string.


[View source]
def compliance_type=(compliance_type : String) #

Specify the compliance type. For example, specify Association (for a State Manager association), Patch, or Custom:string.


[View source]
def execution_summary : ComplianceExecutionSummary #

A summary of the call execution that includes an execution ID, the type of execution (for example, Command), and the date/time of the execution using a datetime object that is saved in the following format: yyyy-MM-dd'T'HH:mm:ss'Z'


[View source]
def execution_summary=(execution_summary : ComplianceExecutionSummary) #

A summary of the call execution that includes an execution ID, the type of execution (for example, Command), and the date/time of the execution using a datetime object that is saved in the following format: yyyy-MM-dd'T'HH:mm:ss'Z'


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def item_content_hash : String | Nil #

MD5 or SHA-256 content hash. The content hash is used to determine if existing information should be overwritten or ignored. If the content hashes match, the request to put compliance information is ignored.


[View source]
def item_content_hash=(item_content_hash : String | Nil) #

MD5 or SHA-256 content hash. The content hash is used to determine if existing information should be overwritten or ignored. If the content hashes match, the request to put compliance information is ignored.


[View source]
def items : Array(ComplianceItemEntry) #

Information about the compliance as defined by the resource type. For example, for a patch compliance type, Items includes information about the PatchSeverity, Classification, and so on.


[View source]
def items=(items : Array(ComplianceItemEntry)) #

Information about the compliance as defined by the resource type. For example, for a patch compliance type, Items includes information about the PatchSeverity, Classification, and so on.


[View source]
def resource_id : String #

Specify an ID for this resource. For a managed node, this is the node ID.


[View source]
def resource_id=(resource_id : String) #

Specify an ID for this resource. For a managed node, this is the node ID.


[View source]
def resource_type : String #

Specify the type of resource. ManagedInstance is currently the only supported resource type.


[View source]
def resource_type=(resource_type : String) #

Specify the type of resource. ManagedInstance is currently the only supported resource type.


[View source]
def upload_type : ComplianceUploadType | Nil #

The mode for uploading compliance items. You can specify COMPLETE or PARTIAL. In COMPLETE mode, the system overwrites all existing compliance information for the resource. You must provide a full list of compliance items each time you send the request.

In PARTIAL mode, the system overwrites compliance information for a specific association. The association must be configured with SyncCompliance set to MANUAL. By default, all requests use COMPLETE mode.

This attribute is only valid for association compliance.


[View source]
def upload_type=(upload_type : ComplianceUploadType | Nil) #

The mode for uploading compliance items. You can specify COMPLETE or PARTIAL. In COMPLETE mode, the system overwrites all existing compliance information for the resource. You must provide a full list of compliance items each time you send the request.

In PARTIAL mode, the system overwrites compliance information for a specific association. The association must be configured with SyncCompliance set to MANUAL. By default, all requests use COMPLETE mode.

This attribute is only valid for association compliance.


[View source]
def validate! : Nil #

[View source]