Interface PutComplianceItemsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<PutComplianceItemsRequest.Builder,PutComplianceItemsRequest>
,SdkBuilder<PutComplianceItemsRequest.Builder,PutComplianceItemsRequest>
,SdkPojo
,SdkRequest.Builder
,SsmRequest.Builder
- Enclosing class:
- PutComplianceItemsRequest
public static interface PutComplianceItemsRequest.Builder extends SsmRequest.Builder, SdkPojo, CopyableBuilder<PutComplianceItemsRequest.Builder,PutComplianceItemsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PutComplianceItemsRequest.Builder
complianceType(String complianceType)
Specify the compliance type.default PutComplianceItemsRequest.Builder
executionSummary(Consumer<ComplianceExecutionSummary.Builder> executionSummary)
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'
PutComplianceItemsRequest.Builder
executionSummary(ComplianceExecutionSummary executionSummary)
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'
PutComplianceItemsRequest.Builder
itemContentHash(String itemContentHash)
MD5 or SHA-256 content hash.PutComplianceItemsRequest.Builder
items(Collection<ComplianceItemEntry> items)
Information about the compliance as defined by the resource type.PutComplianceItemsRequest.Builder
items(Consumer<ComplianceItemEntry.Builder>... items)
Information about the compliance as defined by the resource type.PutComplianceItemsRequest.Builder
items(ComplianceItemEntry... items)
Information about the compliance as defined by the resource type.PutComplianceItemsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
PutComplianceItemsRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
PutComplianceItemsRequest.Builder
resourceId(String resourceId)
Specify an ID for this resource.PutComplianceItemsRequest.Builder
resourceType(String resourceType)
Specify the type of resource.PutComplianceItemsRequest.Builder
uploadType(String uploadType)
The mode for uploading compliance items.PutComplianceItemsRequest.Builder
uploadType(ComplianceUploadType uploadType)
The mode for uploading compliance items.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.ssm.model.SsmRequest.Builder
build
-
-
-
-
Method Detail
-
resourceId
PutComplianceItemsRequest.Builder resourceId(String resourceId)
Specify an ID for this resource. For a managed node, this is the node ID.
- Parameters:
resourceId
- Specify an ID for this resource. For a managed node, this is the node ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceType
PutComplianceItemsRequest.Builder resourceType(String resourceType)
Specify the type of resource.
ManagedInstance
is currently the only supported resource type.- Parameters:
resourceType
- Specify the type of resource.ManagedInstance
is currently the only supported resource type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
complianceType
PutComplianceItemsRequest.Builder complianceType(String complianceType)
Specify the compliance type. For example, specify Association (for a State Manager association), Patch, or Custom:
string
.- Parameters:
complianceType
- Specify the compliance type. For example, specify Association (for a State Manager association), Patch, or Custom:string
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionSummary
PutComplianceItemsRequest.Builder executionSummary(ComplianceExecutionSummary executionSummary)
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'
- Parameters:
executionSummary
- 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'
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionSummary
default PutComplianceItemsRequest.Builder executionSummary(Consumer<ComplianceExecutionSummary.Builder> executionSummary)
A summary of the call execution that includes an execution ID, the type of execution (for example,
This is a convenience method that creates an instance of theCommand
), 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'
ComplianceExecutionSummary.Builder
avoiding the need to create one manually viaComplianceExecutionSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toexecutionSummary(ComplianceExecutionSummary)
.- Parameters:
executionSummary
- a consumer that will call methods onComplianceExecutionSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
executionSummary(ComplianceExecutionSummary)
-
items
PutComplianceItemsRequest.Builder items(Collection<ComplianceItemEntry> items)
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.- Parameters:
items
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
PutComplianceItemsRequest.Builder items(ComplianceItemEntry... items)
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.- Parameters:
items
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
PutComplianceItemsRequest.Builder items(Consumer<ComplianceItemEntry.Builder>... items)
Information about the compliance as defined by the resource type. For example, for a patch compliance type,
This is a convenience method that creates an instance of theItems
includes information about the PatchSeverity, Classification, and so on.ComplianceItemEntry.Builder
avoiding the need to create one manually viaComplianceItemEntry.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#items(List
.) - Parameters:
items
- a consumer that will call methods onComplianceItemEntry.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection
)
-
itemContentHash
PutComplianceItemsRequest.Builder itemContentHash(String itemContentHash)
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.
- Parameters:
itemContentHash
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uploadType
PutComplianceItemsRequest.Builder uploadType(String uploadType)
The mode for uploading compliance items. You can specify
COMPLETE
orPARTIAL
. InCOMPLETE
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 withSyncCompliance
set toMANUAL
. By default, all requests useCOMPLETE
mode.This attribute is only valid for association compliance.
- Parameters:
uploadType
- The mode for uploading compliance items. You can specifyCOMPLETE
orPARTIAL
. InCOMPLETE
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 withSyncCompliance
set toMANUAL
. By default, all requests useCOMPLETE
mode.This attribute is only valid for association compliance.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComplianceUploadType
,ComplianceUploadType
-
uploadType
PutComplianceItemsRequest.Builder uploadType(ComplianceUploadType uploadType)
The mode for uploading compliance items. You can specify
COMPLETE
orPARTIAL
. InCOMPLETE
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 withSyncCompliance
set toMANUAL
. By default, all requests useCOMPLETE
mode.This attribute is only valid for association compliance.
- Parameters:
uploadType
- The mode for uploading compliance items. You can specifyCOMPLETE
orPARTIAL
. InCOMPLETE
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 withSyncCompliance
set toMANUAL
. By default, all requests useCOMPLETE
mode.This attribute is only valid for association compliance.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComplianceUploadType
,ComplianceUploadType
-
overrideConfiguration
PutComplianceItemsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
PutComplianceItemsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-