All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.simplesystemsmanagement.AWSSimpleSystemsManagementAsync Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Simple Systems Management Service holds the client classes that are used for communicating with the AWS Simple Systems Management Service

The newest version!
/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.simplesystemsmanagement;

import javax.annotation.Generated;

import com.amazonaws.services.simplesystemsmanagement.model.*;

/**
 * Interface for accessing Amazon SSM asynchronously. Each asynchronous method will return a Java Future object
 * representing the asynchronous operation; overloads which accept an {@code AsyncHandler} can be used to receive
 * notification when an asynchronous operation completes.
 * 

* Note: Do not directly implement this interface, new methods are added to it regularly. Extend from * {@link com.amazonaws.services.simplesystemsmanagement.AbstractAWSSimpleSystemsManagementAsync} instead. *

*

*

* Amazon Web Services Systems Manager is the operations hub for your Amazon Web Services applications and resources and * a secure end-to-end management solution for hybrid cloud environments that enables safe and secure operations at * scale. *

*

* This reference is intended to be used with the Amazon Web Services Systems Manager User * Guide. To get started, see Setting up Amazon * Web Services Systems Manager. *

*

* Related resources *

* */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public interface AWSSimpleSystemsManagementAsync extends AWSSimpleSystemsManagement { /** *

* Adds or overwrites one or more tags for the specified resource. Tags are metadata that you can assign to * your automations, documents, managed nodes, maintenance windows, Parameter Store parameters, and patch baselines. * Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment. * Each tag consists of a key and an optional value, both of which you define. For example, you could define a set * of tags for your account's managed nodes that helps you track each node's owner and stack level. For example: *

*
    *
  • *

    * Key=Owner,Value=DbAdmin *

    *
  • *
  • *

    * Key=Owner,Value=SysAdmin *

    *
  • *
  • *

    * Key=Owner,Value=Dev *

    *
  • *
  • *

    * Key=Stack,Value=Production *

    *
  • *
  • *

    * Key=Stack,Value=Pre-Production *

    *
  • *
  • *

    * Key=Stack,Value=Test *

    *
  • *
*

* Most resources can have a maximum of 50 tags. Automations can have a maximum of 5 tags. *

*

* We recommend that you devise a set of tag keys that meets your needs for each resource type. Using a consistent * set of tag keys makes it easier for you to manage your resources. You can search and filter the resources based * on the tags you add. Tags don't have any semantic meaning to and are interpreted strictly as a string of * characters. *

*

* For more information about using tags with Amazon Elastic Compute Cloud (Amazon EC2) instances, see Tag your Amazon EC2 resources in * the Amazon EC2 User Guide. *

* * @param addTagsToResourceRequest * @return A Java Future containing the result of the AddTagsToResource operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.AddTagsToResource * @see AWS API * Documentation */ java.util.concurrent.Future addTagsToResourceAsync(AddTagsToResourceRequest addTagsToResourceRequest); /** *

* Adds or overwrites one or more tags for the specified resource. Tags are metadata that you can assign to * your automations, documents, managed nodes, maintenance windows, Parameter Store parameters, and patch baselines. * Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment. * Each tag consists of a key and an optional value, both of which you define. For example, you could define a set * of tags for your account's managed nodes that helps you track each node's owner and stack level. For example: *

*
    *
  • *

    * Key=Owner,Value=DbAdmin *

    *
  • *
  • *

    * Key=Owner,Value=SysAdmin *

    *
  • *
  • *

    * Key=Owner,Value=Dev *

    *
  • *
  • *

    * Key=Stack,Value=Production *

    *
  • *
  • *

    * Key=Stack,Value=Pre-Production *

    *
  • *
  • *

    * Key=Stack,Value=Test *

    *
  • *
*

* Most resources can have a maximum of 50 tags. Automations can have a maximum of 5 tags. *

*

* We recommend that you devise a set of tag keys that meets your needs for each resource type. Using a consistent * set of tag keys makes it easier for you to manage your resources. You can search and filter the resources based * on the tags you add. Tags don't have any semantic meaning to and are interpreted strictly as a string of * characters. *

*

* For more information about using tags with Amazon Elastic Compute Cloud (Amazon EC2) instances, see Tag your Amazon EC2 resources in * the Amazon EC2 User Guide. *

* * @param addTagsToResourceRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the AddTagsToResource operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.AddTagsToResource * @see AWS API * Documentation */ java.util.concurrent.Future addTagsToResourceAsync(AddTagsToResourceRequest addTagsToResourceRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Associates a related item to a Systems Manager OpsCenter OpsItem. For example, you can associate an Incident * Manager incident or analysis with an OpsItem. Incident Manager and OpsCenter are capabilities of Amazon Web * Services Systems Manager. *

* * @param associateOpsItemRelatedItemRequest * @return A Java Future containing the result of the AssociateOpsItemRelatedItem operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.AssociateOpsItemRelatedItem * @see AWS API Documentation */ java.util.concurrent.Future associateOpsItemRelatedItemAsync( AssociateOpsItemRelatedItemRequest associateOpsItemRelatedItemRequest); /** *

* Associates a related item to a Systems Manager OpsCenter OpsItem. For example, you can associate an Incident * Manager incident or analysis with an OpsItem. Incident Manager and OpsCenter are capabilities of Amazon Web * Services Systems Manager. *

* * @param associateOpsItemRelatedItemRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the AssociateOpsItemRelatedItem operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.AssociateOpsItemRelatedItem * @see AWS API Documentation */ java.util.concurrent.Future associateOpsItemRelatedItemAsync( AssociateOpsItemRelatedItemRequest associateOpsItemRelatedItemRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Attempts to cancel the command specified by the Command ID. There is no guarantee that the command will be * terminated and the underlying process stopped. *

* * @param cancelCommandRequest * @return A Java Future containing the result of the CancelCommand operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.CancelCommand * @see AWS API * Documentation */ java.util.concurrent.Future cancelCommandAsync(CancelCommandRequest cancelCommandRequest); /** *

* Attempts to cancel the command specified by the Command ID. There is no guarantee that the command will be * terminated and the underlying process stopped. *

* * @param cancelCommandRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the CancelCommand operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.CancelCommand * @see AWS API * Documentation */ java.util.concurrent.Future cancelCommandAsync(CancelCommandRequest cancelCommandRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Stops a maintenance window execution that is already in progress and cancels any tasks in the window that haven't * already starting running. Tasks already in progress will continue to completion. *

* * @param cancelMaintenanceWindowExecutionRequest * @return A Java Future containing the result of the CancelMaintenanceWindowExecution operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.CancelMaintenanceWindowExecution * @see AWS API Documentation */ java.util.concurrent.Future cancelMaintenanceWindowExecutionAsync( CancelMaintenanceWindowExecutionRequest cancelMaintenanceWindowExecutionRequest); /** *

* Stops a maintenance window execution that is already in progress and cancels any tasks in the window that haven't * already starting running. Tasks already in progress will continue to completion. *

* * @param cancelMaintenanceWindowExecutionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the CancelMaintenanceWindowExecution operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.CancelMaintenanceWindowExecution * @see AWS API Documentation */ java.util.concurrent.Future cancelMaintenanceWindowExecutionAsync( CancelMaintenanceWindowExecutionRequest cancelMaintenanceWindowExecutionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Generates an activation code and activation ID you can use to register your on-premises servers, edge devices, or * virtual machine (VM) with Amazon Web Services Systems Manager. Registering these machines with Systems Manager * makes it possible to manage them using Systems Manager capabilities. You use the activation code and ID when * installing SSM Agent on machines in your hybrid environment. For more information about requirements for managing * on-premises machines using Systems Manager, see Setting * up Amazon Web Services Systems Manager for hybrid and multicloud environments in the Amazon Web Services * Systems Manager User Guide. *

* *

* Amazon Elastic Compute Cloud (Amazon EC2) instances, edge devices, and on-premises servers and VMs that are * configured for Systems Manager are all called managed nodes. *

*
* * @param createActivationRequest * @return A Java Future containing the result of the CreateActivation operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.CreateActivation * @see AWS API * Documentation */ java.util.concurrent.Future createActivationAsync(CreateActivationRequest createActivationRequest); /** *

* Generates an activation code and activation ID you can use to register your on-premises servers, edge devices, or * virtual machine (VM) with Amazon Web Services Systems Manager. Registering these machines with Systems Manager * makes it possible to manage them using Systems Manager capabilities. You use the activation code and ID when * installing SSM Agent on machines in your hybrid environment. For more information about requirements for managing * on-premises machines using Systems Manager, see Setting * up Amazon Web Services Systems Manager for hybrid and multicloud environments in the Amazon Web Services * Systems Manager User Guide. *

* *

* Amazon Elastic Compute Cloud (Amazon EC2) instances, edge devices, and on-premises servers and VMs that are * configured for Systems Manager are all called managed nodes. *

*
* * @param createActivationRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the CreateActivation operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.CreateActivation * @see AWS API * Documentation */ java.util.concurrent.Future createActivationAsync(CreateActivationRequest createActivationRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* A State Manager association defines the state that you want to maintain on your managed nodes. For example, an * association can specify that anti-virus software must be installed and running on your managed nodes, or that * certain ports must be closed. For static targets, the association specifies a schedule for when the configuration * is reapplied. For dynamic targets, such as an Amazon Web Services resource group or an Amazon Web Services * autoscaling group, State Manager, a capability of Amazon Web Services Systems Manager applies the configuration * when new managed nodes are added to the group. The association also specifies actions to take when applying the * configuration. For example, an association for anti-virus software might run once a day. If the software isn't * installed, then State Manager installs it. If the software is installed, but the service isn't running, then the * association might instruct State Manager to start the service. *

* * @param createAssociationRequest * @return A Java Future containing the result of the CreateAssociation operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.CreateAssociation * @see AWS API * Documentation */ java.util.concurrent.Future createAssociationAsync(CreateAssociationRequest createAssociationRequest); /** *

* A State Manager association defines the state that you want to maintain on your managed nodes. For example, an * association can specify that anti-virus software must be installed and running on your managed nodes, or that * certain ports must be closed. For static targets, the association specifies a schedule for when the configuration * is reapplied. For dynamic targets, such as an Amazon Web Services resource group or an Amazon Web Services * autoscaling group, State Manager, a capability of Amazon Web Services Systems Manager applies the configuration * when new managed nodes are added to the group. The association also specifies actions to take when applying the * configuration. For example, an association for anti-virus software might run once a day. If the software isn't * installed, then State Manager installs it. If the software is installed, but the service isn't running, then the * association might instruct State Manager to start the service. *

* * @param createAssociationRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the CreateAssociation operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.CreateAssociation * @see AWS API * Documentation */ java.util.concurrent.Future createAssociationAsync(CreateAssociationRequest createAssociationRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Associates the specified Amazon Web Services Systems Manager document (SSM document) with the specified managed * nodes or targets. *

*

* When you associate a document with one or more managed nodes using IDs or tags, Amazon Web Services Systems * Manager Agent (SSM Agent) running on the managed node processes the document and configures the node as * specified. *

*

* If you associate a document with a managed node that already has an associated document, the system returns the * AssociationAlreadyExists exception. *

* * @param createAssociationBatchRequest * @return A Java Future containing the result of the CreateAssociationBatch operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.CreateAssociationBatch * @see AWS API * Documentation */ java.util.concurrent.Future createAssociationBatchAsync(CreateAssociationBatchRequest createAssociationBatchRequest); /** *

* Associates the specified Amazon Web Services Systems Manager document (SSM document) with the specified managed * nodes or targets. *

*

* When you associate a document with one or more managed nodes using IDs or tags, Amazon Web Services Systems * Manager Agent (SSM Agent) running on the managed node processes the document and configures the node as * specified. *

*

* If you associate a document with a managed node that already has an associated document, the system returns the * AssociationAlreadyExists exception. *

* * @param createAssociationBatchRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the CreateAssociationBatch operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.CreateAssociationBatch * @see AWS API * Documentation */ java.util.concurrent.Future createAssociationBatchAsync(CreateAssociationBatchRequest createAssociationBatchRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Creates a Amazon Web Services Systems Manager (SSM document). An SSM document defines the actions that Systems * Manager performs on your managed nodes. For more information about SSM documents, including information about * supported schemas, features, and syntax, see Amazon Web Services * Systems Manager Documents in the Amazon Web Services Systems Manager User Guide. *

* * @param createDocumentRequest * @return A Java Future containing the result of the CreateDocument operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.CreateDocument * @see AWS API * Documentation */ java.util.concurrent.Future createDocumentAsync(CreateDocumentRequest createDocumentRequest); /** *

* Creates a Amazon Web Services Systems Manager (SSM document). An SSM document defines the actions that Systems * Manager performs on your managed nodes. For more information about SSM documents, including information about * supported schemas, features, and syntax, see Amazon Web Services * Systems Manager Documents in the Amazon Web Services Systems Manager User Guide. *

* * @param createDocumentRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the CreateDocument operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.CreateDocument * @see AWS API * Documentation */ java.util.concurrent.Future createDocumentAsync(CreateDocumentRequest createDocumentRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Creates a new maintenance window. *

* *

* The value you specify for Duration determines the specific end time for the maintenance window based * on the time it begins. No maintenance window tasks are permitted to start after the resulting endtime minus the * number of hours you specify for Cutoff. For example, if the maintenance window starts at 3 PM, the * duration is three hours, and the value you specify for Cutoff is one hour, no maintenance window * tasks can start after 5 PM. *

*
* * @param createMaintenanceWindowRequest * @return A Java Future containing the result of the CreateMaintenanceWindow operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.CreateMaintenanceWindow * @see AWS * API Documentation */ java.util.concurrent.Future createMaintenanceWindowAsync(CreateMaintenanceWindowRequest createMaintenanceWindowRequest); /** *

* Creates a new maintenance window. *

* *

* The value you specify for Duration determines the specific end time for the maintenance window based * on the time it begins. No maintenance window tasks are permitted to start after the resulting endtime minus the * number of hours you specify for Cutoff. For example, if the maintenance window starts at 3 PM, the * duration is three hours, and the value you specify for Cutoff is one hour, no maintenance window * tasks can start after 5 PM. *

*
* * @param createMaintenanceWindowRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the CreateMaintenanceWindow operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.CreateMaintenanceWindow * @see AWS * API Documentation */ java.util.concurrent.Future createMaintenanceWindowAsync(CreateMaintenanceWindowRequest createMaintenanceWindowRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Creates a new OpsItem. You must have permission in Identity and Access Management (IAM) to create a new OpsItem. * For more information, see Set up OpsCenter in * the Amazon Web Services Systems Manager User Guide. *

*

* Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, * and remediate operational issues impacting the performance and health of their Amazon Web Services resources. For * more information, see Amazon Web Services Systems * Manager OpsCenter in the Amazon Web Services Systems Manager User Guide. *

* * @param createOpsItemRequest * @return A Java Future containing the result of the CreateOpsItem operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.CreateOpsItem * @see AWS API * Documentation */ java.util.concurrent.Future createOpsItemAsync(CreateOpsItemRequest createOpsItemRequest); /** *

* Creates a new OpsItem. You must have permission in Identity and Access Management (IAM) to create a new OpsItem. * For more information, see Set up OpsCenter in * the Amazon Web Services Systems Manager User Guide. *

*

* Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, * and remediate operational issues impacting the performance and health of their Amazon Web Services resources. For * more information, see Amazon Web Services Systems * Manager OpsCenter in the Amazon Web Services Systems Manager User Guide. *

* * @param createOpsItemRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the CreateOpsItem operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.CreateOpsItem * @see AWS API * Documentation */ java.util.concurrent.Future createOpsItemAsync(CreateOpsItemRequest createOpsItemRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* If you create a new application in Application Manager, Amazon Web Services Systems Manager calls this API * operation to specify information about the new application, including the application type. *

* * @param createOpsMetadataRequest * @return A Java Future containing the result of the CreateOpsMetadata operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.CreateOpsMetadata * @see AWS API * Documentation */ java.util.concurrent.Future createOpsMetadataAsync(CreateOpsMetadataRequest createOpsMetadataRequest); /** *

* If you create a new application in Application Manager, Amazon Web Services Systems Manager calls this API * operation to specify information about the new application, including the application type. *

* * @param createOpsMetadataRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the CreateOpsMetadata operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.CreateOpsMetadata * @see AWS API * Documentation */ java.util.concurrent.Future createOpsMetadataAsync(CreateOpsMetadataRequest createOpsMetadataRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Creates a patch baseline. *

* *

* For information about valid key-value pairs in PatchFilters for each supported operating system * type, see PatchFilter. *

*
* * @param createPatchBaselineRequest * @return A Java Future containing the result of the CreatePatchBaseline operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.CreatePatchBaseline * @see AWS API * Documentation */ java.util.concurrent.Future createPatchBaselineAsync(CreatePatchBaselineRequest createPatchBaselineRequest); /** *

* Creates a patch baseline. *

* *

* For information about valid key-value pairs in PatchFilters for each supported operating system * type, see PatchFilter. *

*
* * @param createPatchBaselineRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the CreatePatchBaseline operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.CreatePatchBaseline * @see AWS API * Documentation */ java.util.concurrent.Future createPatchBaselineAsync(CreatePatchBaselineRequest createPatchBaselineRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* A resource data sync helps you view data from multiple sources in a single location. Amazon Web Services Systems * Manager offers two types of resource data sync: SyncToDestination and SyncFromSource. *

*

* You can configure Systems Manager Inventory to use the SyncToDestination type to synchronize * Inventory data from multiple Amazon Web Services Regions to a single Amazon Simple Storage Service (Amazon S3) * bucket. For more information, see Configuring * resource data sync for Inventory in the Amazon Web Services Systems Manager User Guide. *

*

* You can configure Systems Manager Explorer to use the SyncFromSource type to synchronize operational * work items (OpsItems) and operational data (OpsData) from multiple Amazon Web Services Regions to a single Amazon * S3 bucket. This type can synchronize OpsItems and OpsData from multiple Amazon Web Services accounts and Amazon * Web Services Regions or EntireOrganization by using Organizations. For more information, see Setting up * Systems Manager Explorer to display data from multiple accounts and Regions in the Amazon Web Services * Systems Manager User Guide. *

*

* A resource data sync is an asynchronous operation that returns immediately. After a successful initial sync is * completed, the system continuously syncs data. To check the status of a sync, use the * ListResourceDataSync. *

* *

* By default, data isn't encrypted in Amazon S3. We strongly recommend that you enable encryption in Amazon S3 to * ensure secure data storage. We also recommend that you secure access to the Amazon S3 bucket by creating a * restrictive bucket policy. *

*
* * @param createResourceDataSyncRequest * @return A Java Future containing the result of the CreateResourceDataSync operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.CreateResourceDataSync * @see AWS API * Documentation */ java.util.concurrent.Future createResourceDataSyncAsync(CreateResourceDataSyncRequest createResourceDataSyncRequest); /** *

* A resource data sync helps you view data from multiple sources in a single location. Amazon Web Services Systems * Manager offers two types of resource data sync: SyncToDestination and SyncFromSource. *

*

* You can configure Systems Manager Inventory to use the SyncToDestination type to synchronize * Inventory data from multiple Amazon Web Services Regions to a single Amazon Simple Storage Service (Amazon S3) * bucket. For more information, see Configuring * resource data sync for Inventory in the Amazon Web Services Systems Manager User Guide. *

*

* You can configure Systems Manager Explorer to use the SyncFromSource type to synchronize operational * work items (OpsItems) and operational data (OpsData) from multiple Amazon Web Services Regions to a single Amazon * S3 bucket. This type can synchronize OpsItems and OpsData from multiple Amazon Web Services accounts and Amazon * Web Services Regions or EntireOrganization by using Organizations. For more information, see Setting up * Systems Manager Explorer to display data from multiple accounts and Regions in the Amazon Web Services * Systems Manager User Guide. *

*

* A resource data sync is an asynchronous operation that returns immediately. After a successful initial sync is * completed, the system continuously syncs data. To check the status of a sync, use the * ListResourceDataSync. *

* *

* By default, data isn't encrypted in Amazon S3. We strongly recommend that you enable encryption in Amazon S3 to * ensure secure data storage. We also recommend that you secure access to the Amazon S3 bucket by creating a * restrictive bucket policy. *

*
* * @param createResourceDataSyncRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the CreateResourceDataSync operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.CreateResourceDataSync * @see AWS API * Documentation */ java.util.concurrent.Future createResourceDataSyncAsync(CreateResourceDataSyncRequest createResourceDataSyncRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Deletes an activation. You aren't required to delete an activation. If you delete an activation, you can no * longer use it to register additional managed nodes. Deleting an activation doesn't de-register managed nodes. You * must manually de-register managed nodes. *

* * @param deleteActivationRequest * @return A Java Future containing the result of the DeleteActivation operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeleteActivation * @see AWS API * Documentation */ java.util.concurrent.Future deleteActivationAsync(DeleteActivationRequest deleteActivationRequest); /** *

* Deletes an activation. You aren't required to delete an activation. If you delete an activation, you can no * longer use it to register additional managed nodes. Deleting an activation doesn't de-register managed nodes. You * must manually de-register managed nodes. *

* * @param deleteActivationRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeleteActivation operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeleteActivation * @see AWS API * Documentation */ java.util.concurrent.Future deleteActivationAsync(DeleteActivationRequest deleteActivationRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Disassociates the specified Amazon Web Services Systems Manager document (SSM document) from the specified * managed node. If you created the association by using the Targets parameter, then you must delete * the association by using the association ID. *

*

* When you disassociate a document from a managed node, it doesn't change the configuration of the node. To change * the configuration state of a managed node after you disassociate a document, you must create a new document with * the desired configuration and associate it with the node. *

* * @param deleteAssociationRequest * @return A Java Future containing the result of the DeleteAssociation operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeleteAssociation * @see AWS API * Documentation */ java.util.concurrent.Future deleteAssociationAsync(DeleteAssociationRequest deleteAssociationRequest); /** *

* Disassociates the specified Amazon Web Services Systems Manager document (SSM document) from the specified * managed node. If you created the association by using the Targets parameter, then you must delete * the association by using the association ID. *

*

* When you disassociate a document from a managed node, it doesn't change the configuration of the node. To change * the configuration state of a managed node after you disassociate a document, you must create a new document with * the desired configuration and associate it with the node. *

* * @param deleteAssociationRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeleteAssociation operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeleteAssociation * @see AWS API * Documentation */ java.util.concurrent.Future deleteAssociationAsync(DeleteAssociationRequest deleteAssociationRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Deletes the Amazon Web Services Systems Manager document (SSM document) and all managed node associations to the * document. *

*

* Before you delete the document, we recommend that you use DeleteAssociation to disassociate all managed * nodes that are associated with the document. *

* * @param deleteDocumentRequest * @return A Java Future containing the result of the DeleteDocument operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeleteDocument * @see AWS API * Documentation */ java.util.concurrent.Future deleteDocumentAsync(DeleteDocumentRequest deleteDocumentRequest); /** *

* Deletes the Amazon Web Services Systems Manager document (SSM document) and all managed node associations to the * document. *

*

* Before you delete the document, we recommend that you use DeleteAssociation to disassociate all managed * nodes that are associated with the document. *

* * @param deleteDocumentRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeleteDocument operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeleteDocument * @see AWS API * Documentation */ java.util.concurrent.Future deleteDocumentAsync(DeleteDocumentRequest deleteDocumentRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Delete a custom inventory type or the data associated with a custom Inventory type. Deleting a custom inventory * type is also referred to as deleting a custom inventory schema. *

* * @param deleteInventoryRequest * @return A Java Future containing the result of the DeleteInventory operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeleteInventory * @see AWS API * Documentation */ java.util.concurrent.Future deleteInventoryAsync(DeleteInventoryRequest deleteInventoryRequest); /** *

* Delete a custom inventory type or the data associated with a custom Inventory type. Deleting a custom inventory * type is also referred to as deleting a custom inventory schema. *

* * @param deleteInventoryRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeleteInventory operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeleteInventory * @see AWS API * Documentation */ java.util.concurrent.Future deleteInventoryAsync(DeleteInventoryRequest deleteInventoryRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Deletes a maintenance window. *

* * @param deleteMaintenanceWindowRequest * @return A Java Future containing the result of the DeleteMaintenanceWindow operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeleteMaintenanceWindow * @see AWS * API Documentation */ java.util.concurrent.Future deleteMaintenanceWindowAsync(DeleteMaintenanceWindowRequest deleteMaintenanceWindowRequest); /** *

* Deletes a maintenance window. *

* * @param deleteMaintenanceWindowRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeleteMaintenanceWindow operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeleteMaintenanceWindow * @see AWS * API Documentation */ java.util.concurrent.Future deleteMaintenanceWindowAsync(DeleteMaintenanceWindowRequest deleteMaintenanceWindowRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Delete an OpsItem. You must have permission in Identity and Access Management (IAM) to delete an OpsItem. *

* *

* Note the following important information about this operation. *

*
    *
  • *

    * Deleting an OpsItem is irreversible. You can't restore a deleted OpsItem. *

    *
  • *
  • *

    * This operation uses an eventual consistency model, which means the system can take a few minutes to * complete this operation. If you delete an OpsItem and immediately call, for example, GetOpsItem, the * deleted OpsItem might still appear in the response. *

    *
  • *
  • *

    * This operation is idempotent. The system doesn't throw an exception if you repeatedly call this operation for the * same OpsItem. If the first call is successful, all additional calls return the same successful response as the * first call. *

    *
  • *
  • *

    * This operation doesn't support cross-account calls. A delegated administrator or management account can't delete * OpsItems in other accounts, even if OpsCenter has been set up for cross-account administration. For more * information about cross-account administration, see Setting up OpsCenter to centrally manage OpsItems across accounts in the Systems Manager User Guide. *

    *
  • *
*
* * @param deleteOpsItemRequest * @return A Java Future containing the result of the DeleteOpsItem operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeleteOpsItem * @see AWS API * Documentation */ java.util.concurrent.Future deleteOpsItemAsync(DeleteOpsItemRequest deleteOpsItemRequest); /** *

* Delete an OpsItem. You must have permission in Identity and Access Management (IAM) to delete an OpsItem. *

* *

* Note the following important information about this operation. *

*
    *
  • *

    * Deleting an OpsItem is irreversible. You can't restore a deleted OpsItem. *

    *
  • *
  • *

    * This operation uses an eventual consistency model, which means the system can take a few minutes to * complete this operation. If you delete an OpsItem and immediately call, for example, GetOpsItem, the * deleted OpsItem might still appear in the response. *

    *
  • *
  • *

    * This operation is idempotent. The system doesn't throw an exception if you repeatedly call this operation for the * same OpsItem. If the first call is successful, all additional calls return the same successful response as the * first call. *

    *
  • *
  • *

    * This operation doesn't support cross-account calls. A delegated administrator or management account can't delete * OpsItems in other accounts, even if OpsCenter has been set up for cross-account administration. For more * information about cross-account administration, see Setting up OpsCenter to centrally manage OpsItems across accounts in the Systems Manager User Guide. *

    *
  • *
*
* * @param deleteOpsItemRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeleteOpsItem operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeleteOpsItem * @see AWS API * Documentation */ java.util.concurrent.Future deleteOpsItemAsync(DeleteOpsItemRequest deleteOpsItemRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Delete OpsMetadata related to an application. *

* * @param deleteOpsMetadataRequest * @return A Java Future containing the result of the DeleteOpsMetadata operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeleteOpsMetadata * @see AWS API * Documentation */ java.util.concurrent.Future deleteOpsMetadataAsync(DeleteOpsMetadataRequest deleteOpsMetadataRequest); /** *

* Delete OpsMetadata related to an application. *

* * @param deleteOpsMetadataRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeleteOpsMetadata operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeleteOpsMetadata * @see AWS API * Documentation */ java.util.concurrent.Future deleteOpsMetadataAsync(DeleteOpsMetadataRequest deleteOpsMetadataRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Delete a parameter from the system. After deleting a parameter, wait for at least 30 seconds to create a * parameter with the same name. *

* * @param deleteParameterRequest * @return A Java Future containing the result of the DeleteParameter operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeleteParameter * @see AWS API * Documentation */ java.util.concurrent.Future deleteParameterAsync(DeleteParameterRequest deleteParameterRequest); /** *

* Delete a parameter from the system. After deleting a parameter, wait for at least 30 seconds to create a * parameter with the same name. *

* * @param deleteParameterRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeleteParameter operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeleteParameter * @see AWS API * Documentation */ java.util.concurrent.Future deleteParameterAsync(DeleteParameterRequest deleteParameterRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Delete a list of parameters. After deleting a parameter, wait for at least 30 seconds to create a parameter with * the same name. *

* * @param deleteParametersRequest * @return A Java Future containing the result of the DeleteParameters operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeleteParameters * @see AWS API * Documentation */ java.util.concurrent.Future deleteParametersAsync(DeleteParametersRequest deleteParametersRequest); /** *

* Delete a list of parameters. After deleting a parameter, wait for at least 30 seconds to create a parameter with * the same name. *

* * @param deleteParametersRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeleteParameters operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeleteParameters * @see AWS API * Documentation */ java.util.concurrent.Future deleteParametersAsync(DeleteParametersRequest deleteParametersRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Deletes a patch baseline. *

* * @param deletePatchBaselineRequest * @return A Java Future containing the result of the DeletePatchBaseline operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeletePatchBaseline * @see AWS API * Documentation */ java.util.concurrent.Future deletePatchBaselineAsync(DeletePatchBaselineRequest deletePatchBaselineRequest); /** *

* Deletes a patch baseline. *

* * @param deletePatchBaselineRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeletePatchBaseline operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeletePatchBaseline * @see AWS API * Documentation */ java.util.concurrent.Future deletePatchBaselineAsync(DeletePatchBaselineRequest deletePatchBaselineRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Deletes a resource data sync configuration. After the configuration is deleted, changes to data on managed nodes * are no longer synced to or from the target. Deleting a sync configuration doesn't delete data. *

* * @param deleteResourceDataSyncRequest * @return A Java Future containing the result of the DeleteResourceDataSync operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeleteResourceDataSync * @see AWS API * Documentation */ java.util.concurrent.Future deleteResourceDataSyncAsync(DeleteResourceDataSyncRequest deleteResourceDataSyncRequest); /** *

* Deletes a resource data sync configuration. After the configuration is deleted, changes to data on managed nodes * are no longer synced to or from the target. Deleting a sync configuration doesn't delete data. *

* * @param deleteResourceDataSyncRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeleteResourceDataSync operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeleteResourceDataSync * @see AWS API * Documentation */ java.util.concurrent.Future deleteResourceDataSyncAsync(DeleteResourceDataSyncRequest deleteResourceDataSyncRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Deletes a Systems Manager resource policy. A resource policy helps you to define the IAM entity (for example, an * Amazon Web Services account) that can manage your Systems Manager resources. The following resources support * Systems Manager resource policies. *

*
    *
  • *

    * OpsItemGroup - The resource policy for OpsItemGroup enables Amazon Web Services * accounts to view and interact with OpsCenter operational work items (OpsItems). *

    *
  • *
  • *

    * Parameter - The resource policy is used to share a parameter with other accounts using Resource * Access Manager (RAM). For more information about cross-account sharing of parameters, see Working with shared parameters in the Amazon Web Services Systems Manager User Guide. *

    *
  • *
* * @param deleteResourcePolicyRequest * @return A Java Future containing the result of the DeleteResourcePolicy operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeleteResourcePolicy * @see AWS API * Documentation */ java.util.concurrent.Future deleteResourcePolicyAsync(DeleteResourcePolicyRequest deleteResourcePolicyRequest); /** *

* Deletes a Systems Manager resource policy. A resource policy helps you to define the IAM entity (for example, an * Amazon Web Services account) that can manage your Systems Manager resources. The following resources support * Systems Manager resource policies. *

*
    *
  • *

    * OpsItemGroup - The resource policy for OpsItemGroup enables Amazon Web Services * accounts to view and interact with OpsCenter operational work items (OpsItems). *

    *
  • *
  • *

    * Parameter - The resource policy is used to share a parameter with other accounts using Resource * Access Manager (RAM). For more information about cross-account sharing of parameters, see Working with shared parameters in the Amazon Web Services Systems Manager User Guide. *

    *
  • *
* * @param deleteResourcePolicyRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeleteResourcePolicy operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeleteResourcePolicy * @see AWS API * Documentation */ java.util.concurrent.Future deleteResourcePolicyAsync(DeleteResourcePolicyRequest deleteResourcePolicyRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Removes the server or virtual machine from the list of registered servers. You can reregister the node again at * any time. If you don't plan to use Run Command on the server, we suggest uninstalling SSM Agent first. *

* * @param deregisterManagedInstanceRequest * @return A Java Future containing the result of the DeregisterManagedInstance operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DeregisterManagedInstance * @see AWS * API Documentation */ java.util.concurrent.Future deregisterManagedInstanceAsync( DeregisterManagedInstanceRequest deregisterManagedInstanceRequest); /** *

* Removes the server or virtual machine from the list of registered servers. You can reregister the node again at * any time. If you don't plan to use Run Command on the server, we suggest uninstalling SSM Agent first. *

* * @param deregisterManagedInstanceRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeregisterManagedInstance operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeregisterManagedInstance * @see AWS * API Documentation */ java.util.concurrent.Future deregisterManagedInstanceAsync( DeregisterManagedInstanceRequest deregisterManagedInstanceRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Removes a patch group from a patch baseline. *

* * @param deregisterPatchBaselineForPatchGroupRequest * @return A Java Future containing the result of the DeregisterPatchBaselineForPatchGroup operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DeregisterPatchBaselineForPatchGroup * @see AWS API Documentation */ java.util.concurrent.Future deregisterPatchBaselineForPatchGroupAsync( DeregisterPatchBaselineForPatchGroupRequest deregisterPatchBaselineForPatchGroupRequest); /** *

* Removes a patch group from a patch baseline. *

* * @param deregisterPatchBaselineForPatchGroupRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeregisterPatchBaselineForPatchGroup operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeregisterPatchBaselineForPatchGroup * @see AWS API Documentation */ java.util.concurrent.Future deregisterPatchBaselineForPatchGroupAsync( DeregisterPatchBaselineForPatchGroupRequest deregisterPatchBaselineForPatchGroupRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Removes a target from a maintenance window. *

* * @param deregisterTargetFromMaintenanceWindowRequest * @return A Java Future containing the result of the DeregisterTargetFromMaintenanceWindow operation returned by * the service. * @sample AWSSimpleSystemsManagementAsync.DeregisterTargetFromMaintenanceWindow * @see AWS API Documentation */ java.util.concurrent.Future deregisterTargetFromMaintenanceWindowAsync( DeregisterTargetFromMaintenanceWindowRequest deregisterTargetFromMaintenanceWindowRequest); /** *

* Removes a target from a maintenance window. *

* * @param deregisterTargetFromMaintenanceWindowRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeregisterTargetFromMaintenanceWindow operation returned by * the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeregisterTargetFromMaintenanceWindow * @see AWS API Documentation */ java.util.concurrent.Future deregisterTargetFromMaintenanceWindowAsync( DeregisterTargetFromMaintenanceWindowRequest deregisterTargetFromMaintenanceWindowRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Removes a task from a maintenance window. *

* * @param deregisterTaskFromMaintenanceWindowRequest * @return A Java Future containing the result of the DeregisterTaskFromMaintenanceWindow operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DeregisterTaskFromMaintenanceWindow * @see AWS API Documentation */ java.util.concurrent.Future deregisterTaskFromMaintenanceWindowAsync( DeregisterTaskFromMaintenanceWindowRequest deregisterTaskFromMaintenanceWindowRequest); /** *

* Removes a task from a maintenance window. *

* * @param deregisterTaskFromMaintenanceWindowRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DeregisterTaskFromMaintenanceWindow operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DeregisterTaskFromMaintenanceWindow * @see AWS API Documentation */ java.util.concurrent.Future deregisterTaskFromMaintenanceWindowAsync( DeregisterTaskFromMaintenanceWindowRequest deregisterTaskFromMaintenanceWindowRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Describes details about the activation, such as the date and time the activation was created, its expiration * date, the Identity and Access Management (IAM) role assigned to the managed nodes in the activation, and the * number of nodes registered by using this activation. *

* * @param describeActivationsRequest * @return A Java Future containing the result of the DescribeActivations operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeActivations * @see AWS API * Documentation */ java.util.concurrent.Future describeActivationsAsync(DescribeActivationsRequest describeActivationsRequest); /** *

* Describes details about the activation, such as the date and time the activation was created, its expiration * date, the Identity and Access Management (IAM) role assigned to the managed nodes in the activation, and the * number of nodes registered by using this activation. *

* * @param describeActivationsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeActivations operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeActivations * @see AWS API * Documentation */ java.util.concurrent.Future describeActivationsAsync(DescribeActivationsRequest describeActivationsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Describes the association for the specified target or managed node. If you created the association by using the * Targets parameter, then you must retrieve the association by using the association ID. *

* * @param describeAssociationRequest * @return A Java Future containing the result of the DescribeAssociation operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeAssociation * @see AWS API * Documentation */ java.util.concurrent.Future describeAssociationAsync(DescribeAssociationRequest describeAssociationRequest); /** *

* Describes the association for the specified target or managed node. If you created the association by using the * Targets parameter, then you must retrieve the association by using the association ID. *

* * @param describeAssociationRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeAssociation operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeAssociation * @see AWS API * Documentation */ java.util.concurrent.Future describeAssociationAsync(DescribeAssociationRequest describeAssociationRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Views information about a specific execution of a specific association. *

* * @param describeAssociationExecutionTargetsRequest * @return A Java Future containing the result of the DescribeAssociationExecutionTargets operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DescribeAssociationExecutionTargets * @see AWS API Documentation */ java.util.concurrent.Future describeAssociationExecutionTargetsAsync( DescribeAssociationExecutionTargetsRequest describeAssociationExecutionTargetsRequest); /** *

* Views information about a specific execution of a specific association. *

* * @param describeAssociationExecutionTargetsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeAssociationExecutionTargets operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeAssociationExecutionTargets * @see AWS API Documentation */ java.util.concurrent.Future describeAssociationExecutionTargetsAsync( DescribeAssociationExecutionTargetsRequest describeAssociationExecutionTargetsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Views all executions for a specific association ID. *

* * @param describeAssociationExecutionsRequest * @return A Java Future containing the result of the DescribeAssociationExecutions operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DescribeAssociationExecutions * @see AWS API Documentation */ java.util.concurrent.Future describeAssociationExecutionsAsync( DescribeAssociationExecutionsRequest describeAssociationExecutionsRequest); /** *

* Views all executions for a specific association ID. *

* * @param describeAssociationExecutionsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeAssociationExecutions operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeAssociationExecutions * @see AWS API Documentation */ java.util.concurrent.Future describeAssociationExecutionsAsync( DescribeAssociationExecutionsRequest describeAssociationExecutionsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Provides details about all active and terminated Automation executions. *

* * @param describeAutomationExecutionsRequest * @return A Java Future containing the result of the DescribeAutomationExecutions operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DescribeAutomationExecutions * @see AWS API Documentation */ java.util.concurrent.Future describeAutomationExecutionsAsync( DescribeAutomationExecutionsRequest describeAutomationExecutionsRequest); /** *

* Provides details about all active and terminated Automation executions. *

* * @param describeAutomationExecutionsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeAutomationExecutions operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeAutomationExecutions * @see AWS API Documentation */ java.util.concurrent.Future describeAutomationExecutionsAsync( DescribeAutomationExecutionsRequest describeAutomationExecutionsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Information about all active and terminated step executions in an Automation workflow. *

* * @param describeAutomationStepExecutionsRequest * @return A Java Future containing the result of the DescribeAutomationStepExecutions operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DescribeAutomationStepExecutions * @see AWS API Documentation */ java.util.concurrent.Future describeAutomationStepExecutionsAsync( DescribeAutomationStepExecutionsRequest describeAutomationStepExecutionsRequest); /** *

* Information about all active and terminated step executions in an Automation workflow. *

* * @param describeAutomationStepExecutionsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeAutomationStepExecutions operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeAutomationStepExecutions * @see AWS API Documentation */ java.util.concurrent.Future describeAutomationStepExecutionsAsync( DescribeAutomationStepExecutionsRequest describeAutomationStepExecutionsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Lists all patches eligible to be included in a patch baseline. *

* *

* Currently, DescribeAvailablePatches supports only the Amazon Linux 1, Amazon Linux 2, and Windows * Server operating systems. *

*
* * @param describeAvailablePatchesRequest * @return A Java Future containing the result of the DescribeAvailablePatches operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeAvailablePatches * @see AWS * API Documentation */ java.util.concurrent.Future describeAvailablePatchesAsync(DescribeAvailablePatchesRequest describeAvailablePatchesRequest); /** *

* Lists all patches eligible to be included in a patch baseline. *

* *

* Currently, DescribeAvailablePatches supports only the Amazon Linux 1, Amazon Linux 2, and Windows * Server operating systems. *

*
* * @param describeAvailablePatchesRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeAvailablePatches operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeAvailablePatches * @see AWS * API Documentation */ java.util.concurrent.Future describeAvailablePatchesAsync(DescribeAvailablePatchesRequest describeAvailablePatchesRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Describes the specified Amazon Web Services Systems Manager document (SSM document). *

* * @param describeDocumentRequest * @return A Java Future containing the result of the DescribeDocument operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeDocument * @see AWS API * Documentation */ java.util.concurrent.Future describeDocumentAsync(DescribeDocumentRequest describeDocumentRequest); /** *

* Describes the specified Amazon Web Services Systems Manager document (SSM document). *

* * @param describeDocumentRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeDocument operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeDocument * @see AWS API * Documentation */ java.util.concurrent.Future describeDocumentAsync(DescribeDocumentRequest describeDocumentRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Describes the permissions for a Amazon Web Services Systems Manager document (SSM document). If you created the * document, you are the owner. If a document is shared, it can either be shared privately (by specifying a user's * Amazon Web Services account ID) or publicly (All). *

* * @param describeDocumentPermissionRequest * @return A Java Future containing the result of the DescribeDocumentPermission operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeDocumentPermission * @see AWS * API Documentation */ java.util.concurrent.Future describeDocumentPermissionAsync( DescribeDocumentPermissionRequest describeDocumentPermissionRequest); /** *

* Describes the permissions for a Amazon Web Services Systems Manager document (SSM document). If you created the * document, you are the owner. If a document is shared, it can either be shared privately (by specifying a user's * Amazon Web Services account ID) or publicly (All). *

* * @param describeDocumentPermissionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeDocumentPermission operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeDocumentPermission * @see AWS * API Documentation */ java.util.concurrent.Future describeDocumentPermissionAsync( DescribeDocumentPermissionRequest describeDocumentPermissionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* All associations for the managed nodes. *

* * @param describeEffectiveInstanceAssociationsRequest * @return A Java Future containing the result of the DescribeEffectiveInstanceAssociations operation returned by * the service. * @sample AWSSimpleSystemsManagementAsync.DescribeEffectiveInstanceAssociations * @see AWS API Documentation */ java.util.concurrent.Future describeEffectiveInstanceAssociationsAsync( DescribeEffectiveInstanceAssociationsRequest describeEffectiveInstanceAssociationsRequest); /** *

* All associations for the managed nodes. *

* * @param describeEffectiveInstanceAssociationsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeEffectiveInstanceAssociations operation returned by * the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeEffectiveInstanceAssociations * @see AWS API Documentation */ java.util.concurrent.Future describeEffectiveInstanceAssociationsAsync( DescribeEffectiveInstanceAssociationsRequest describeEffectiveInstanceAssociationsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves the current effective patches (the patch and the approval state) for the specified patch baseline. * Applies to patch baselines for Windows only. *

* * @param describeEffectivePatchesForPatchBaselineRequest * @return A Java Future containing the result of the DescribeEffectivePatchesForPatchBaseline operation returned by * the service. * @sample AWSSimpleSystemsManagementAsync.DescribeEffectivePatchesForPatchBaseline * @see AWS API Documentation */ java.util.concurrent.Future describeEffectivePatchesForPatchBaselineAsync( DescribeEffectivePatchesForPatchBaselineRequest describeEffectivePatchesForPatchBaselineRequest); /** *

* Retrieves the current effective patches (the patch and the approval state) for the specified patch baseline. * Applies to patch baselines for Windows only. *

* * @param describeEffectivePatchesForPatchBaselineRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeEffectivePatchesForPatchBaseline operation returned by * the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeEffectivePatchesForPatchBaseline * @see AWS API Documentation */ java.util.concurrent.Future describeEffectivePatchesForPatchBaselineAsync( DescribeEffectivePatchesForPatchBaselineRequest describeEffectivePatchesForPatchBaselineRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* The status of the associations for the managed nodes. *

* * @param describeInstanceAssociationsStatusRequest * @return A Java Future containing the result of the DescribeInstanceAssociationsStatus operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DescribeInstanceAssociationsStatus * @see AWS API Documentation */ java.util.concurrent.Future describeInstanceAssociationsStatusAsync( DescribeInstanceAssociationsStatusRequest describeInstanceAssociationsStatusRequest); /** *

* The status of the associations for the managed nodes. *

* * @param describeInstanceAssociationsStatusRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeInstanceAssociationsStatus operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeInstanceAssociationsStatus * @see AWS API Documentation */ java.util.concurrent.Future describeInstanceAssociationsStatusAsync( DescribeInstanceAssociationsStatusRequest describeInstanceAssociationsStatusRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Provides information about one or more of your managed nodes, including the operating system platform, SSM Agent * version, association status, and IP address. This operation does not return information for nodes that are either * Stopped or Terminated. *

*

* If you specify one or more node IDs, the operation returns information for those managed nodes. If you don't * specify node IDs, it returns information for all your managed nodes. If you specify a node ID that isn't valid or * a node that you don't own, you receive an error. *

* *

* The IamRole field returned for this API operation is the Identity and Access Management (IAM) role * assigned to on-premises managed nodes. This operation does not return the IAM role for EC2 instances. *

*
* * @param describeInstanceInformationRequest * @return A Java Future containing the result of the DescribeInstanceInformation operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeInstanceInformation * @see AWS API Documentation */ java.util.concurrent.Future describeInstanceInformationAsync( DescribeInstanceInformationRequest describeInstanceInformationRequest); /** *

* Provides information about one or more of your managed nodes, including the operating system platform, SSM Agent * version, association status, and IP address. This operation does not return information for nodes that are either * Stopped or Terminated. *

*

* If you specify one or more node IDs, the operation returns information for those managed nodes. If you don't * specify node IDs, it returns information for all your managed nodes. If you specify a node ID that isn't valid or * a node that you don't own, you receive an error. *

* *

* The IamRole field returned for this API operation is the Identity and Access Management (IAM) role * assigned to on-premises managed nodes. This operation does not return the IAM role for EC2 instances. *

*
* * @param describeInstanceInformationRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeInstanceInformation operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeInstanceInformation * @see AWS API Documentation */ java.util.concurrent.Future describeInstanceInformationAsync( DescribeInstanceInformationRequest describeInstanceInformationRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves the high-level patch state of one or more managed nodes. *

* * @param describeInstancePatchStatesRequest * @return A Java Future containing the result of the DescribeInstancePatchStates operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeInstancePatchStates * @see AWS API Documentation */ java.util.concurrent.Future describeInstancePatchStatesAsync( DescribeInstancePatchStatesRequest describeInstancePatchStatesRequest); /** *

* Retrieves the high-level patch state of one or more managed nodes. *

* * @param describeInstancePatchStatesRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeInstancePatchStates operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeInstancePatchStates * @see AWS API Documentation */ java.util.concurrent.Future describeInstancePatchStatesAsync( DescribeInstancePatchStatesRequest describeInstancePatchStatesRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves the high-level patch state for the managed nodes in the specified patch group. *

* * @param describeInstancePatchStatesForPatchGroupRequest * @return A Java Future containing the result of the DescribeInstancePatchStatesForPatchGroup operation returned by * the service. * @sample AWSSimpleSystemsManagementAsync.DescribeInstancePatchStatesForPatchGroup * @see AWS API Documentation */ java.util.concurrent.Future describeInstancePatchStatesForPatchGroupAsync( DescribeInstancePatchStatesForPatchGroupRequest describeInstancePatchStatesForPatchGroupRequest); /** *

* Retrieves the high-level patch state for the managed nodes in the specified patch group. *

* * @param describeInstancePatchStatesForPatchGroupRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeInstancePatchStatesForPatchGroup operation returned by * the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeInstancePatchStatesForPatchGroup * @see AWS API Documentation */ java.util.concurrent.Future describeInstancePatchStatesForPatchGroupAsync( DescribeInstancePatchStatesForPatchGroupRequest describeInstancePatchStatesForPatchGroupRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves information about the patches on the specified managed node and their state relative to the patch * baseline being used for the node. *

* * @param describeInstancePatchesRequest * @return A Java Future containing the result of the DescribeInstancePatches operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeInstancePatches * @see AWS * API Documentation */ java.util.concurrent.Future describeInstancePatchesAsync(DescribeInstancePatchesRequest describeInstancePatchesRequest); /** *

* Retrieves information about the patches on the specified managed node and their state relative to the patch * baseline being used for the node. *

* * @param describeInstancePatchesRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeInstancePatches operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeInstancePatches * @see AWS * API Documentation */ java.util.concurrent.Future describeInstancePatchesAsync(DescribeInstancePatchesRequest describeInstancePatchesRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* An API operation used by the Systems Manager console to display information about Systems Manager managed nodes. *

* * @param describeInstancePropertiesRequest * @return A Java Future containing the result of the DescribeInstanceProperties operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeInstanceProperties * @see AWS * API Documentation */ java.util.concurrent.Future describeInstancePropertiesAsync( DescribeInstancePropertiesRequest describeInstancePropertiesRequest); /** *

* An API operation used by the Systems Manager console to display information about Systems Manager managed nodes. *

* * @param describeInstancePropertiesRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeInstanceProperties operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeInstanceProperties * @see AWS * API Documentation */ java.util.concurrent.Future describeInstancePropertiesAsync( DescribeInstancePropertiesRequest describeInstancePropertiesRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Describes a specific delete inventory operation. *

* * @param describeInventoryDeletionsRequest * @return A Java Future containing the result of the DescribeInventoryDeletions operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeInventoryDeletions * @see AWS * API Documentation */ java.util.concurrent.Future describeInventoryDeletionsAsync( DescribeInventoryDeletionsRequest describeInventoryDeletionsRequest); /** *

* Describes a specific delete inventory operation. *

* * @param describeInventoryDeletionsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeInventoryDeletions operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeInventoryDeletions * @see AWS * API Documentation */ java.util.concurrent.Future describeInventoryDeletionsAsync( DescribeInventoryDeletionsRequest describeInventoryDeletionsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves the individual task executions (one per target) for a particular task run as part of a maintenance * window execution. *

* * @param describeMaintenanceWindowExecutionTaskInvocationsRequest * @return A Java Future containing the result of the DescribeMaintenanceWindowExecutionTaskInvocations operation * returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeMaintenanceWindowExecutionTaskInvocations * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowExecutionTaskInvocationsAsync( DescribeMaintenanceWindowExecutionTaskInvocationsRequest describeMaintenanceWindowExecutionTaskInvocationsRequest); /** *

* Retrieves the individual task executions (one per target) for a particular task run as part of a maintenance * window execution. *

* * @param describeMaintenanceWindowExecutionTaskInvocationsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeMaintenanceWindowExecutionTaskInvocations operation * returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeMaintenanceWindowExecutionTaskInvocations * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowExecutionTaskInvocationsAsync( DescribeMaintenanceWindowExecutionTaskInvocationsRequest describeMaintenanceWindowExecutionTaskInvocationsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* For a given maintenance window execution, lists the tasks that were run. *

* * @param describeMaintenanceWindowExecutionTasksRequest * @return A Java Future containing the result of the DescribeMaintenanceWindowExecutionTasks operation returned by * the service. * @sample AWSSimpleSystemsManagementAsync.DescribeMaintenanceWindowExecutionTasks * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowExecutionTasksAsync( DescribeMaintenanceWindowExecutionTasksRequest describeMaintenanceWindowExecutionTasksRequest); /** *

* For a given maintenance window execution, lists the tasks that were run. *

* * @param describeMaintenanceWindowExecutionTasksRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeMaintenanceWindowExecutionTasks operation returned by * the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeMaintenanceWindowExecutionTasks * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowExecutionTasksAsync( DescribeMaintenanceWindowExecutionTasksRequest describeMaintenanceWindowExecutionTasksRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Lists the executions of a maintenance window. This includes information about when the maintenance window was * scheduled to be active, and information about tasks registered and run with the maintenance window. *

* * @param describeMaintenanceWindowExecutionsRequest * @return A Java Future containing the result of the DescribeMaintenanceWindowExecutions operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DescribeMaintenanceWindowExecutions * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowExecutionsAsync( DescribeMaintenanceWindowExecutionsRequest describeMaintenanceWindowExecutionsRequest); /** *

* Lists the executions of a maintenance window. This includes information about when the maintenance window was * scheduled to be active, and information about tasks registered and run with the maintenance window. *

* * @param describeMaintenanceWindowExecutionsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeMaintenanceWindowExecutions operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeMaintenanceWindowExecutions * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowExecutionsAsync( DescribeMaintenanceWindowExecutionsRequest describeMaintenanceWindowExecutionsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves information about upcoming executions of a maintenance window. *

* * @param describeMaintenanceWindowScheduleRequest * @return A Java Future containing the result of the DescribeMaintenanceWindowSchedule operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DescribeMaintenanceWindowSchedule * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowScheduleAsync( DescribeMaintenanceWindowScheduleRequest describeMaintenanceWindowScheduleRequest); /** *

* Retrieves information about upcoming executions of a maintenance window. *

* * @param describeMaintenanceWindowScheduleRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeMaintenanceWindowSchedule operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeMaintenanceWindowSchedule * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowScheduleAsync( DescribeMaintenanceWindowScheduleRequest describeMaintenanceWindowScheduleRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Lists the targets registered with the maintenance window. *

* * @param describeMaintenanceWindowTargetsRequest * @return A Java Future containing the result of the DescribeMaintenanceWindowTargets operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DescribeMaintenanceWindowTargets * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowTargetsAsync( DescribeMaintenanceWindowTargetsRequest describeMaintenanceWindowTargetsRequest); /** *

* Lists the targets registered with the maintenance window. *

* * @param describeMaintenanceWindowTargetsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeMaintenanceWindowTargets operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeMaintenanceWindowTargets * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowTargetsAsync( DescribeMaintenanceWindowTargetsRequest describeMaintenanceWindowTargetsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Lists the tasks in a maintenance window. *

* *

* For maintenance window tasks without a specified target, you can't supply values for --max-errors * and --max-concurrency. Instead, the system inserts a placeholder value of 1, which may * be reported in the response to this command. These values don't affect the running of your task and can be * ignored. *

*
* * @param describeMaintenanceWindowTasksRequest * @return A Java Future containing the result of the DescribeMaintenanceWindowTasks operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DescribeMaintenanceWindowTasks * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowTasksAsync( DescribeMaintenanceWindowTasksRequest describeMaintenanceWindowTasksRequest); /** *

* Lists the tasks in a maintenance window. *

* *

* For maintenance window tasks without a specified target, you can't supply values for --max-errors * and --max-concurrency. Instead, the system inserts a placeholder value of 1, which may * be reported in the response to this command. These values don't affect the running of your task and can be * ignored. *

*
* * @param describeMaintenanceWindowTasksRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeMaintenanceWindowTasks operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeMaintenanceWindowTasks * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowTasksAsync( DescribeMaintenanceWindowTasksRequest describeMaintenanceWindowTasksRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves the maintenance windows in an Amazon Web Services account. *

* * @param describeMaintenanceWindowsRequest * @return A Java Future containing the result of the DescribeMaintenanceWindows operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeMaintenanceWindows * @see AWS * API Documentation */ java.util.concurrent.Future describeMaintenanceWindowsAsync( DescribeMaintenanceWindowsRequest describeMaintenanceWindowsRequest); /** *

* Retrieves the maintenance windows in an Amazon Web Services account. *

* * @param describeMaintenanceWindowsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeMaintenanceWindows operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeMaintenanceWindows * @see AWS * API Documentation */ java.util.concurrent.Future describeMaintenanceWindowsAsync( DescribeMaintenanceWindowsRequest describeMaintenanceWindowsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves information about the maintenance window targets or tasks that a managed node is associated with. *

* * @param describeMaintenanceWindowsForTargetRequest * @return A Java Future containing the result of the DescribeMaintenanceWindowsForTarget operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DescribeMaintenanceWindowsForTarget * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowsForTargetAsync( DescribeMaintenanceWindowsForTargetRequest describeMaintenanceWindowsForTargetRequest); /** *

* Retrieves information about the maintenance window targets or tasks that a managed node is associated with. *

* * @param describeMaintenanceWindowsForTargetRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeMaintenanceWindowsForTarget operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeMaintenanceWindowsForTarget * @see AWS API Documentation */ java.util.concurrent.Future describeMaintenanceWindowsForTargetAsync( DescribeMaintenanceWindowsForTargetRequest describeMaintenanceWindowsForTargetRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Query a set of OpsItems. You must have permission in Identity and Access Management (IAM) to query a list of * OpsItems. For more information, see Set up OpsCenter in * the Amazon Web Services Systems Manager User Guide. *

*

* Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, * and remediate operational issues impacting the performance and health of their Amazon Web Services resources. For * more information, see Amazon Web Services Systems * Manager OpsCenter in the Amazon Web Services Systems Manager User Guide. *

* * @param describeOpsItemsRequest * @return A Java Future containing the result of the DescribeOpsItems operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeOpsItems * @see AWS API * Documentation */ java.util.concurrent.Future describeOpsItemsAsync(DescribeOpsItemsRequest describeOpsItemsRequest); /** *

* Query a set of OpsItems. You must have permission in Identity and Access Management (IAM) to query a list of * OpsItems. For more information, see Set up OpsCenter in * the Amazon Web Services Systems Manager User Guide. *

*

* Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, * and remediate operational issues impacting the performance and health of their Amazon Web Services resources. For * more information, see Amazon Web Services Systems * Manager OpsCenter in the Amazon Web Services Systems Manager User Guide. *

* * @param describeOpsItemsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeOpsItems operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeOpsItems * @see AWS API * Documentation */ java.util.concurrent.Future describeOpsItemsAsync(DescribeOpsItemsRequest describeOpsItemsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Lists the parameters in your Amazon Web Services account or the parameters shared with you when you enable the Shared option. *

*

* Request results are returned on a best-effort basis. If you specify MaxResults in the request, the * response includes information up to the limit specified. The number of items returned, however, can be between * zero and the value of MaxResults. If the service reaches an internal limit while processing the * results, it stops the operation and returns the matching values up to that point and a NextToken. * You can specify the NextToken in a subsequent call to get the next set of results. *

* *

* If you change the KMS key alias for the KMS key used to encrypt a parameter, then you must also update the key * alias the parameter uses to reference KMS. Otherwise, DescribeParameters retrieves whatever the * original key alias was referencing. *

*
* * @param describeParametersRequest * @return A Java Future containing the result of the DescribeParameters operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeParameters * @see AWS API * Documentation */ java.util.concurrent.Future describeParametersAsync(DescribeParametersRequest describeParametersRequest); /** *

* Lists the parameters in your Amazon Web Services account or the parameters shared with you when you enable the Shared option. *

*

* Request results are returned on a best-effort basis. If you specify MaxResults in the request, the * response includes information up to the limit specified. The number of items returned, however, can be between * zero and the value of MaxResults. If the service reaches an internal limit while processing the * results, it stops the operation and returns the matching values up to that point and a NextToken. * You can specify the NextToken in a subsequent call to get the next set of results. *

* *

* If you change the KMS key alias for the KMS key used to encrypt a parameter, then you must also update the key * alias the parameter uses to reference KMS. Otherwise, DescribeParameters retrieves whatever the * original key alias was referencing. *

*
* * @param describeParametersRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeParameters operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeParameters * @see AWS API * Documentation */ java.util.concurrent.Future describeParametersAsync(DescribeParametersRequest describeParametersRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Lists the patch baselines in your Amazon Web Services account. *

* * @param describePatchBaselinesRequest * @return A Java Future containing the result of the DescribePatchBaselines operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribePatchBaselines * @see AWS API * Documentation */ java.util.concurrent.Future describePatchBaselinesAsync(DescribePatchBaselinesRequest describePatchBaselinesRequest); /** *

* Lists the patch baselines in your Amazon Web Services account. *

* * @param describePatchBaselinesRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribePatchBaselines operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribePatchBaselines * @see AWS API * Documentation */ java.util.concurrent.Future describePatchBaselinesAsync(DescribePatchBaselinesRequest describePatchBaselinesRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Returns high-level aggregated patch compliance state information for a patch group. *

* * @param describePatchGroupStateRequest * @return A Java Future containing the result of the DescribePatchGroupState operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribePatchGroupState * @see AWS * API Documentation */ java.util.concurrent.Future describePatchGroupStateAsync(DescribePatchGroupStateRequest describePatchGroupStateRequest); /** *

* Returns high-level aggregated patch compliance state information for a patch group. *

* * @param describePatchGroupStateRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribePatchGroupState operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribePatchGroupState * @see AWS * API Documentation */ java.util.concurrent.Future describePatchGroupStateAsync(DescribePatchGroupStateRequest describePatchGroupStateRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Lists all patch groups that have been registered with patch baselines. *

* * @param describePatchGroupsRequest * @return A Java Future containing the result of the DescribePatchGroups operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribePatchGroups * @see AWS API * Documentation */ java.util.concurrent.Future describePatchGroupsAsync(DescribePatchGroupsRequest describePatchGroupsRequest); /** *

* Lists all patch groups that have been registered with patch baselines. *

* * @param describePatchGroupsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribePatchGroups operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribePatchGroups * @see AWS API * Documentation */ java.util.concurrent.Future describePatchGroupsAsync(DescribePatchGroupsRequest describePatchGroupsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Lists the properties of available patches organized by product, product family, classification, severity, and * other properties of available patches. You can use the reported properties in the filters you specify in requests * for operations such as CreatePatchBaseline, UpdatePatchBaseline, DescribeAvailablePatches, * and DescribePatchBaselines. *

*

* The following section lists the properties that can be used in filters for each major operating system type: *

*
*
AMAZON_LINUX
*
*

* Valid properties: PRODUCT | CLASSIFICATION | SEVERITY *

*
*
AMAZON_LINUX_2
*
*

* Valid properties: PRODUCT | CLASSIFICATION | SEVERITY *

*
*
CENTOS
*
*

* Valid properties: PRODUCT | CLASSIFICATION | SEVERITY *

*
*
DEBIAN
*
*

* Valid properties: PRODUCT | PRIORITY *

*
*
MACOS
*
*

* Valid properties: PRODUCT | CLASSIFICATION *

*
*
ORACLE_LINUX
*
*

* Valid properties: PRODUCT | CLASSIFICATION | SEVERITY *

*
*
REDHAT_ENTERPRISE_LINUX
*
*

* Valid properties: PRODUCT | CLASSIFICATION | SEVERITY *

*
*
SUSE
*
*

* Valid properties: PRODUCT | CLASSIFICATION | SEVERITY *

*
*
UBUNTU
*
*

* Valid properties: PRODUCT | PRIORITY *

*
*
WINDOWS
*
*

* Valid properties: PRODUCT | PRODUCT_FAMILY | CLASSIFICATION | * MSRC_SEVERITY *

*
*
* * @param describePatchPropertiesRequest * @return A Java Future containing the result of the DescribePatchProperties operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribePatchProperties * @see AWS * API Documentation */ java.util.concurrent.Future describePatchPropertiesAsync(DescribePatchPropertiesRequest describePatchPropertiesRequest); /** *

* Lists the properties of available patches organized by product, product family, classification, severity, and * other properties of available patches. You can use the reported properties in the filters you specify in requests * for operations such as CreatePatchBaseline, UpdatePatchBaseline, DescribeAvailablePatches, * and DescribePatchBaselines. *

*

* The following section lists the properties that can be used in filters for each major operating system type: *

*
*
AMAZON_LINUX
*
*

* Valid properties: PRODUCT | CLASSIFICATION | SEVERITY *

*
*
AMAZON_LINUX_2
*
*

* Valid properties: PRODUCT | CLASSIFICATION | SEVERITY *

*
*
CENTOS
*
*

* Valid properties: PRODUCT | CLASSIFICATION | SEVERITY *

*
*
DEBIAN
*
*

* Valid properties: PRODUCT | PRIORITY *

*
*
MACOS
*
*

* Valid properties: PRODUCT | CLASSIFICATION *

*
*
ORACLE_LINUX
*
*

* Valid properties: PRODUCT | CLASSIFICATION | SEVERITY *

*
*
REDHAT_ENTERPRISE_LINUX
*
*

* Valid properties: PRODUCT | CLASSIFICATION | SEVERITY *

*
*
SUSE
*
*

* Valid properties: PRODUCT | CLASSIFICATION | SEVERITY *

*
*
UBUNTU
*
*

* Valid properties: PRODUCT | PRIORITY *

*
*
WINDOWS
*
*

* Valid properties: PRODUCT | PRODUCT_FAMILY | CLASSIFICATION | * MSRC_SEVERITY *

*
*
* * @param describePatchPropertiesRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribePatchProperties operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribePatchProperties * @see AWS * API Documentation */ java.util.concurrent.Future describePatchPropertiesAsync(DescribePatchPropertiesRequest describePatchPropertiesRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves a list of all active sessions (both connected and disconnected) or terminated sessions from the past 30 * days. *

* * @param describeSessionsRequest * @return A Java Future containing the result of the DescribeSessions operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.DescribeSessions * @see AWS API * Documentation */ java.util.concurrent.Future describeSessionsAsync(DescribeSessionsRequest describeSessionsRequest); /** *

* Retrieves a list of all active sessions (both connected and disconnected) or terminated sessions from the past 30 * days. *

* * @param describeSessionsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DescribeSessions operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.DescribeSessions * @see AWS API * Documentation */ java.util.concurrent.Future describeSessionsAsync(DescribeSessionsRequest describeSessionsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Deletes the association between an OpsItem and a related item. For example, this API operation can delete an * Incident Manager incident from an OpsItem. Incident Manager is a capability of Amazon Web Services Systems * Manager. *

* * @param disassociateOpsItemRelatedItemRequest * @return A Java Future containing the result of the DisassociateOpsItemRelatedItem operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.DisassociateOpsItemRelatedItem * @see AWS API Documentation */ java.util.concurrent.Future disassociateOpsItemRelatedItemAsync( DisassociateOpsItemRelatedItemRequest disassociateOpsItemRelatedItemRequest); /** *

* Deletes the association between an OpsItem and a related item. For example, this API operation can delete an * Incident Manager incident from an OpsItem. Incident Manager is a capability of Amazon Web Services Systems * Manager. *

* * @param disassociateOpsItemRelatedItemRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the DisassociateOpsItemRelatedItem operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.DisassociateOpsItemRelatedItem * @see AWS API Documentation */ java.util.concurrent.Future disassociateOpsItemRelatedItemAsync( DisassociateOpsItemRelatedItemRequest disassociateOpsItemRelatedItemRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Get detailed information about a particular Automation execution. *

* * @param getAutomationExecutionRequest * @return A Java Future containing the result of the GetAutomationExecution operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetAutomationExecution * @see AWS API * Documentation */ java.util.concurrent.Future getAutomationExecutionAsync(GetAutomationExecutionRequest getAutomationExecutionRequest); /** *

* Get detailed information about a particular Automation execution. *

* * @param getAutomationExecutionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetAutomationExecution operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetAutomationExecution * @see AWS API * Documentation */ java.util.concurrent.Future getAutomationExecutionAsync(GetAutomationExecutionRequest getAutomationExecutionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Gets the state of a Amazon Web Services Systems Manager change calendar at the current time or a specified time. * If you specify a time, GetCalendarState returns the state of the calendar at that specific time, and * returns the next time that the change calendar state will transition. If you don't specify a time, * GetCalendarState uses the current time. Change Calendar entries have two possible states: * OPEN or CLOSED. *

*

* If you specify more than one calendar in a request, the command returns the status of OPEN only if * all calendars in the request are open. If one or more calendars in the request are closed, the status returned is * CLOSED. *

*

* For more information about Change Calendar, a capability of Amazon Web Services Systems Manager, see Amazon * Web Services Systems Manager Change Calendar in the Amazon Web Services Systems Manager User Guide. *

* * @param getCalendarStateRequest * @return A Java Future containing the result of the GetCalendarState operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetCalendarState * @see AWS API * Documentation */ java.util.concurrent.Future getCalendarStateAsync(GetCalendarStateRequest getCalendarStateRequest); /** *

* Gets the state of a Amazon Web Services Systems Manager change calendar at the current time or a specified time. * If you specify a time, GetCalendarState returns the state of the calendar at that specific time, and * returns the next time that the change calendar state will transition. If you don't specify a time, * GetCalendarState uses the current time. Change Calendar entries have two possible states: * OPEN or CLOSED. *

*

* If you specify more than one calendar in a request, the command returns the status of OPEN only if * all calendars in the request are open. If one or more calendars in the request are closed, the status returned is * CLOSED. *

*

* For more information about Change Calendar, a capability of Amazon Web Services Systems Manager, see Amazon * Web Services Systems Manager Change Calendar in the Amazon Web Services Systems Manager User Guide. *

* * @param getCalendarStateRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetCalendarState operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetCalendarState * @see AWS API * Documentation */ java.util.concurrent.Future getCalendarStateAsync(GetCalendarStateRequest getCalendarStateRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Returns detailed information about command execution for an invocation or plugin. *

*

* GetCommandInvocation only gives the execution status of a plugin in a document. To get the command * execution status on a specific managed node, use ListCommandInvocations. To get the command execution * status across managed nodes, use ListCommands. *

* * @param getCommandInvocationRequest * @return A Java Future containing the result of the GetCommandInvocation operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetCommandInvocation * @see AWS API * Documentation */ java.util.concurrent.Future getCommandInvocationAsync(GetCommandInvocationRequest getCommandInvocationRequest); /** *

* Returns detailed information about command execution for an invocation or plugin. *

*

* GetCommandInvocation only gives the execution status of a plugin in a document. To get the command * execution status on a specific managed node, use ListCommandInvocations. To get the command execution * status across managed nodes, use ListCommands. *

* * @param getCommandInvocationRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetCommandInvocation operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetCommandInvocation * @see AWS API * Documentation */ java.util.concurrent.Future getCommandInvocationAsync(GetCommandInvocationRequest getCommandInvocationRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves the Session Manager connection status for a managed node to determine whether it is running and ready * to receive Session Manager connections. *

* * @param getConnectionStatusRequest * @return A Java Future containing the result of the GetConnectionStatus operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetConnectionStatus * @see AWS API * Documentation */ java.util.concurrent.Future getConnectionStatusAsync(GetConnectionStatusRequest getConnectionStatusRequest); /** *

* Retrieves the Session Manager connection status for a managed node to determine whether it is running and ready * to receive Session Manager connections. *

* * @param getConnectionStatusRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetConnectionStatus operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetConnectionStatus * @see AWS API * Documentation */ java.util.concurrent.Future getConnectionStatusAsync(GetConnectionStatusRequest getConnectionStatusRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves the default patch baseline. Amazon Web Services Systems Manager supports creating multiple default * patch baselines. For example, you can create a default patch baseline for each operating system. *

*

* If you don't specify an operating system value, the default patch baseline for Windows is returned. *

* * @param getDefaultPatchBaselineRequest * @return A Java Future containing the result of the GetDefaultPatchBaseline operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetDefaultPatchBaseline * @see AWS * API Documentation */ java.util.concurrent.Future getDefaultPatchBaselineAsync(GetDefaultPatchBaselineRequest getDefaultPatchBaselineRequest); /** *

* Retrieves the default patch baseline. Amazon Web Services Systems Manager supports creating multiple default * patch baselines. For example, you can create a default patch baseline for each operating system. *

*

* If you don't specify an operating system value, the default patch baseline for Windows is returned. *

* * @param getDefaultPatchBaselineRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetDefaultPatchBaseline operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetDefaultPatchBaseline * @see AWS * API Documentation */ java.util.concurrent.Future getDefaultPatchBaselineAsync(GetDefaultPatchBaselineRequest getDefaultPatchBaselineRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves the current snapshot for the patch baseline the managed node uses. This API is primarily used by the * AWS-RunPatchBaseline Systems Manager document (SSM document). *

* *

* If you run the command locally, such as with the Command Line Interface (CLI), the system attempts to use your * local Amazon Web Services credentials and the operation fails. To avoid this, you can run the command in the * Amazon Web Services Systems Manager console. Use Run Command, a capability of Amazon Web Services Systems * Manager, with an SSM document that enables you to target a managed node with a script or command. For example, * run the command using the AWS-RunShellScript document or the AWS-RunPowerShellScript * document. *

*
* * @param getDeployablePatchSnapshotForInstanceRequest * @return A Java Future containing the result of the GetDeployablePatchSnapshotForInstance operation returned by * the service. * @sample AWSSimpleSystemsManagementAsync.GetDeployablePatchSnapshotForInstance * @see AWS API Documentation */ java.util.concurrent.Future getDeployablePatchSnapshotForInstanceAsync( GetDeployablePatchSnapshotForInstanceRequest getDeployablePatchSnapshotForInstanceRequest); /** *

* Retrieves the current snapshot for the patch baseline the managed node uses. This API is primarily used by the * AWS-RunPatchBaseline Systems Manager document (SSM document). *

* *

* If you run the command locally, such as with the Command Line Interface (CLI), the system attempts to use your * local Amazon Web Services credentials and the operation fails. To avoid this, you can run the command in the * Amazon Web Services Systems Manager console. Use Run Command, a capability of Amazon Web Services Systems * Manager, with an SSM document that enables you to target a managed node with a script or command. For example, * run the command using the AWS-RunShellScript document or the AWS-RunPowerShellScript * document. *

*
* * @param getDeployablePatchSnapshotForInstanceRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetDeployablePatchSnapshotForInstance operation returned by * the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetDeployablePatchSnapshotForInstance * @see AWS API Documentation */ java.util.concurrent.Future getDeployablePatchSnapshotForInstanceAsync( GetDeployablePatchSnapshotForInstanceRequest getDeployablePatchSnapshotForInstanceRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Gets the contents of the specified Amazon Web Services Systems Manager document (SSM document). *

* * @param getDocumentRequest * @return A Java Future containing the result of the GetDocument operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetDocument * @see AWS API * Documentation */ java.util.concurrent.Future getDocumentAsync(GetDocumentRequest getDocumentRequest); /** *

* Gets the contents of the specified Amazon Web Services Systems Manager document (SSM document). *

* * @param getDocumentRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetDocument operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetDocument * @see AWS API * Documentation */ java.util.concurrent.Future getDocumentAsync(GetDocumentRequest getDocumentRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Query inventory information. This includes managed node status, such as Stopped or * Terminated. *

* * @param getInventoryRequest * @return A Java Future containing the result of the GetInventory operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetInventory * @see AWS API * Documentation */ java.util.concurrent.Future getInventoryAsync(GetInventoryRequest getInventoryRequest); /** *

* Query inventory information. This includes managed node status, such as Stopped or * Terminated. *

* * @param getInventoryRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetInventory operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetInventory * @see AWS API * Documentation */ java.util.concurrent.Future getInventoryAsync(GetInventoryRequest getInventoryRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Return a list of inventory type names for the account, or return a list of attribute names for a specific * Inventory item type. *

* * @param getInventorySchemaRequest * @return A Java Future containing the result of the GetInventorySchema operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetInventorySchema * @see AWS API * Documentation */ java.util.concurrent.Future getInventorySchemaAsync(GetInventorySchemaRequest getInventorySchemaRequest); /** *

* Return a list of inventory type names for the account, or return a list of attribute names for a specific * Inventory item type. *

* * @param getInventorySchemaRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetInventorySchema operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetInventorySchema * @see AWS API * Documentation */ java.util.concurrent.Future getInventorySchemaAsync(GetInventorySchemaRequest getInventorySchemaRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves a maintenance window. *

* * @param getMaintenanceWindowRequest * @return A Java Future containing the result of the GetMaintenanceWindow operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetMaintenanceWindow * @see AWS API * Documentation */ java.util.concurrent.Future getMaintenanceWindowAsync(GetMaintenanceWindowRequest getMaintenanceWindowRequest); /** *

* Retrieves a maintenance window. *

* * @param getMaintenanceWindowRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetMaintenanceWindow operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetMaintenanceWindow * @see AWS API * Documentation */ java.util.concurrent.Future getMaintenanceWindowAsync(GetMaintenanceWindowRequest getMaintenanceWindowRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves details about a specific a maintenance window execution. *

* * @param getMaintenanceWindowExecutionRequest * @return A Java Future containing the result of the GetMaintenanceWindowExecution operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.GetMaintenanceWindowExecution * @see AWS API Documentation */ java.util.concurrent.Future getMaintenanceWindowExecutionAsync( GetMaintenanceWindowExecutionRequest getMaintenanceWindowExecutionRequest); /** *

* Retrieves details about a specific a maintenance window execution. *

* * @param getMaintenanceWindowExecutionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetMaintenanceWindowExecution operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetMaintenanceWindowExecution * @see AWS API Documentation */ java.util.concurrent.Future getMaintenanceWindowExecutionAsync( GetMaintenanceWindowExecutionRequest getMaintenanceWindowExecutionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves the details about a specific task run as part of a maintenance window execution. *

* * @param getMaintenanceWindowExecutionTaskRequest * @return A Java Future containing the result of the GetMaintenanceWindowExecutionTask operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.GetMaintenanceWindowExecutionTask * @see AWS API Documentation */ java.util.concurrent.Future getMaintenanceWindowExecutionTaskAsync( GetMaintenanceWindowExecutionTaskRequest getMaintenanceWindowExecutionTaskRequest); /** *

* Retrieves the details about a specific task run as part of a maintenance window execution. *

* * @param getMaintenanceWindowExecutionTaskRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetMaintenanceWindowExecutionTask operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetMaintenanceWindowExecutionTask * @see AWS API Documentation */ java.util.concurrent.Future getMaintenanceWindowExecutionTaskAsync( GetMaintenanceWindowExecutionTaskRequest getMaintenanceWindowExecutionTaskRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves information about a specific task running on a specific target. *

* * @param getMaintenanceWindowExecutionTaskInvocationRequest * @return A Java Future containing the result of the GetMaintenanceWindowExecutionTaskInvocation operation returned * by the service. * @sample AWSSimpleSystemsManagementAsync.GetMaintenanceWindowExecutionTaskInvocation * @see AWS API Documentation */ java.util.concurrent.Future getMaintenanceWindowExecutionTaskInvocationAsync( GetMaintenanceWindowExecutionTaskInvocationRequest getMaintenanceWindowExecutionTaskInvocationRequest); /** *

* Retrieves information about a specific task running on a specific target. *

* * @param getMaintenanceWindowExecutionTaskInvocationRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetMaintenanceWindowExecutionTaskInvocation operation returned * by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetMaintenanceWindowExecutionTaskInvocation * @see AWS API Documentation */ java.util.concurrent.Future getMaintenanceWindowExecutionTaskInvocationAsync( GetMaintenanceWindowExecutionTaskInvocationRequest getMaintenanceWindowExecutionTaskInvocationRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves the details of a maintenance window task. *

* *

* For maintenance window tasks without a specified target, you can't supply values for --max-errors * and --max-concurrency. Instead, the system inserts a placeholder value of 1, which may * be reported in the response to this command. These values don't affect the running of your task and can be * ignored. *

*
*

* To retrieve a list of tasks in a maintenance window, instead use the DescribeMaintenanceWindowTasks * command. *

* * @param getMaintenanceWindowTaskRequest * @return A Java Future containing the result of the GetMaintenanceWindowTask operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetMaintenanceWindowTask * @see AWS * API Documentation */ java.util.concurrent.Future getMaintenanceWindowTaskAsync(GetMaintenanceWindowTaskRequest getMaintenanceWindowTaskRequest); /** *

* Retrieves the details of a maintenance window task. *

* *

* For maintenance window tasks without a specified target, you can't supply values for --max-errors * and --max-concurrency. Instead, the system inserts a placeholder value of 1, which may * be reported in the response to this command. These values don't affect the running of your task and can be * ignored. *

*
*

* To retrieve a list of tasks in a maintenance window, instead use the DescribeMaintenanceWindowTasks * command. *

* * @param getMaintenanceWindowTaskRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetMaintenanceWindowTask operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetMaintenanceWindowTask * @see AWS * API Documentation */ java.util.concurrent.Future getMaintenanceWindowTaskAsync(GetMaintenanceWindowTaskRequest getMaintenanceWindowTaskRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Get information about an OpsItem by using the ID. You must have permission in Identity and Access Management * (IAM) to view information about an OpsItem. For more information, see Set up OpsCenter in * the Amazon Web Services Systems Manager User Guide. *

*

* Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, * and remediate operational issues impacting the performance and health of their Amazon Web Services resources. For * more information, see Amazon Web Services Systems * Manager OpsCenter in the Amazon Web Services Systems Manager User Guide. *

* * @param getOpsItemRequest * @return A Java Future containing the result of the GetOpsItem operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetOpsItem * @see AWS API * Documentation */ java.util.concurrent.Future getOpsItemAsync(GetOpsItemRequest getOpsItemRequest); /** *

* Get information about an OpsItem by using the ID. You must have permission in Identity and Access Management * (IAM) to view information about an OpsItem. For more information, see Set up OpsCenter in * the Amazon Web Services Systems Manager User Guide. *

*

* Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, * and remediate operational issues impacting the performance and health of their Amazon Web Services resources. For * more information, see Amazon Web Services Systems * Manager OpsCenter in the Amazon Web Services Systems Manager User Guide. *

* * @param getOpsItemRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetOpsItem operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetOpsItem * @see AWS API * Documentation */ java.util.concurrent.Future getOpsItemAsync(GetOpsItemRequest getOpsItemRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* View operational metadata related to an application in Application Manager. *

* * @param getOpsMetadataRequest * @return A Java Future containing the result of the GetOpsMetadata operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetOpsMetadata * @see AWS API * Documentation */ java.util.concurrent.Future getOpsMetadataAsync(GetOpsMetadataRequest getOpsMetadataRequest); /** *

* View operational metadata related to an application in Application Manager. *

* * @param getOpsMetadataRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetOpsMetadata operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetOpsMetadata * @see AWS API * Documentation */ java.util.concurrent.Future getOpsMetadataAsync(GetOpsMetadataRequest getOpsMetadataRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* View a summary of operations metadata (OpsData) based on specified filters and aggregators. OpsData can include * information about Amazon Web Services Systems Manager OpsCenter operational workitems (OpsItems) as well as * information about any Amazon Web Services resource or service configured to report OpsData to Amazon Web Services * Systems Manager Explorer. *

* * @param getOpsSummaryRequest * @return A Java Future containing the result of the GetOpsSummary operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetOpsSummary * @see AWS API * Documentation */ java.util.concurrent.Future getOpsSummaryAsync(GetOpsSummaryRequest getOpsSummaryRequest); /** *

* View a summary of operations metadata (OpsData) based on specified filters and aggregators. OpsData can include * information about Amazon Web Services Systems Manager OpsCenter operational workitems (OpsItems) as well as * information about any Amazon Web Services resource or service configured to report OpsData to Amazon Web Services * Systems Manager Explorer. *

* * @param getOpsSummaryRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetOpsSummary operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetOpsSummary * @see AWS API * Documentation */ java.util.concurrent.Future getOpsSummaryAsync(GetOpsSummaryRequest getOpsSummaryRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Get information about a single parameter by specifying the parameter name. *

* *

* To get information about more than one parameter at a time, use the GetParameters operation. *

*
* * @param getParameterRequest * @return A Java Future containing the result of the GetParameter operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetParameter * @see AWS API * Documentation */ java.util.concurrent.Future getParameterAsync(GetParameterRequest getParameterRequest); /** *

* Get information about a single parameter by specifying the parameter name. *

* *

* To get information about more than one parameter at a time, use the GetParameters operation. *

*
* * @param getParameterRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetParameter operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetParameter * @see AWS API * Documentation */ java.util.concurrent.Future getParameterAsync(GetParameterRequest getParameterRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves the history of all changes to a parameter. *

* *

* If you change the KMS key alias for the KMS key used to encrypt a parameter, then you must also update the key * alias the parameter uses to reference KMS. Otherwise, GetParameterHistory retrieves whatever the * original key alias was referencing. *

*
* * @param getParameterHistoryRequest * @return A Java Future containing the result of the GetParameterHistory operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetParameterHistory * @see AWS API * Documentation */ java.util.concurrent.Future getParameterHistoryAsync(GetParameterHistoryRequest getParameterHistoryRequest); /** *

* Retrieves the history of all changes to a parameter. *

* *

* If you change the KMS key alias for the KMS key used to encrypt a parameter, then you must also update the key * alias the parameter uses to reference KMS. Otherwise, GetParameterHistory retrieves whatever the * original key alias was referencing. *

*
* * @param getParameterHistoryRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetParameterHistory operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetParameterHistory * @see AWS API * Documentation */ java.util.concurrent.Future getParameterHistoryAsync(GetParameterHistoryRequest getParameterHistoryRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Get information about one or more parameters by specifying multiple parameter names. *

* *

* To get information about a single parameter, you can use the GetParameter operation instead. *

*
* * @param getParametersRequest * @return A Java Future containing the result of the GetParameters operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetParameters * @see AWS API * Documentation */ java.util.concurrent.Future getParametersAsync(GetParametersRequest getParametersRequest); /** *

* Get information about one or more parameters by specifying multiple parameter names. *

* *

* To get information about a single parameter, you can use the GetParameter operation instead. *

*
* * @param getParametersRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetParameters operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetParameters * @see AWS API * Documentation */ java.util.concurrent.Future getParametersAsync(GetParametersRequest getParametersRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieve information about one or more parameters in a specific hierarchy. *

*

* Request results are returned on a best-effort basis. If you specify MaxResults in the request, the * response includes information up to the limit specified. The number of items returned, however, can be between * zero and the value of MaxResults. If the service reaches an internal limit while processing the * results, it stops the operation and returns the matching values up to that point and a NextToken. * You can specify the NextToken in a subsequent call to get the next set of results. *

* * @param getParametersByPathRequest * @return A Java Future containing the result of the GetParametersByPath operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetParametersByPath * @see AWS API * Documentation */ java.util.concurrent.Future getParametersByPathAsync(GetParametersByPathRequest getParametersByPathRequest); /** *

* Retrieve information about one or more parameters in a specific hierarchy. *

*

* Request results are returned on a best-effort basis. If you specify MaxResults in the request, the * response includes information up to the limit specified. The number of items returned, however, can be between * zero and the value of MaxResults. If the service reaches an internal limit while processing the * results, it stops the operation and returns the matching values up to that point and a NextToken. * You can specify the NextToken in a subsequent call to get the next set of results. *

* * @param getParametersByPathRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetParametersByPath operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetParametersByPath * @see AWS API * Documentation */ java.util.concurrent.Future getParametersByPathAsync(GetParametersByPathRequest getParametersByPathRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves information about a patch baseline. *

* * @param getPatchBaselineRequest * @return A Java Future containing the result of the GetPatchBaseline operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetPatchBaseline * @see AWS API * Documentation */ java.util.concurrent.Future getPatchBaselineAsync(GetPatchBaselineRequest getPatchBaselineRequest); /** *

* Retrieves information about a patch baseline. *

* * @param getPatchBaselineRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetPatchBaseline operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetPatchBaseline * @see AWS API * Documentation */ java.util.concurrent.Future getPatchBaselineAsync(GetPatchBaselineRequest getPatchBaselineRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves the patch baseline that should be used for the specified patch group. *

* * @param getPatchBaselineForPatchGroupRequest * @return A Java Future containing the result of the GetPatchBaselineForPatchGroup operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.GetPatchBaselineForPatchGroup * @see AWS API Documentation */ java.util.concurrent.Future getPatchBaselineForPatchGroupAsync( GetPatchBaselineForPatchGroupRequest getPatchBaselineForPatchGroupRequest); /** *

* Retrieves the patch baseline that should be used for the specified patch group. *

* * @param getPatchBaselineForPatchGroupRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetPatchBaselineForPatchGroup operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetPatchBaselineForPatchGroup * @see AWS API Documentation */ java.util.concurrent.Future getPatchBaselineForPatchGroupAsync( GetPatchBaselineForPatchGroupRequest getPatchBaselineForPatchGroupRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Returns an array of the Policy object. *

* * @param getResourcePoliciesRequest * @return A Java Future containing the result of the GetResourcePolicies operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetResourcePolicies * @see AWS API * Documentation */ java.util.concurrent.Future getResourcePoliciesAsync(GetResourcePoliciesRequest getResourcePoliciesRequest); /** *

* Returns an array of the Policy object. *

* * @param getResourcePoliciesRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetResourcePolicies operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetResourcePolicies * @see AWS API * Documentation */ java.util.concurrent.Future getResourcePoliciesAsync(GetResourcePoliciesRequest getResourcePoliciesRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* ServiceSetting is an account-level setting for an Amazon Web Services service. This setting defines * how a user interacts with or uses a service or a feature of a service. For example, if an Amazon Web Services * service charges money to the account based on feature or service usage, then the Amazon Web Services service team * might create a default setting of false. This means the user can't use this feature unless they * change the setting to true and intentionally opt in for a paid feature. *

*

* Services map a SettingId object to a setting value. Amazon Web Services services teams define the * default value for a SettingId. You can't create a new SettingId, but you can overwrite * the default value if you have the ssm:UpdateServiceSetting permission for the setting. Use the * UpdateServiceSetting API operation to change the default setting. Or use the ResetServiceSetting to * change the value back to the original value defined by the Amazon Web Services service team. *

*

* Query the current service setting for the Amazon Web Services account. *

* * @param getServiceSettingRequest * The request body of the GetServiceSetting API operation. * @return A Java Future containing the result of the GetServiceSetting operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.GetServiceSetting * @see AWS API * Documentation */ java.util.concurrent.Future getServiceSettingAsync(GetServiceSettingRequest getServiceSettingRequest); /** *

* ServiceSetting is an account-level setting for an Amazon Web Services service. This setting defines * how a user interacts with or uses a service or a feature of a service. For example, if an Amazon Web Services * service charges money to the account based on feature or service usage, then the Amazon Web Services service team * might create a default setting of false. This means the user can't use this feature unless they * change the setting to true and intentionally opt in for a paid feature. *

*

* Services map a SettingId object to a setting value. Amazon Web Services services teams define the * default value for a SettingId. You can't create a new SettingId, but you can overwrite * the default value if you have the ssm:UpdateServiceSetting permission for the setting. Use the * UpdateServiceSetting API operation to change the default setting. Or use the ResetServiceSetting to * change the value back to the original value defined by the Amazon Web Services service team. *

*

* Query the current service setting for the Amazon Web Services account. *

* * @param getServiceSettingRequest * The request body of the GetServiceSetting API operation. * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the GetServiceSetting operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.GetServiceSetting * @see AWS API * Documentation */ java.util.concurrent.Future getServiceSettingAsync(GetServiceSettingRequest getServiceSettingRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* A parameter label is a user-defined alias to help you manage different versions of a parameter. When you modify a * parameter, Amazon Web Services Systems Manager automatically saves a new version and increments the version * number by one. A label can help you remember the purpose of a parameter when there are multiple versions. *

*

* Parameter labels have the following requirements and restrictions. *

*
    *
  • *

    * A version of a parameter can have a maximum of 10 labels. *

    *
  • *
  • *

    * You can't attach the same label to different versions of the same parameter. For example, if version 1 has the * label Production, then you can't attach Production to version 2. *

    *
  • *
  • *

    * You can move a label from one version of a parameter to another. *

    *
  • *
  • *

    * You can't create a label when you create a new parameter. You must attach a label to a specific version of a * parameter. *

    *
  • *
  • *

    * If you no longer want to use a parameter label, then you can either delete it or move it to a different version * of a parameter. *

    *
  • *
  • *

    * A label can have a maximum of 100 characters. *

    *
  • *
  • *

    * Labels can contain letters (case sensitive), numbers, periods (.), hyphens (-), or underscores (_). *

    *
  • *
  • *

    * Labels can't begin with a number, "aws" or "ssm" (not case sensitive). If a label fails * to meet these requirements, then the label isn't associated with a parameter and the system displays it in the * list of InvalidLabels. *

    *
  • *
* * @param labelParameterVersionRequest * @return A Java Future containing the result of the LabelParameterVersion operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.LabelParameterVersion * @see AWS API * Documentation */ java.util.concurrent.Future labelParameterVersionAsync(LabelParameterVersionRequest labelParameterVersionRequest); /** *

* A parameter label is a user-defined alias to help you manage different versions of a parameter. When you modify a * parameter, Amazon Web Services Systems Manager automatically saves a new version and increments the version * number by one. A label can help you remember the purpose of a parameter when there are multiple versions. *

*

* Parameter labels have the following requirements and restrictions. *

*
    *
  • *

    * A version of a parameter can have a maximum of 10 labels. *

    *
  • *
  • *

    * You can't attach the same label to different versions of the same parameter. For example, if version 1 has the * label Production, then you can't attach Production to version 2. *

    *
  • *
  • *

    * You can move a label from one version of a parameter to another. *

    *
  • *
  • *

    * You can't create a label when you create a new parameter. You must attach a label to a specific version of a * parameter. *

    *
  • *
  • *

    * If you no longer want to use a parameter label, then you can either delete it or move it to a different version * of a parameter. *

    *
  • *
  • *

    * A label can have a maximum of 100 characters. *

    *
  • *
  • *

    * Labels can contain letters (case sensitive), numbers, periods (.), hyphens (-), or underscores (_). *

    *
  • *
  • *

    * Labels can't begin with a number, "aws" or "ssm" (not case sensitive). If a label fails * to meet these requirements, then the label isn't associated with a parameter and the system displays it in the * list of InvalidLabels. *

    *
  • *
* * @param labelParameterVersionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the LabelParameterVersion operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.LabelParameterVersion * @see AWS API * Documentation */ java.util.concurrent.Future labelParameterVersionAsync(LabelParameterVersionRequest labelParameterVersionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Retrieves all versions of an association for a specific association ID. *

* * @param listAssociationVersionsRequest * @return A Java Future containing the result of the ListAssociationVersions operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListAssociationVersions * @see AWS * API Documentation */ java.util.concurrent.Future listAssociationVersionsAsync(ListAssociationVersionsRequest listAssociationVersionsRequest); /** *

* Retrieves all versions of an association for a specific association ID. *

* * @param listAssociationVersionsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListAssociationVersions operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListAssociationVersions * @see AWS * API Documentation */ java.util.concurrent.Future listAssociationVersionsAsync(ListAssociationVersionsRequest listAssociationVersionsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Returns all State Manager associations in the current Amazon Web Services account and Amazon Web Services Region. * You can limit the results to a specific State Manager association document or managed node by specifying a * filter. State Manager is a capability of Amazon Web Services Systems Manager. *

* * @param listAssociationsRequest * @return A Java Future containing the result of the ListAssociations operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListAssociations * @see AWS API * Documentation */ java.util.concurrent.Future listAssociationsAsync(ListAssociationsRequest listAssociationsRequest); /** *

* Returns all State Manager associations in the current Amazon Web Services account and Amazon Web Services Region. * You can limit the results to a specific State Manager association document or managed node by specifying a * filter. State Manager is a capability of Amazon Web Services Systems Manager. *

* * @param listAssociationsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListAssociations operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListAssociations * @see AWS API * Documentation */ java.util.concurrent.Future listAssociationsAsync(ListAssociationsRequest listAssociationsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* An invocation is copy of a command sent to a specific managed node. A command can apply to one or more managed * nodes. A command invocation applies to one managed node. For example, if a user runs SendCommand * against three managed nodes, then a command invocation is created for each requested managed node ID. * ListCommandInvocations provide status about command execution. *

* * @param listCommandInvocationsRequest * @return A Java Future containing the result of the ListCommandInvocations operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListCommandInvocations * @see AWS API * Documentation */ java.util.concurrent.Future listCommandInvocationsAsync(ListCommandInvocationsRequest listCommandInvocationsRequest); /** *

* An invocation is copy of a command sent to a specific managed node. A command can apply to one or more managed * nodes. A command invocation applies to one managed node. For example, if a user runs SendCommand * against three managed nodes, then a command invocation is created for each requested managed node ID. * ListCommandInvocations provide status about command execution. *

* * @param listCommandInvocationsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListCommandInvocations operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListCommandInvocations * @see AWS API * Documentation */ java.util.concurrent.Future listCommandInvocationsAsync(ListCommandInvocationsRequest listCommandInvocationsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Lists the commands requested by users of the Amazon Web Services account. *

* * @param listCommandsRequest * @return A Java Future containing the result of the ListCommands operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListCommands * @see AWS API * Documentation */ java.util.concurrent.Future listCommandsAsync(ListCommandsRequest listCommandsRequest); /** *

* Lists the commands requested by users of the Amazon Web Services account. *

* * @param listCommandsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListCommands operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListCommands * @see AWS API * Documentation */ java.util.concurrent.Future listCommandsAsync(ListCommandsRequest listCommandsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* For a specified resource ID, this API operation returns a list of compliance statuses for different resource * types. Currently, you can only specify one resource ID per call. List results depend on the criteria specified in * the filter. *

* * @param listComplianceItemsRequest * @return A Java Future containing the result of the ListComplianceItems operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListComplianceItems * @see AWS API * Documentation */ java.util.concurrent.Future listComplianceItemsAsync(ListComplianceItemsRequest listComplianceItemsRequest); /** *

* For a specified resource ID, this API operation returns a list of compliance statuses for different resource * types. Currently, you can only specify one resource ID per call. List results depend on the criteria specified in * the filter. *

* * @param listComplianceItemsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListComplianceItems operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListComplianceItems * @see AWS API * Documentation */ java.util.concurrent.Future listComplianceItemsAsync(ListComplianceItemsRequest listComplianceItemsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Returns a summary count of compliant and non-compliant resources for a compliance type. For example, this call * can return State Manager associations, patches, or custom compliance types according to the filter criteria that * you specify. *

* * @param listComplianceSummariesRequest * @return A Java Future containing the result of the ListComplianceSummaries operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListComplianceSummaries * @see AWS * API Documentation */ java.util.concurrent.Future listComplianceSummariesAsync(ListComplianceSummariesRequest listComplianceSummariesRequest); /** *

* Returns a summary count of compliant and non-compliant resources for a compliance type. For example, this call * can return State Manager associations, patches, or custom compliance types according to the filter criteria that * you specify. *

* * @param listComplianceSummariesRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListComplianceSummaries operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListComplianceSummaries * @see AWS * API Documentation */ java.util.concurrent.Future listComplianceSummariesAsync(ListComplianceSummariesRequest listComplianceSummariesRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Information about approval reviews for a version of a change template in Change Manager. *

* * @param listDocumentMetadataHistoryRequest * @return A Java Future containing the result of the ListDocumentMetadataHistory operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListDocumentMetadataHistory * @see AWS API Documentation */ java.util.concurrent.Future listDocumentMetadataHistoryAsync( ListDocumentMetadataHistoryRequest listDocumentMetadataHistoryRequest); /** *

* Information about approval reviews for a version of a change template in Change Manager. *

* * @param listDocumentMetadataHistoryRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListDocumentMetadataHistory operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListDocumentMetadataHistory * @see AWS API Documentation */ java.util.concurrent.Future listDocumentMetadataHistoryAsync( ListDocumentMetadataHistoryRequest listDocumentMetadataHistoryRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* List all versions for a document. *

* * @param listDocumentVersionsRequest * @return A Java Future containing the result of the ListDocumentVersions operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListDocumentVersions * @see AWS API * Documentation */ java.util.concurrent.Future listDocumentVersionsAsync(ListDocumentVersionsRequest listDocumentVersionsRequest); /** *

* List all versions for a document. *

* * @param listDocumentVersionsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListDocumentVersions operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListDocumentVersions * @see AWS API * Documentation */ java.util.concurrent.Future listDocumentVersionsAsync(ListDocumentVersionsRequest listDocumentVersionsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Returns all Systems Manager (SSM) documents in the current Amazon Web Services account and Amazon Web Services * Region. You can limit the results of this request by using a filter. *

* * @param listDocumentsRequest * @return A Java Future containing the result of the ListDocuments operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListDocuments * @see AWS API * Documentation */ java.util.concurrent.Future listDocumentsAsync(ListDocumentsRequest listDocumentsRequest); /** *

* Returns all Systems Manager (SSM) documents in the current Amazon Web Services account and Amazon Web Services * Region. You can limit the results of this request by using a filter. *

* * @param listDocumentsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListDocuments operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListDocuments * @see AWS API * Documentation */ java.util.concurrent.Future listDocumentsAsync(ListDocumentsRequest listDocumentsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** * Simplified method form for invoking the ListDocuments operation. * * @see #listDocumentsAsync(ListDocumentsRequest) */ java.util.concurrent.Future listDocumentsAsync(); /** * Simplified method form for invoking the ListDocuments operation with an AsyncHandler. * * @see #listDocumentsAsync(ListDocumentsRequest, com.amazonaws.handlers.AsyncHandler) */ java.util.concurrent.Future listDocumentsAsync( com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* A list of inventory items returned by the request. *

* * @param listInventoryEntriesRequest * @return A Java Future containing the result of the ListInventoryEntries operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListInventoryEntries * @see AWS API * Documentation */ java.util.concurrent.Future listInventoryEntriesAsync(ListInventoryEntriesRequest listInventoryEntriesRequest); /** *

* A list of inventory items returned by the request. *

* * @param listInventoryEntriesRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListInventoryEntries operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListInventoryEntries * @see AWS API * Documentation */ java.util.concurrent.Future listInventoryEntriesAsync(ListInventoryEntriesRequest listInventoryEntriesRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Returns a list of all OpsItem events in the current Amazon Web Services Region and Amazon Web Services account. * You can limit the results to events associated with specific OpsItems by specifying a filter. *

* * @param listOpsItemEventsRequest * @return A Java Future containing the result of the ListOpsItemEvents operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListOpsItemEvents * @see AWS API * Documentation */ java.util.concurrent.Future listOpsItemEventsAsync(ListOpsItemEventsRequest listOpsItemEventsRequest); /** *

* Returns a list of all OpsItem events in the current Amazon Web Services Region and Amazon Web Services account. * You can limit the results to events associated with specific OpsItems by specifying a filter. *

* * @param listOpsItemEventsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListOpsItemEvents operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListOpsItemEvents * @see AWS API * Documentation */ java.util.concurrent.Future listOpsItemEventsAsync(ListOpsItemEventsRequest listOpsItemEventsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Lists all related-item resources associated with a Systems Manager OpsCenter OpsItem. OpsCenter is a capability * of Amazon Web Services Systems Manager. *

* * @param listOpsItemRelatedItemsRequest * @return A Java Future containing the result of the ListOpsItemRelatedItems operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListOpsItemRelatedItems * @see AWS * API Documentation */ java.util.concurrent.Future listOpsItemRelatedItemsAsync(ListOpsItemRelatedItemsRequest listOpsItemRelatedItemsRequest); /** *

* Lists all related-item resources associated with a Systems Manager OpsCenter OpsItem. OpsCenter is a capability * of Amazon Web Services Systems Manager. *

* * @param listOpsItemRelatedItemsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListOpsItemRelatedItems operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListOpsItemRelatedItems * @see AWS * API Documentation */ java.util.concurrent.Future listOpsItemRelatedItemsAsync(ListOpsItemRelatedItemsRequest listOpsItemRelatedItemsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Amazon Web Services Systems Manager calls this API operation when displaying all Application Manager OpsMetadata * objects or blobs. *

* * @param listOpsMetadataRequest * @return A Java Future containing the result of the ListOpsMetadata operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListOpsMetadata * @see AWS API * Documentation */ java.util.concurrent.Future listOpsMetadataAsync(ListOpsMetadataRequest listOpsMetadataRequest); /** *

* Amazon Web Services Systems Manager calls this API operation when displaying all Application Manager OpsMetadata * objects or blobs. *

* * @param listOpsMetadataRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListOpsMetadata operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListOpsMetadata * @see AWS API * Documentation */ java.util.concurrent.Future listOpsMetadataAsync(ListOpsMetadataRequest listOpsMetadataRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Returns a resource-level summary count. The summary includes information about compliant and non-compliant * statuses and detailed compliance-item severity counts, according to the filter criteria you specify. *

* * @param listResourceComplianceSummariesRequest * @return A Java Future containing the result of the ListResourceComplianceSummaries operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.ListResourceComplianceSummaries * @see AWS API Documentation */ java.util.concurrent.Future listResourceComplianceSummariesAsync( ListResourceComplianceSummariesRequest listResourceComplianceSummariesRequest); /** *

* Returns a resource-level summary count. The summary includes information about compliant and non-compliant * statuses and detailed compliance-item severity counts, according to the filter criteria you specify. *

* * @param listResourceComplianceSummariesRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListResourceComplianceSummaries operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListResourceComplianceSummaries * @see AWS API Documentation */ java.util.concurrent.Future listResourceComplianceSummariesAsync( ListResourceComplianceSummariesRequest listResourceComplianceSummariesRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Lists your resource data sync configurations. Includes information about the last time a sync attempted to start, * the last sync status, and the last time a sync successfully completed. *

*

* The number of sync configurations might be too large to return using a single call to * ListResourceDataSync. You can limit the number of sync configurations returned by using the * MaxResults parameter. To determine whether there are more sync configurations to list, check the * value of NextToken in the output. If there are more sync configurations to list, you can request * them by specifying the NextToken returned in the call to the parameter of a subsequent call. *

* * @param listResourceDataSyncRequest * @return A Java Future containing the result of the ListResourceDataSync operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListResourceDataSync * @see AWS API * Documentation */ java.util.concurrent.Future listResourceDataSyncAsync(ListResourceDataSyncRequest listResourceDataSyncRequest); /** *

* Lists your resource data sync configurations. Includes information about the last time a sync attempted to start, * the last sync status, and the last time a sync successfully completed. *

*

* The number of sync configurations might be too large to return using a single call to * ListResourceDataSync. You can limit the number of sync configurations returned by using the * MaxResults parameter. To determine whether there are more sync configurations to list, check the * value of NextToken in the output. If there are more sync configurations to list, you can request * them by specifying the NextToken returned in the call to the parameter of a subsequent call. *

* * @param listResourceDataSyncRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListResourceDataSync operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListResourceDataSync * @see AWS API * Documentation */ java.util.concurrent.Future listResourceDataSyncAsync(ListResourceDataSyncRequest listResourceDataSyncRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Returns a list of the tags assigned to the specified resource. *

*

* For information about the ID format for each supported resource type, see AddTagsToResource. *

* * @param listTagsForResourceRequest * @return A Java Future containing the result of the ListTagsForResource operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ListTagsForResource * @see AWS API * Documentation */ java.util.concurrent.Future listTagsForResourceAsync(ListTagsForResourceRequest listTagsForResourceRequest); /** *

* Returns a list of the tags assigned to the specified resource. *

*

* For information about the ID format for each supported resource type, see AddTagsToResource. *

* * @param listTagsForResourceRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ListTagsForResource operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ListTagsForResource * @see AWS API * Documentation */ java.util.concurrent.Future listTagsForResourceAsync(ListTagsForResourceRequest listTagsForResourceRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Shares a Amazon Web Services Systems Manager document (SSM document)publicly or privately. If you share a * document privately, you must specify the Amazon Web Services user IDs for those people who can use the document. * If you share a document publicly, you must specify All as the account ID. *

* * @param modifyDocumentPermissionRequest * @return A Java Future containing the result of the ModifyDocumentPermission operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ModifyDocumentPermission * @see AWS * API Documentation */ java.util.concurrent.Future modifyDocumentPermissionAsync(ModifyDocumentPermissionRequest modifyDocumentPermissionRequest); /** *

* Shares a Amazon Web Services Systems Manager document (SSM document)publicly or privately. If you share a * document privately, you must specify the Amazon Web Services user IDs for those people who can use the document. * If you share a document publicly, you must specify All as the account ID. *

* * @param modifyDocumentPermissionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ModifyDocumentPermission operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ModifyDocumentPermission * @see AWS * API Documentation */ java.util.concurrent.Future modifyDocumentPermissionAsync(ModifyDocumentPermissionRequest modifyDocumentPermissionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Registers a compliance type and other compliance details on a designated resource. This operation lets you * register custom compliance details with a resource. This call overwrites existing compliance information on the * resource, so you must provide a full list of compliance items each time that you send the request. *

*

* ComplianceType can be one of the following: *

*
    *
  • *

    * ExecutionId: The execution ID when the patch, association, or custom compliance item was applied. *

    *
  • *
  • *

    * ExecutionType: Specify patch, association, or Custom:string. *

    *
  • *
  • *

    * ExecutionTime. The time the patch, association, or custom compliance item was applied to the managed node. *

    *
  • *
  • *

    * Id: The patch, association, or custom compliance ID. *

    *
  • *
  • *

    * Title: A title. *

    *
  • *
  • *

    * Status: The status of the compliance item. For example, approved for patches, or Failed * for associations. *

    *
  • *
  • *

    * Severity: A patch severity. For example, Critical. *

    *
  • *
  • *

    * DocumentName: An SSM document name. For example, AWS-RunPatchBaseline. *

    *
  • *
  • *

    * DocumentVersion: An SSM document version number. For example, 4. *

    *
  • *
  • *

    * Classification: A patch classification. For example, security updates. *

    *
  • *
  • *

    * PatchBaselineId: A patch baseline ID. *

    *
  • *
  • *

    * PatchSeverity: A patch severity. For example, Critical. *

    *
  • *
  • *

    * PatchState: A patch state. For example, InstancesWithFailedPatches. *

    *
  • *
  • *

    * PatchGroup: The name of a patch group. *

    *
  • *
  • *

    * InstalledTime: The time the association, patch, or custom compliance item was applied to the resource. Specify * the time by using the following format: yyyy-MM-dd'T'HH:mm:ss'Z' *

    *
  • *
* * @param putComplianceItemsRequest * @return A Java Future containing the result of the PutComplianceItems operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.PutComplianceItems * @see AWS API * Documentation */ java.util.concurrent.Future putComplianceItemsAsync(PutComplianceItemsRequest putComplianceItemsRequest); /** *

* Registers a compliance type and other compliance details on a designated resource. This operation lets you * register custom compliance details with a resource. This call overwrites existing compliance information on the * resource, so you must provide a full list of compliance items each time that you send the request. *

*

* ComplianceType can be one of the following: *

*
    *
  • *

    * ExecutionId: The execution ID when the patch, association, or custom compliance item was applied. *

    *
  • *
  • *

    * ExecutionType: Specify patch, association, or Custom:string. *

    *
  • *
  • *

    * ExecutionTime. The time the patch, association, or custom compliance item was applied to the managed node. *

    *
  • *
  • *

    * Id: The patch, association, or custom compliance ID. *

    *
  • *
  • *

    * Title: A title. *

    *
  • *
  • *

    * Status: The status of the compliance item. For example, approved for patches, or Failed * for associations. *

    *
  • *
  • *

    * Severity: A patch severity. For example, Critical. *

    *
  • *
  • *

    * DocumentName: An SSM document name. For example, AWS-RunPatchBaseline. *

    *
  • *
  • *

    * DocumentVersion: An SSM document version number. For example, 4. *

    *
  • *
  • *

    * Classification: A patch classification. For example, security updates. *

    *
  • *
  • *

    * PatchBaselineId: A patch baseline ID. *

    *
  • *
  • *

    * PatchSeverity: A patch severity. For example, Critical. *

    *
  • *
  • *

    * PatchState: A patch state. For example, InstancesWithFailedPatches. *

    *
  • *
  • *

    * PatchGroup: The name of a patch group. *

    *
  • *
  • *

    * InstalledTime: The time the association, patch, or custom compliance item was applied to the resource. Specify * the time by using the following format: yyyy-MM-dd'T'HH:mm:ss'Z' *

    *
  • *
* * @param putComplianceItemsRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the PutComplianceItems operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.PutComplianceItems * @see AWS API * Documentation */ java.util.concurrent.Future putComplianceItemsAsync(PutComplianceItemsRequest putComplianceItemsRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Bulk update custom inventory items on one or more managed nodes. The request adds an inventory item, if it * doesn't already exist, or updates an inventory item, if it does exist. *

* * @param putInventoryRequest * @return A Java Future containing the result of the PutInventory operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.PutInventory * @see AWS API * Documentation */ java.util.concurrent.Future putInventoryAsync(PutInventoryRequest putInventoryRequest); /** *

* Bulk update custom inventory items on one or more managed nodes. The request adds an inventory item, if it * doesn't already exist, or updates an inventory item, if it does exist. *

* * @param putInventoryRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the PutInventory operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.PutInventory * @see AWS API * Documentation */ java.util.concurrent.Future putInventoryAsync(PutInventoryRequest putInventoryRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Add a parameter to the system. *

* * @param putParameterRequest * @return A Java Future containing the result of the PutParameter operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.PutParameter * @see AWS API * Documentation */ java.util.concurrent.Future putParameterAsync(PutParameterRequest putParameterRequest); /** *

* Add a parameter to the system. *

* * @param putParameterRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the PutParameter operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.PutParameter * @see AWS API * Documentation */ java.util.concurrent.Future putParameterAsync(PutParameterRequest putParameterRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Creates or updates a Systems Manager resource policy. A resource policy helps you to define the IAM entity (for * example, an Amazon Web Services account) that can manage your Systems Manager resources. The following resources * support Systems Manager resource policies. *

*
    *
  • *

    * OpsItemGroup - The resource policy for OpsItemGroup enables Amazon Web Services * accounts to view and interact with OpsCenter operational work items (OpsItems). *

    *
  • *
  • *

    * Parameter - The resource policy is used to share a parameter with other accounts using Resource * Access Manager (RAM). *

    *

    * To share a parameter, it must be in the advanced parameter tier. For information about parameter tiers, see * Managing parameter tiers. For information about changing an existing standard parameter to an advanced * parameter, see Changing a standard parameter to an advanced parameter. *

    *

    * To share a SecureString parameter, it must be encrypted with a customer managed key, and you must * share the key separately through Key Management Service. Amazon Web Services managed keys cannot be shared. * Parameters encrypted with the default Amazon Web Services managed key can be updated to use a customer managed * key instead. For KMS key definitions, see KMS concepts in the Key * Management Service Developer Guide. *

    * *

    * While you can share a parameter using the Systems Manager PutResourcePolicy operation, we recommend * using Resource Access Manager (RAM) instead. This is because using PutResourcePolicy requires the * extra step of promoting the parameter to a standard RAM Resource Share using the RAM PromoteResourceShareCreatedFromPolicy API operation. Otherwise, the parameter won't be returned by the * Systems Manager DescribeParameters API operation using the --shared option. *

    *

    * For more information, see Sharing a parameter in the Amazon Web Services Systems Manager User Guide *

    *
  • *
* * @param putResourcePolicyRequest * @return A Java Future containing the result of the PutResourcePolicy operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.PutResourcePolicy * @see AWS API * Documentation */ java.util.concurrent.Future putResourcePolicyAsync(PutResourcePolicyRequest putResourcePolicyRequest); /** *

* Creates or updates a Systems Manager resource policy. A resource policy helps you to define the IAM entity (for * example, an Amazon Web Services account) that can manage your Systems Manager resources. The following resources * support Systems Manager resource policies. *

*
    *
  • *

    * OpsItemGroup - The resource policy for OpsItemGroup enables Amazon Web Services * accounts to view and interact with OpsCenter operational work items (OpsItems). *

    *
  • *
  • *

    * Parameter - The resource policy is used to share a parameter with other accounts using Resource * Access Manager (RAM). *

    *

    * To share a parameter, it must be in the advanced parameter tier. For information about parameter tiers, see * Managing parameter tiers. For information about changing an existing standard parameter to an advanced * parameter, see Changing a standard parameter to an advanced parameter. *

    *

    * To share a SecureString parameter, it must be encrypted with a customer managed key, and you must * share the key separately through Key Management Service. Amazon Web Services managed keys cannot be shared. * Parameters encrypted with the default Amazon Web Services managed key can be updated to use a customer managed * key instead. For KMS key definitions, see KMS concepts in the Key * Management Service Developer Guide. *

    * *

    * While you can share a parameter using the Systems Manager PutResourcePolicy operation, we recommend * using Resource Access Manager (RAM) instead. This is because using PutResourcePolicy requires the * extra step of promoting the parameter to a standard RAM Resource Share using the RAM PromoteResourceShareCreatedFromPolicy API operation. Otherwise, the parameter won't be returned by the * Systems Manager DescribeParameters API operation using the --shared option. *

    *

    * For more information, see Sharing a parameter in the Amazon Web Services Systems Manager User Guide *

    *
  • *
* * @param putResourcePolicyRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the PutResourcePolicy operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.PutResourcePolicy * @see AWS API * Documentation */ java.util.concurrent.Future putResourcePolicyAsync(PutResourcePolicyRequest putResourcePolicyRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Defines the default patch baseline for the relevant operating system. *

*

* To reset the Amazon Web Services-predefined patch baseline as the default, specify the full patch baseline Amazon * Resource Name (ARN) as the baseline ID value. For example, for CentOS, specify * arn:aws:ssm:us-east-2:733109147000:patchbaseline/pb-0574b43a65ea646ed instead of * pb-0574b43a65ea646ed. *

* * @param registerDefaultPatchBaselineRequest * @return A Java Future containing the result of the RegisterDefaultPatchBaseline operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.RegisterDefaultPatchBaseline * @see AWS API Documentation */ java.util.concurrent.Future registerDefaultPatchBaselineAsync( RegisterDefaultPatchBaselineRequest registerDefaultPatchBaselineRequest); /** *

* Defines the default patch baseline for the relevant operating system. *

*

* To reset the Amazon Web Services-predefined patch baseline as the default, specify the full patch baseline Amazon * Resource Name (ARN) as the baseline ID value. For example, for CentOS, specify * arn:aws:ssm:us-east-2:733109147000:patchbaseline/pb-0574b43a65ea646ed instead of * pb-0574b43a65ea646ed. *

* * @param registerDefaultPatchBaselineRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the RegisterDefaultPatchBaseline operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.RegisterDefaultPatchBaseline * @see AWS API Documentation */ java.util.concurrent.Future registerDefaultPatchBaselineAsync( RegisterDefaultPatchBaselineRequest registerDefaultPatchBaselineRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Registers a patch baseline for a patch group. *

* * @param registerPatchBaselineForPatchGroupRequest * @return A Java Future containing the result of the RegisterPatchBaselineForPatchGroup operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.RegisterPatchBaselineForPatchGroup * @see AWS API Documentation */ java.util.concurrent.Future registerPatchBaselineForPatchGroupAsync( RegisterPatchBaselineForPatchGroupRequest registerPatchBaselineForPatchGroupRequest); /** *

* Registers a patch baseline for a patch group. *

* * @param registerPatchBaselineForPatchGroupRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the RegisterPatchBaselineForPatchGroup operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.RegisterPatchBaselineForPatchGroup * @see AWS API Documentation */ java.util.concurrent.Future registerPatchBaselineForPatchGroupAsync( RegisterPatchBaselineForPatchGroupRequest registerPatchBaselineForPatchGroupRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Registers a target with a maintenance window. *

* * @param registerTargetWithMaintenanceWindowRequest * @return A Java Future containing the result of the RegisterTargetWithMaintenanceWindow operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.RegisterTargetWithMaintenanceWindow * @see AWS API Documentation */ java.util.concurrent.Future registerTargetWithMaintenanceWindowAsync( RegisterTargetWithMaintenanceWindowRequest registerTargetWithMaintenanceWindowRequest); /** *

* Registers a target with a maintenance window. *

* * @param registerTargetWithMaintenanceWindowRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the RegisterTargetWithMaintenanceWindow operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.RegisterTargetWithMaintenanceWindow * @see AWS API Documentation */ java.util.concurrent.Future registerTargetWithMaintenanceWindowAsync( RegisterTargetWithMaintenanceWindowRequest registerTargetWithMaintenanceWindowRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Adds a new task to a maintenance window. *

* * @param registerTaskWithMaintenanceWindowRequest * @return A Java Future containing the result of the RegisterTaskWithMaintenanceWindow operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.RegisterTaskWithMaintenanceWindow * @see AWS API Documentation */ java.util.concurrent.Future registerTaskWithMaintenanceWindowAsync( RegisterTaskWithMaintenanceWindowRequest registerTaskWithMaintenanceWindowRequest); /** *

* Adds a new task to a maintenance window. *

* * @param registerTaskWithMaintenanceWindowRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the RegisterTaskWithMaintenanceWindow operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.RegisterTaskWithMaintenanceWindow * @see AWS API Documentation */ java.util.concurrent.Future registerTaskWithMaintenanceWindowAsync( RegisterTaskWithMaintenanceWindowRequest registerTaskWithMaintenanceWindowRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Removes tag keys from the specified resource. *

* * @param removeTagsFromResourceRequest * @return A Java Future containing the result of the RemoveTagsFromResource operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.RemoveTagsFromResource * @see AWS API * Documentation */ java.util.concurrent.Future removeTagsFromResourceAsync(RemoveTagsFromResourceRequest removeTagsFromResourceRequest); /** *

* Removes tag keys from the specified resource. *

* * @param removeTagsFromResourceRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the RemoveTagsFromResource operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.RemoveTagsFromResource * @see AWS API * Documentation */ java.util.concurrent.Future removeTagsFromResourceAsync(RemoveTagsFromResourceRequest removeTagsFromResourceRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* ServiceSetting is an account-level setting for an Amazon Web Services service. This setting defines * how a user interacts with or uses a service or a feature of a service. For example, if an Amazon Web Services * service charges money to the account based on feature or service usage, then the Amazon Web Services service team * might create a default setting of "false". This means the user can't use this feature unless they change the * setting to "true" and intentionally opt in for a paid feature. *

*

* Services map a SettingId object to a setting value. Amazon Web Services services teams define the * default value for a SettingId. You can't create a new SettingId, but you can overwrite * the default value if you have the ssm:UpdateServiceSetting permission for the setting. Use the * GetServiceSetting API operation to view the current value. Use the UpdateServiceSetting API * operation to change the default setting. *

*

* Reset the service setting for the account to the default value as provisioned by the Amazon Web Services service * team. *

* * @param resetServiceSettingRequest * The request body of the ResetServiceSetting API operation. * @return A Java Future containing the result of the ResetServiceSetting operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ResetServiceSetting * @see AWS API * Documentation */ java.util.concurrent.Future resetServiceSettingAsync(ResetServiceSettingRequest resetServiceSettingRequest); /** *

* ServiceSetting is an account-level setting for an Amazon Web Services service. This setting defines * how a user interacts with or uses a service or a feature of a service. For example, if an Amazon Web Services * service charges money to the account based on feature or service usage, then the Amazon Web Services service team * might create a default setting of "false". This means the user can't use this feature unless they change the * setting to "true" and intentionally opt in for a paid feature. *

*

* Services map a SettingId object to a setting value. Amazon Web Services services teams define the * default value for a SettingId. You can't create a new SettingId, but you can overwrite * the default value if you have the ssm:UpdateServiceSetting permission for the setting. Use the * GetServiceSetting API operation to view the current value. Use the UpdateServiceSetting API * operation to change the default setting. *

*

* Reset the service setting for the account to the default value as provisioned by the Amazon Web Services service * team. *

* * @param resetServiceSettingRequest * The request body of the ResetServiceSetting API operation. * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ResetServiceSetting operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ResetServiceSetting * @see AWS API * Documentation */ java.util.concurrent.Future resetServiceSettingAsync(ResetServiceSettingRequest resetServiceSettingRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Reconnects a session to a managed node after it has been disconnected. Connections can be resumed for * disconnected sessions, but not terminated sessions. *

* *

* This command is primarily for use by client machines to automatically reconnect during intermittent network * issues. It isn't intended for any other use. *

*
* * @param resumeSessionRequest * @return A Java Future containing the result of the ResumeSession operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.ResumeSession * @see AWS API * Documentation */ java.util.concurrent.Future resumeSessionAsync(ResumeSessionRequest resumeSessionRequest); /** *

* Reconnects a session to a managed node after it has been disconnected. Connections can be resumed for * disconnected sessions, but not terminated sessions. *

* *

* This command is primarily for use by client machines to automatically reconnect during intermittent network * issues. It isn't intended for any other use. *

*
* * @param resumeSessionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the ResumeSession operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.ResumeSession * @see AWS API * Documentation */ java.util.concurrent.Future resumeSessionAsync(ResumeSessionRequest resumeSessionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Sends a signal to an Automation execution to change the current behavior or status of the execution. *

* * @param sendAutomationSignalRequest * @return A Java Future containing the result of the SendAutomationSignal operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.SendAutomationSignal * @see AWS API * Documentation */ java.util.concurrent.Future sendAutomationSignalAsync(SendAutomationSignalRequest sendAutomationSignalRequest); /** *

* Sends a signal to an Automation execution to change the current behavior or status of the execution. *

* * @param sendAutomationSignalRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the SendAutomationSignal operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.SendAutomationSignal * @see AWS API * Documentation */ java.util.concurrent.Future sendAutomationSignalAsync(SendAutomationSignalRequest sendAutomationSignalRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Runs commands on one or more managed nodes. *

* * @param sendCommandRequest * @return A Java Future containing the result of the SendCommand operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.SendCommand * @see AWS API * Documentation */ java.util.concurrent.Future sendCommandAsync(SendCommandRequest sendCommandRequest); /** *

* Runs commands on one or more managed nodes. *

* * @param sendCommandRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the SendCommand operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.SendCommand * @see AWS API * Documentation */ java.util.concurrent.Future sendCommandAsync(SendCommandRequest sendCommandRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Runs an association immediately and only one time. This operation can be helpful when troubleshooting * associations. *

* * @param startAssociationsOnceRequest * @return A Java Future containing the result of the StartAssociationsOnce operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.StartAssociationsOnce * @see AWS API * Documentation */ java.util.concurrent.Future startAssociationsOnceAsync(StartAssociationsOnceRequest startAssociationsOnceRequest); /** *

* Runs an association immediately and only one time. This operation can be helpful when troubleshooting * associations. *

* * @param startAssociationsOnceRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the StartAssociationsOnce operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.StartAssociationsOnce * @see AWS API * Documentation */ java.util.concurrent.Future startAssociationsOnceAsync(StartAssociationsOnceRequest startAssociationsOnceRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Initiates execution of an Automation runbook. *

* * @param startAutomationExecutionRequest * @return A Java Future containing the result of the StartAutomationExecution operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.StartAutomationExecution * @see AWS * API Documentation */ java.util.concurrent.Future startAutomationExecutionAsync(StartAutomationExecutionRequest startAutomationExecutionRequest); /** *

* Initiates execution of an Automation runbook. *

* * @param startAutomationExecutionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the StartAutomationExecution operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.StartAutomationExecution * @see AWS * API Documentation */ java.util.concurrent.Future startAutomationExecutionAsync(StartAutomationExecutionRequest startAutomationExecutionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Creates a change request for Change Manager. The Automation runbooks specified in the change request run only * after all required approvals for the change request have been received. *

* * @param startChangeRequestExecutionRequest * @return A Java Future containing the result of the StartChangeRequestExecution operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.StartChangeRequestExecution * @see AWS API Documentation */ java.util.concurrent.Future startChangeRequestExecutionAsync( StartChangeRequestExecutionRequest startChangeRequestExecutionRequest); /** *

* Creates a change request for Change Manager. The Automation runbooks specified in the change request run only * after all required approvals for the change request have been received. *

* * @param startChangeRequestExecutionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the StartChangeRequestExecution operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.StartChangeRequestExecution * @see AWS API Documentation */ java.util.concurrent.Future startChangeRequestExecutionAsync( StartChangeRequestExecutionRequest startChangeRequestExecutionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Initiates a connection to a target (for example, a managed node) for a Session Manager session. Returns a URL and * token that can be used to open a WebSocket connection for sending input and receiving outputs. *

* *

* Amazon Web Services CLI usage: start-session is an interactive command that requires the Session * Manager plugin to be installed on the client machine making the call. For information, see Install the Session Manager plugin for the Amazon Web Services CLI in the Amazon Web Services Systems * Manager User Guide. *

*

* Amazon Web Services Tools for PowerShell usage: Start-SSMSession isn't currently supported by Amazon Web Services * Tools for PowerShell on Windows local machines. *

*
* * @param startSessionRequest * @return A Java Future containing the result of the StartSession operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.StartSession * @see AWS API * Documentation */ java.util.concurrent.Future startSessionAsync(StartSessionRequest startSessionRequest); /** *

* Initiates a connection to a target (for example, a managed node) for a Session Manager session. Returns a URL and * token that can be used to open a WebSocket connection for sending input and receiving outputs. *

* *

* Amazon Web Services CLI usage: start-session is an interactive command that requires the Session * Manager plugin to be installed on the client machine making the call. For information, see Install the Session Manager plugin for the Amazon Web Services CLI in the Amazon Web Services Systems * Manager User Guide. *

*

* Amazon Web Services Tools for PowerShell usage: Start-SSMSession isn't currently supported by Amazon Web Services * Tools for PowerShell on Windows local machines. *

*
* * @param startSessionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the StartSession operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.StartSession * @see AWS API * Documentation */ java.util.concurrent.Future startSessionAsync(StartSessionRequest startSessionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Stop an Automation that is currently running. *

* * @param stopAutomationExecutionRequest * @return A Java Future containing the result of the StopAutomationExecution operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.StopAutomationExecution * @see AWS * API Documentation */ java.util.concurrent.Future stopAutomationExecutionAsync(StopAutomationExecutionRequest stopAutomationExecutionRequest); /** *

* Stop an Automation that is currently running. *

* * @param stopAutomationExecutionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the StopAutomationExecution operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.StopAutomationExecution * @see AWS * API Documentation */ java.util.concurrent.Future stopAutomationExecutionAsync(StopAutomationExecutionRequest stopAutomationExecutionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Permanently ends a session and closes the data connection between the Session Manager client and SSM Agent on the * managed node. A terminated session can't be resumed. *

* * @param terminateSessionRequest * @return A Java Future containing the result of the TerminateSession operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.TerminateSession * @see AWS API * Documentation */ java.util.concurrent.Future terminateSessionAsync(TerminateSessionRequest terminateSessionRequest); /** *

* Permanently ends a session and closes the data connection between the Session Manager client and SSM Agent on the * managed node. A terminated session can't be resumed. *

* * @param terminateSessionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the TerminateSession operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.TerminateSession * @see AWS API * Documentation */ java.util.concurrent.Future terminateSessionAsync(TerminateSessionRequest terminateSessionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Remove a label or labels from a parameter. *

* * @param unlabelParameterVersionRequest * @return A Java Future containing the result of the UnlabelParameterVersion operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UnlabelParameterVersion * @see AWS * API Documentation */ java.util.concurrent.Future unlabelParameterVersionAsync(UnlabelParameterVersionRequest unlabelParameterVersionRequest); /** *

* Remove a label or labels from a parameter. *

* * @param unlabelParameterVersionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UnlabelParameterVersion operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UnlabelParameterVersion * @see AWS * API Documentation */ java.util.concurrent.Future unlabelParameterVersionAsync(UnlabelParameterVersionRequest unlabelParameterVersionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Updates an association. You can update the association name and version, the document version, schedule, * parameters, and Amazon Simple Storage Service (Amazon S3) output. When you call UpdateAssociation, * the system removes all optional parameters from the request and overwrites the association with null values for * those parameters. This is by design. You must specify all optional parameters in the call, even if you are not * changing the parameters. This includes the Name parameter. Before calling this API action, we * recommend that you call the DescribeAssociation API operation and make a note of all optional parameters * required for your UpdateAssociation call. *

*

* In order to call this API operation, a user, group, or role must be granted permission to call the * DescribeAssociation API operation. If you don't have permission to call DescribeAssociation, * then you receive the following error: * An error occurred (AccessDeniedException) when calling the UpdateAssociation operation: User: <user_arn> isn't authorized to perform: ssm:DescribeAssociation on resource: <resource_arn> *

* *

* When you update an association, the association immediately runs against the specified targets. You can add the * ApplyOnlyAtCronInterval parameter to run the association during the next schedule run. *

*
* * @param updateAssociationRequest * @return A Java Future containing the result of the UpdateAssociation operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UpdateAssociation * @see AWS API * Documentation */ java.util.concurrent.Future updateAssociationAsync(UpdateAssociationRequest updateAssociationRequest); /** *

* Updates an association. You can update the association name and version, the document version, schedule, * parameters, and Amazon Simple Storage Service (Amazon S3) output. When you call UpdateAssociation, * the system removes all optional parameters from the request and overwrites the association with null values for * those parameters. This is by design. You must specify all optional parameters in the call, even if you are not * changing the parameters. This includes the Name parameter. Before calling this API action, we * recommend that you call the DescribeAssociation API operation and make a note of all optional parameters * required for your UpdateAssociation call. *

*

* In order to call this API operation, a user, group, or role must be granted permission to call the * DescribeAssociation API operation. If you don't have permission to call DescribeAssociation, * then you receive the following error: * An error occurred (AccessDeniedException) when calling the UpdateAssociation operation: User: <user_arn> isn't authorized to perform: ssm:DescribeAssociation on resource: <resource_arn> *

* *

* When you update an association, the association immediately runs against the specified targets. You can add the * ApplyOnlyAtCronInterval parameter to run the association during the next schedule run. *

*
* * @param updateAssociationRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateAssociation operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateAssociation * @see AWS API * Documentation */ java.util.concurrent.Future updateAssociationAsync(UpdateAssociationRequest updateAssociationRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Updates the status of the Amazon Web Services Systems Manager document (SSM document) associated with the * specified managed node. *

*

* UpdateAssociationStatus is primarily used by the Amazon Web Services Systems Manager Agent (SSM * Agent) to report status updates about your associations and is only used for associations created with the * InstanceId legacy parameter. *

* * @param updateAssociationStatusRequest * @return A Java Future containing the result of the UpdateAssociationStatus operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UpdateAssociationStatus * @see AWS * API Documentation */ java.util.concurrent.Future updateAssociationStatusAsync(UpdateAssociationStatusRequest updateAssociationStatusRequest); /** *

* Updates the status of the Amazon Web Services Systems Manager document (SSM document) associated with the * specified managed node. *

*

* UpdateAssociationStatus is primarily used by the Amazon Web Services Systems Manager Agent (SSM * Agent) to report status updates about your associations and is only used for associations created with the * InstanceId legacy parameter. *

* * @param updateAssociationStatusRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateAssociationStatus operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateAssociationStatus * @see AWS * API Documentation */ java.util.concurrent.Future updateAssociationStatusAsync(UpdateAssociationStatusRequest updateAssociationStatusRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Updates one or more values for an SSM document. *

* * @param updateDocumentRequest * @return A Java Future containing the result of the UpdateDocument operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UpdateDocument * @see AWS API * Documentation */ java.util.concurrent.Future updateDocumentAsync(UpdateDocumentRequest updateDocumentRequest); /** *

* Updates one or more values for an SSM document. *

* * @param updateDocumentRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateDocument operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateDocument * @see AWS API * Documentation */ java.util.concurrent.Future updateDocumentAsync(UpdateDocumentRequest updateDocumentRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Set the default version of a document. *

* *

* If you change a document version for a State Manager association, Systems Manager immediately runs the * association unless you previously specifed the apply-only-at-cron-interval parameter. *

*
* * @param updateDocumentDefaultVersionRequest * @return A Java Future containing the result of the UpdateDocumentDefaultVersion operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.UpdateDocumentDefaultVersion * @see AWS API Documentation */ java.util.concurrent.Future updateDocumentDefaultVersionAsync( UpdateDocumentDefaultVersionRequest updateDocumentDefaultVersionRequest); /** *

* Set the default version of a document. *

* *

* If you change a document version for a State Manager association, Systems Manager immediately runs the * association unless you previously specifed the apply-only-at-cron-interval parameter. *

*
* * @param updateDocumentDefaultVersionRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateDocumentDefaultVersion operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateDocumentDefaultVersion * @see AWS API Documentation */ java.util.concurrent.Future updateDocumentDefaultVersionAsync( UpdateDocumentDefaultVersionRequest updateDocumentDefaultVersionRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Updates information related to approval reviews for a specific version of a change template in Change Manager. *

* * @param updateDocumentMetadataRequest * @return A Java Future containing the result of the UpdateDocumentMetadata operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UpdateDocumentMetadata * @see AWS API * Documentation */ java.util.concurrent.Future updateDocumentMetadataAsync(UpdateDocumentMetadataRequest updateDocumentMetadataRequest); /** *

* Updates information related to approval reviews for a specific version of a change template in Change Manager. *

* * @param updateDocumentMetadataRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateDocumentMetadata operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateDocumentMetadata * @see AWS API * Documentation */ java.util.concurrent.Future updateDocumentMetadataAsync(UpdateDocumentMetadataRequest updateDocumentMetadataRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Updates an existing maintenance window. Only specified parameters are modified. *

* *

* The value you specify for Duration determines the specific end time for the maintenance window based * on the time it begins. No maintenance window tasks are permitted to start after the resulting endtime minus the * number of hours you specify for Cutoff. For example, if the maintenance window starts at 3 PM, the * duration is three hours, and the value you specify for Cutoff is one hour, no maintenance window * tasks can start after 5 PM. *

*
* * @param updateMaintenanceWindowRequest * @return A Java Future containing the result of the UpdateMaintenanceWindow operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UpdateMaintenanceWindow * @see AWS * API Documentation */ java.util.concurrent.Future updateMaintenanceWindowAsync(UpdateMaintenanceWindowRequest updateMaintenanceWindowRequest); /** *

* Updates an existing maintenance window. Only specified parameters are modified. *

* *

* The value you specify for Duration determines the specific end time for the maintenance window based * on the time it begins. No maintenance window tasks are permitted to start after the resulting endtime minus the * number of hours you specify for Cutoff. For example, if the maintenance window starts at 3 PM, the * duration is three hours, and the value you specify for Cutoff is one hour, no maintenance window * tasks can start after 5 PM. *

*
* * @param updateMaintenanceWindowRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateMaintenanceWindow operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateMaintenanceWindow * @see AWS * API Documentation */ java.util.concurrent.Future updateMaintenanceWindowAsync(UpdateMaintenanceWindowRequest updateMaintenanceWindowRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Modifies the target of an existing maintenance window. You can change the following: *

*
    *
  • *

    * Name *

    *
  • *
  • *

    * Description *

    *
  • *
  • *

    * Owner *

    *
  • *
  • *

    * IDs for an ID target *

    *
  • *
  • *

    * Tags for a Tag target *

    *
  • *
  • *

    * From any supported tag type to another. The three supported tag types are ID target, Tag target, and resource * group. For more information, see Target. *

    *
  • *
* *

* If a parameter is null, then the corresponding field isn't modified. *

*
* * @param updateMaintenanceWindowTargetRequest * @return A Java Future containing the result of the UpdateMaintenanceWindowTarget operation returned by the * service. * @sample AWSSimpleSystemsManagementAsync.UpdateMaintenanceWindowTarget * @see AWS API Documentation */ java.util.concurrent.Future updateMaintenanceWindowTargetAsync( UpdateMaintenanceWindowTargetRequest updateMaintenanceWindowTargetRequest); /** *

* Modifies the target of an existing maintenance window. You can change the following: *

*
    *
  • *

    * Name *

    *
  • *
  • *

    * Description *

    *
  • *
  • *

    * Owner *

    *
  • *
  • *

    * IDs for an ID target *

    *
  • *
  • *

    * Tags for a Tag target *

    *
  • *
  • *

    * From any supported tag type to another. The three supported tag types are ID target, Tag target, and resource * group. For more information, see Target. *

    *
  • *
* *

* If a parameter is null, then the corresponding field isn't modified. *

*
* * @param updateMaintenanceWindowTargetRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateMaintenanceWindowTarget operation returned by the * service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateMaintenanceWindowTarget * @see AWS API Documentation */ java.util.concurrent.Future updateMaintenanceWindowTargetAsync( UpdateMaintenanceWindowTargetRequest updateMaintenanceWindowTargetRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Modifies a task assigned to a maintenance window. You can't change the task type, but you can change the * following values: *

*
    *
  • *

    * TaskARN. For example, you can change a RUN_COMMAND task from * AWS-RunPowerShellScript to AWS-RunShellScript. *

    *
  • *
  • *

    * ServiceRoleArn *

    *
  • *
  • *

    * TaskInvocationParameters *

    *
  • *
  • *

    * Priority *

    *
  • *
  • *

    * MaxConcurrency *

    *
  • *
  • *

    * MaxErrors *

    *
  • *
* *

* One or more targets must be specified for maintenance window Run Command-type tasks. Depending on the task, * targets are optional for other maintenance window task types (Automation, Lambda, and Step Functions). For more * information about running tasks that don't specify targets, see Registering maintenance window tasks without targets in the Amazon Web Services Systems Manager User * Guide. *

*
*

* If the value for a parameter in UpdateMaintenanceWindowTask is null, then the corresponding field * isn't modified. If you set Replace to true, then all fields required by the * RegisterTaskWithMaintenanceWindow operation are required for this request. Optional fields that aren't * specified are set to null. *

* *

* When you update a maintenance window task that has options specified in TaskInvocationParameters, * you must provide again all the TaskInvocationParameters values that you want to retain. The values * you don't specify again are removed. For example, suppose that when you registered a Run Command task, you * specified TaskInvocationParameters values for Comment, NotificationConfig, * and OutputS3BucketName. If you update the maintenance window task and specify only a different * OutputS3BucketName value, the values for Comment and NotificationConfig * are removed. *

*
* * @param updateMaintenanceWindowTaskRequest * @return A Java Future containing the result of the UpdateMaintenanceWindowTask operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UpdateMaintenanceWindowTask * @see AWS API Documentation */ java.util.concurrent.Future updateMaintenanceWindowTaskAsync( UpdateMaintenanceWindowTaskRequest updateMaintenanceWindowTaskRequest); /** *

* Modifies a task assigned to a maintenance window. You can't change the task type, but you can change the * following values: *

*
    *
  • *

    * TaskARN. For example, you can change a RUN_COMMAND task from * AWS-RunPowerShellScript to AWS-RunShellScript. *

    *
  • *
  • *

    * ServiceRoleArn *

    *
  • *
  • *

    * TaskInvocationParameters *

    *
  • *
  • *

    * Priority *

    *
  • *
  • *

    * MaxConcurrency *

    *
  • *
  • *

    * MaxErrors *

    *
  • *
* *

* One or more targets must be specified for maintenance window Run Command-type tasks. Depending on the task, * targets are optional for other maintenance window task types (Automation, Lambda, and Step Functions). For more * information about running tasks that don't specify targets, see Registering maintenance window tasks without targets in the Amazon Web Services Systems Manager User * Guide. *

*
*

* If the value for a parameter in UpdateMaintenanceWindowTask is null, then the corresponding field * isn't modified. If you set Replace to true, then all fields required by the * RegisterTaskWithMaintenanceWindow operation are required for this request. Optional fields that aren't * specified are set to null. *

* *

* When you update a maintenance window task that has options specified in TaskInvocationParameters, * you must provide again all the TaskInvocationParameters values that you want to retain. The values * you don't specify again are removed. For example, suppose that when you registered a Run Command task, you * specified TaskInvocationParameters values for Comment, NotificationConfig, * and OutputS3BucketName. If you update the maintenance window task and specify only a different * OutputS3BucketName value, the values for Comment and NotificationConfig * are removed. *

*
* * @param updateMaintenanceWindowTaskRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateMaintenanceWindowTask operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateMaintenanceWindowTask * @see AWS API Documentation */ java.util.concurrent.Future updateMaintenanceWindowTaskAsync( UpdateMaintenanceWindowTaskRequest updateMaintenanceWindowTaskRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Changes the Identity and Access Management (IAM) role that is assigned to the on-premises server, edge device, or * virtual machines (VM). IAM roles are first assigned to these hybrid nodes during the activation process. For more * information, see CreateActivation. *

* * @param updateManagedInstanceRoleRequest * @return A Java Future containing the result of the UpdateManagedInstanceRole operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UpdateManagedInstanceRole * @see AWS * API Documentation */ java.util.concurrent.Future updateManagedInstanceRoleAsync( UpdateManagedInstanceRoleRequest updateManagedInstanceRoleRequest); /** *

* Changes the Identity and Access Management (IAM) role that is assigned to the on-premises server, edge device, or * virtual machines (VM). IAM roles are first assigned to these hybrid nodes during the activation process. For more * information, see CreateActivation. *

* * @param updateManagedInstanceRoleRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateManagedInstanceRole operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateManagedInstanceRole * @see AWS * API Documentation */ java.util.concurrent.Future updateManagedInstanceRoleAsync( UpdateManagedInstanceRoleRequest updateManagedInstanceRoleRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Edit or change an OpsItem. You must have permission in Identity and Access Management (IAM) to update an OpsItem. * For more information, see Set up OpsCenter in * the Amazon Web Services Systems Manager User Guide. *

*

* Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, * and remediate operational issues impacting the performance and health of their Amazon Web Services resources. For * more information, see Amazon Web Services Systems * Manager OpsCenter in the Amazon Web Services Systems Manager User Guide. *

* * @param updateOpsItemRequest * @return A Java Future containing the result of the UpdateOpsItem operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UpdateOpsItem * @see AWS API * Documentation */ java.util.concurrent.Future updateOpsItemAsync(UpdateOpsItemRequest updateOpsItemRequest); /** *

* Edit or change an OpsItem. You must have permission in Identity and Access Management (IAM) to update an OpsItem. * For more information, see Set up OpsCenter in * the Amazon Web Services Systems Manager User Guide. *

*

* Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, * and remediate operational issues impacting the performance and health of their Amazon Web Services resources. For * more information, see Amazon Web Services Systems * Manager OpsCenter in the Amazon Web Services Systems Manager User Guide. *

* * @param updateOpsItemRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateOpsItem operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateOpsItem * @see AWS API * Documentation */ java.util.concurrent.Future updateOpsItemAsync(UpdateOpsItemRequest updateOpsItemRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Amazon Web Services Systems Manager calls this API operation when you edit OpsMetadata in Application Manager. *

* * @param updateOpsMetadataRequest * @return A Java Future containing the result of the UpdateOpsMetadata operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UpdateOpsMetadata * @see AWS API * Documentation */ java.util.concurrent.Future updateOpsMetadataAsync(UpdateOpsMetadataRequest updateOpsMetadataRequest); /** *

* Amazon Web Services Systems Manager calls this API operation when you edit OpsMetadata in Application Manager. *

* * @param updateOpsMetadataRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateOpsMetadata operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateOpsMetadata * @see AWS API * Documentation */ java.util.concurrent.Future updateOpsMetadataAsync(UpdateOpsMetadataRequest updateOpsMetadataRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Modifies an existing patch baseline. Fields not specified in the request are left unchanged. *

* *

* For information about valid key-value pairs in PatchFilters for each supported operating system * type, see PatchFilter. *

*
* * @param updatePatchBaselineRequest * @return A Java Future containing the result of the UpdatePatchBaseline operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UpdatePatchBaseline * @see AWS API * Documentation */ java.util.concurrent.Future updatePatchBaselineAsync(UpdatePatchBaselineRequest updatePatchBaselineRequest); /** *

* Modifies an existing patch baseline. Fields not specified in the request are left unchanged. *

* *

* For information about valid key-value pairs in PatchFilters for each supported operating system * type, see PatchFilter. *

*
* * @param updatePatchBaselineRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdatePatchBaseline operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdatePatchBaseline * @see AWS API * Documentation */ java.util.concurrent.Future updatePatchBaselineAsync(UpdatePatchBaselineRequest updatePatchBaselineRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* Update a resource data sync. After you create a resource data sync for a Region, you can't change the account * options for that sync. For example, if you create a sync in the us-east-2 (Ohio) Region and you choose the * Include only the current account option, you can't edit that sync later and choose the * Include all accounts from my Organizations configuration option. Instead, you must delete the first * resource data sync, and create a new one. *

* *

* This API operation only supports a resource data sync that was created with a SyncFromSource * SyncType. *

*
* * @param updateResourceDataSyncRequest * @return A Java Future containing the result of the UpdateResourceDataSync operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UpdateResourceDataSync * @see AWS API * Documentation */ java.util.concurrent.Future updateResourceDataSyncAsync(UpdateResourceDataSyncRequest updateResourceDataSyncRequest); /** *

* Update a resource data sync. After you create a resource data sync for a Region, you can't change the account * options for that sync. For example, if you create a sync in the us-east-2 (Ohio) Region and you choose the * Include only the current account option, you can't edit that sync later and choose the * Include all accounts from my Organizations configuration option. Instead, you must delete the first * resource data sync, and create a new one. *

* *

* This API operation only supports a resource data sync that was created with a SyncFromSource * SyncType. *

*
* * @param updateResourceDataSyncRequest * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateResourceDataSync operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateResourceDataSync * @see AWS API * Documentation */ java.util.concurrent.Future updateResourceDataSyncAsync(UpdateResourceDataSyncRequest updateResourceDataSyncRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); /** *

* ServiceSetting is an account-level setting for an Amazon Web Services service. This setting defines * how a user interacts with or uses a service or a feature of a service. For example, if an Amazon Web Services * service charges money to the account based on feature or service usage, then the Amazon Web Services service team * might create a default setting of "false". This means the user can't use this feature unless they change the * setting to "true" and intentionally opt in for a paid feature. *

*

* Services map a SettingId object to a setting value. Amazon Web Services services teams define the * default value for a SettingId. You can't create a new SettingId, but you can overwrite * the default value if you have the ssm:UpdateServiceSetting permission for the setting. Use the * GetServiceSetting API operation to view the current value. Or, use the ResetServiceSetting to * change the value back to the original value defined by the Amazon Web Services service team. *

*

* Update the service setting for the account. *

* * @param updateServiceSettingRequest * The request body of the UpdateServiceSetting API operation. * @return A Java Future containing the result of the UpdateServiceSetting operation returned by the service. * @sample AWSSimpleSystemsManagementAsync.UpdateServiceSetting * @see AWS API * Documentation */ java.util.concurrent.Future updateServiceSettingAsync(UpdateServiceSettingRequest updateServiceSettingRequest); /** *

* ServiceSetting is an account-level setting for an Amazon Web Services service. This setting defines * how a user interacts with or uses a service or a feature of a service. For example, if an Amazon Web Services * service charges money to the account based on feature or service usage, then the Amazon Web Services service team * might create a default setting of "false". This means the user can't use this feature unless they change the * setting to "true" and intentionally opt in for a paid feature. *

*

* Services map a SettingId object to a setting value. Amazon Web Services services teams define the * default value for a SettingId. You can't create a new SettingId, but you can overwrite * the default value if you have the ssm:UpdateServiceSetting permission for the setting. Use the * GetServiceSetting API operation to view the current value. Or, use the ResetServiceSetting to * change the value back to the original value defined by the Amazon Web Services service team. *

*

* Update the service setting for the account. *

* * @param updateServiceSettingRequest * The request body of the UpdateServiceSetting API operation. * @param asyncHandler * Asynchronous callback handler for events in the lifecycle of the request. Users can provide an * implementation of the callback methods in this interface to receive notification of successful or * unsuccessful completion of the operation. * @return A Java Future containing the result of the UpdateServiceSetting operation returned by the service. * @sample AWSSimpleSystemsManagementAsyncHandler.UpdateServiceSetting * @see AWS API * Documentation */ java.util.concurrent.Future updateServiceSettingAsync(UpdateServiceSettingRequest updateServiceSettingRequest, com.amazonaws.handlers.AsyncHandler asyncHandler); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy