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.BuildercomplianceType(String complianceType)Specify the compliance type.default PutComplianceItemsRequest.BuilderexecutionSummary(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.BuilderexecutionSummary(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.BuilderitemContentHash(String itemContentHash)MD5 or SHA-256 content hash.PutComplianceItemsRequest.Builderitems(Collection<ComplianceItemEntry> items)Information about the compliance as defined by the resource type.PutComplianceItemsRequest.Builderitems(Consumer<ComplianceItemEntry.Builder>... items)Information about the compliance as defined by the resource type.PutComplianceItemsRequest.Builderitems(ComplianceItemEntry... items)Information about the compliance as defined by the resource type.PutComplianceItemsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutComplianceItemsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)PutComplianceItemsRequest.BuilderresourceId(String resourceId)Specify an ID for this resource.PutComplianceItemsRequest.BuilderresourceType(String resourceType)Specify the type of resource.PutComplianceItemsRequest.BuilderuploadType(String uploadType)The mode for uploading compliance items.PutComplianceItemsRequest.BuilderuploadType(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, 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.
ManagedInstanceis currently the only supported resource type.- Parameters:
resourceType- Specify the type of resource.ManagedInstanceis 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.Builderavoiding the need to create one manually viaComplianceExecutionSummary.builder().When the
Consumercompletes,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,
Itemsincludes 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,Itemsincludes 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,
Itemsincludes 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,Itemsincludes 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 theItemsincludes information about the PatchSeverity, Classification, and so on.ComplianceItemEntry.Builderavoiding the need to create one manually viaComplianceItemEntry.builder().When the
Consumercompletes,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
COMPLETEorPARTIAL. InCOMPLETEmode, 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
PARTIALmode, the system overwrites compliance information for a specific association. The association must be configured withSyncComplianceset toMANUAL. By default, all requests useCOMPLETEmode.This attribute is only valid for association compliance.
- Parameters:
uploadType- The mode for uploading compliance items. You can specifyCOMPLETEorPARTIAL. InCOMPLETEmode, 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
PARTIALmode, the system overwrites compliance information for a specific association. The association must be configured withSyncComplianceset toMANUAL. By default, all requests useCOMPLETEmode.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
COMPLETEorPARTIAL. InCOMPLETEmode, 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
PARTIALmode, the system overwrites compliance information for a specific association. The association must be configured withSyncComplianceset toMANUAL. By default, all requests useCOMPLETEmode.This attribute is only valid for association compliance.
- Parameters:
uploadType- The mode for uploading compliance items. You can specifyCOMPLETEorPARTIAL. InCOMPLETEmode, 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
PARTIALmode, the system overwrites compliance information for a specific association. The association must be configured withSyncComplianceset toMANUAL. By default, all requests useCOMPLETEmode.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:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutComplianceItemsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-