@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class AbstractAWSSimpleSystemsManagement extends Object implements AWSSimpleSystemsManagement
AWSSimpleSystemsManagement
. Convenient method forms pass through to the
corresponding overload that takes a request object, which throws an UnsupportedOperationException
.ENDPOINT_PREFIX
public void setEndpoint(String endpoint)
AWSSimpleSystemsManagement
Callers can pass in just the endpoint (ex: "ssm.us-east-1.amazonaws.com") or a full URL, including the protocol
(ex: "https://ssm.us-east-1.amazonaws.com"). If the protocol is not specified here, the default protocol from
this client's ClientConfiguration
will be used, which by default is HTTPS.
For more information on using AWS regions with the AWS SDK for Java, and a complete list of all available endpoints for all AWS services, see: http://developer.amazonwebservices.com/connect/entry.jspa?externalID=3912
This method is not threadsafe. An endpoint should be configured when the client is created and before any service requests are made. Changing it afterwards creates inevitable race conditions for any service requests in transit or retrying.
setEndpoint
in interface AWSSimpleSystemsManagement
endpoint
- The endpoint (ex: "ssm.us-east-1.amazonaws.com") or a full URL, including the protocol (ex:
"https://ssm.us-east-1.amazonaws.com") of the region specific AWS endpoint this client will communicate
with.public void setRegion(Region region)
AWSSimpleSystemsManagement
AWSSimpleSystemsManagement.setEndpoint(String)
, sets the regional endpoint for this
client's service calls. Callers can use this method to control which AWS region they want to work with.
By default, all service endpoints in all regions use the https protocol. To use http instead, specify it in the
ClientConfiguration
supplied at construction.
This method is not threadsafe. A region should be configured when the client is created and before any service requests are made. Changing it afterwards creates inevitable race conditions for any service requests in transit or retrying.
setRegion
in interface AWSSimpleSystemsManagement
region
- The region this client will communicate with. See Region.getRegion(com.amazonaws.regions.Regions)
for accessing a given region. Must not be null and must be a region where the service is available.Region.getRegion(com.amazonaws.regions.Regions)
,
Region.createClient(Class, com.amazonaws.auth.AWSCredentialsProvider, ClientConfiguration)
,
Region.isServiceSupported(String)
public AddTagsToResourceResult addTagsToResource(AddTagsToResourceRequest request)
AWSSimpleSystemsManagement
Adds or overwrites one or more tags for the specified resource. Tags are metadata that you can assign to your documents, managed instances, 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 instances that helps you track each instance's owner and stack level. For example: Key=Owner and Value=DbAdmin, SysAdmin, or Dev. Or Key=Stack and Value=Production, Pre-Production, or Test.
Each resource can have a maximum of 10 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 Amazon EC2 and are interpreted strictly as a string of characters.
For more information about tags, see Tagging Your Amazon EC2 Resources in the Amazon EC2 User Guide.
addTagsToResource
in interface AWSSimpleSystemsManagement
public CancelCommandResult cancelCommand(CancelCommandRequest request)
AWSSimpleSystemsManagement
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.
cancelCommand
in interface AWSSimpleSystemsManagement
public CreateActivationResult createActivation(CreateActivationRequest request)
AWSSimpleSystemsManagement
Registers your on-premises server or virtual machine with Amazon EC2 so that you can manage these resources using Run Command. An on-premises server or virtual machine that has been registered with EC2 is called a managed instance. For more information about activations, see Setting Up Systems Manager in Hybrid Environments.
createActivation
in interface AWSSimpleSystemsManagement
public CreateAssociationResult createAssociation(CreateAssociationRequest request)
AWSSimpleSystemsManagement
Associates the specified Systems Manager document with the specified instances or targets.
When you associate a document with one or more instances using instance IDs or tags, the SSM Agent running on the instance processes the document and configures the instance as specified.
If you associate a document with an instance that already has an associated document, the system throws the AssociationAlreadyExists exception.
createAssociation
in interface AWSSimpleSystemsManagement
public CreateAssociationBatchResult createAssociationBatch(CreateAssociationBatchRequest request)
AWSSimpleSystemsManagement
Associates the specified Systems Manager document with the specified instances or targets.
When you associate a document with one or more instances using instance IDs or tags, the SSM Agent running on the instance processes the document and configures the instance as specified.
If you associate a document with an instance that already has an associated document, the system throws the AssociationAlreadyExists exception.
createAssociationBatch
in interface AWSSimpleSystemsManagement
public CreateDocumentResult createDocument(CreateDocumentRequest request)
AWSSimpleSystemsManagement
Creates a Systems Manager document.
After you create a document, you can use CreateAssociation to associate it with one or more running instances.
createDocument
in interface AWSSimpleSystemsManagement
public CreateMaintenanceWindowResult createMaintenanceWindow(CreateMaintenanceWindowRequest request)
AWSSimpleSystemsManagement
Creates a new Maintenance Window.
createMaintenanceWindow
in interface AWSSimpleSystemsManagement
public CreatePatchBaselineResult createPatchBaseline(CreatePatchBaselineRequest request)
AWSSimpleSystemsManagement
Creates a patch baseline.
createPatchBaseline
in interface AWSSimpleSystemsManagement
public CreateResourceDataSyncResult createResourceDataSync(CreateResourceDataSyncRequest request)
AWSSimpleSystemsManagement
Creates a resource data sync configuration to a single bucket in Amazon S3. This is an asynchronous operation that returns immediately. After a successful initial sync is completed, the system continuously syncs data to the Amazon S3 bucket. To check the status of the sync, use the ListResourceDataSync operation.
By default, data is not 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. To view an example of a restrictive Amazon S3 bucket policy for Resource Data Sync, see Configuring Resource Data Sync for Inventory.
createResourceDataSync
in interface AWSSimpleSystemsManagement
public DeleteActivationResult deleteActivation(DeleteActivationRequest request)
AWSSimpleSystemsManagement
Deletes an activation. You are not required to delete an activation. If you delete an activation, you can no longer use it to register additional managed instances. Deleting an activation does not de-register managed instances. You must manually de-register managed instances.
deleteActivation
in interface AWSSimpleSystemsManagement
public DeleteAssociationResult deleteAssociation(DeleteAssociationRequest request)
AWSSimpleSystemsManagement
Disassociates the specified Systems Manager document from the specified instance.
When you disassociate a document from an instance, it does not change the configuration of the instance. To change the configuration state of an instance after you disassociate a document, you must create a new document with the desired configuration and associate it with the instance.
deleteAssociation
in interface AWSSimpleSystemsManagement
public DeleteDocumentResult deleteDocument(DeleteDocumentRequest request)
AWSSimpleSystemsManagement
Deletes the Systems Manager document and all instance associations to the document.
Before you delete the document, we recommend that you use DeleteAssociation to disassociate all instances that are associated with the document.
deleteDocument
in interface AWSSimpleSystemsManagement
public DeleteMaintenanceWindowResult deleteMaintenanceWindow(DeleteMaintenanceWindowRequest request)
AWSSimpleSystemsManagement
Deletes a Maintenance Window.
deleteMaintenanceWindow
in interface AWSSimpleSystemsManagement
public DeleteParameterResult deleteParameter(DeleteParameterRequest request)
AWSSimpleSystemsManagement
Delete a parameter from the system.
deleteParameter
in interface AWSSimpleSystemsManagement
public DeleteParametersResult deleteParameters(DeleteParametersRequest request)
AWSSimpleSystemsManagement
Delete a list of parameters. This API is used to delete parameters by using the Amazon EC2 console.
deleteParameters
in interface AWSSimpleSystemsManagement
public DeletePatchBaselineResult deletePatchBaseline(DeletePatchBaselineRequest request)
AWSSimpleSystemsManagement
Deletes a patch baseline.
deletePatchBaseline
in interface AWSSimpleSystemsManagement
public DeleteResourceDataSyncResult deleteResourceDataSync(DeleteResourceDataSyncRequest request)
AWSSimpleSystemsManagement
Deletes a Resource Data Sync configuration. After the configuration is deleted, changes to inventory data on managed instances are no longer synced with the target Amazon S3 bucket. Deleting a sync configuration does not delete data in the target Amazon S3 bucket.
deleteResourceDataSync
in interface AWSSimpleSystemsManagement
public DeregisterManagedInstanceResult deregisterManagedInstance(DeregisterManagedInstanceRequest request)
AWSSimpleSystemsManagement
Removes the server or virtual machine from the list of registered servers. You can reregister the instance again at any time. If you don't plan to use Run Command on the server, we suggest uninstalling the SSM Agent first.
deregisterManagedInstance
in interface AWSSimpleSystemsManagement
public DeregisterPatchBaselineForPatchGroupResult deregisterPatchBaselineForPatchGroup(DeregisterPatchBaselineForPatchGroupRequest request)
AWSSimpleSystemsManagement
Removes a patch group from a patch baseline.
deregisterPatchBaselineForPatchGroup
in interface AWSSimpleSystemsManagement
public DeregisterTargetFromMaintenanceWindowResult deregisterTargetFromMaintenanceWindow(DeregisterTargetFromMaintenanceWindowRequest request)
AWSSimpleSystemsManagement
Removes a target from a Maintenance Window.
deregisterTargetFromMaintenanceWindow
in interface AWSSimpleSystemsManagement
public DeregisterTaskFromMaintenanceWindowResult deregisterTaskFromMaintenanceWindow(DeregisterTaskFromMaintenanceWindowRequest request)
AWSSimpleSystemsManagement
Removes a task from a Maintenance Window.
deregisterTaskFromMaintenanceWindow
in interface AWSSimpleSystemsManagement
public DescribeActivationsResult describeActivations(DescribeActivationsRequest request)
AWSSimpleSystemsManagement
Details about the activation, including: the date and time the activation was created, the expiration date, the IAM role assigned to the instances in the activation, and the number of instances activated by this registration.
describeActivations
in interface AWSSimpleSystemsManagement
public DescribeAssociationResult describeAssociation(DescribeAssociationRequest request)
AWSSimpleSystemsManagement
Describes the associations for the specified Systems Manager document or instance.
describeAssociation
in interface AWSSimpleSystemsManagement
public DescribeAutomationExecutionsResult describeAutomationExecutions(DescribeAutomationExecutionsRequest request)
AWSSimpleSystemsManagement
Provides details about all active and terminated Automation executions.
describeAutomationExecutions
in interface AWSSimpleSystemsManagement
public DescribeAvailablePatchesResult describeAvailablePatches(DescribeAvailablePatchesRequest request)
AWSSimpleSystemsManagement
Lists all patches that could possibly be included in a patch baseline.
describeAvailablePatches
in interface AWSSimpleSystemsManagement
public DescribeDocumentResult describeDocument(DescribeDocumentRequest request)
AWSSimpleSystemsManagement
Describes the specified Systems Manager document.
describeDocument
in interface AWSSimpleSystemsManagement
public DescribeDocumentPermissionResult describeDocumentPermission(DescribeDocumentPermissionRequest request)
AWSSimpleSystemsManagement
Describes the permissions for a Systems Manager 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 AWS account ID) or publicly (All).
describeDocumentPermission
in interface AWSSimpleSystemsManagement
public DescribeEffectiveInstanceAssociationsResult describeEffectiveInstanceAssociations(DescribeEffectiveInstanceAssociationsRequest request)
AWSSimpleSystemsManagement
All associations for the instance(s).
describeEffectiveInstanceAssociations
in interface AWSSimpleSystemsManagement
public DescribeEffectivePatchesForPatchBaselineResult describeEffectivePatchesForPatchBaseline(DescribeEffectivePatchesForPatchBaselineRequest request)
AWSSimpleSystemsManagement
Retrieves the current effective patches (the patch and the approval state) for the specified patch baseline. Note that this API applies only to Windows patch baselines.
describeEffectivePatchesForPatchBaseline
in interface AWSSimpleSystemsManagement
public DescribeInstanceAssociationsStatusResult describeInstanceAssociationsStatus(DescribeInstanceAssociationsStatusRequest request)
AWSSimpleSystemsManagement
The status of the associations for the instance(s).
describeInstanceAssociationsStatus
in interface AWSSimpleSystemsManagement
public DescribeInstanceInformationResult describeInstanceInformation(DescribeInstanceInformationRequest request)
AWSSimpleSystemsManagement
Describes one or more of your instances. You can use this to get information about instances like the operating system platform, the SSM Agent version (Linux), status etc. If you specify one or more instance IDs, it returns information for those instances. If you do not specify instance IDs, it returns information for all your instances. If you specify an instance ID that is not valid or an instance that you do not own, you receive an error.
describeInstanceInformation
in interface AWSSimpleSystemsManagement
public DescribeInstancePatchStatesResult describeInstancePatchStates(DescribeInstancePatchStatesRequest request)
AWSSimpleSystemsManagement
Retrieves the high-level patch state of one or more instances.
describeInstancePatchStates
in interface AWSSimpleSystemsManagement
public DescribeInstancePatchStatesForPatchGroupResult describeInstancePatchStatesForPatchGroup(DescribeInstancePatchStatesForPatchGroupRequest request)
AWSSimpleSystemsManagement
Retrieves the high-level patch state for the instances in the specified patch group.
describeInstancePatchStatesForPatchGroup
in interface AWSSimpleSystemsManagement
public DescribeInstancePatchesResult describeInstancePatches(DescribeInstancePatchesRequest request)
AWSSimpleSystemsManagement
Retrieves information about the patches on the specified instance and their state relative to the patch baseline being used for the instance.
describeInstancePatches
in interface AWSSimpleSystemsManagement
public DescribeMaintenanceWindowExecutionTaskInvocationsResult describeMaintenanceWindowExecutionTaskInvocations(DescribeMaintenanceWindowExecutionTaskInvocationsRequest request)
AWSSimpleSystemsManagement
Retrieves the individual task executions (one per target) for a particular task executed as part of a Maintenance Window execution.
describeMaintenanceWindowExecutionTaskInvocations
in interface AWSSimpleSystemsManagement
public DescribeMaintenanceWindowExecutionTasksResult describeMaintenanceWindowExecutionTasks(DescribeMaintenanceWindowExecutionTasksRequest request)
AWSSimpleSystemsManagement
For a given Maintenance Window execution, lists the tasks that were executed.
describeMaintenanceWindowExecutionTasks
in interface AWSSimpleSystemsManagement
public DescribeMaintenanceWindowExecutionsResult describeMaintenanceWindowExecutions(DescribeMaintenanceWindowExecutionsRequest request)
AWSSimpleSystemsManagement
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.
describeMaintenanceWindowExecutions
in interface AWSSimpleSystemsManagement
public DescribeMaintenanceWindowTargetsResult describeMaintenanceWindowTargets(DescribeMaintenanceWindowTargetsRequest request)
AWSSimpleSystemsManagement
Lists the targets registered with the Maintenance Window.
describeMaintenanceWindowTargets
in interface AWSSimpleSystemsManagement
public DescribeMaintenanceWindowTasksResult describeMaintenanceWindowTasks(DescribeMaintenanceWindowTasksRequest request)
AWSSimpleSystemsManagement
Lists the tasks in a Maintenance Window.
describeMaintenanceWindowTasks
in interface AWSSimpleSystemsManagement
public DescribeMaintenanceWindowsResult describeMaintenanceWindows(DescribeMaintenanceWindowsRequest request)
AWSSimpleSystemsManagement
Retrieves the Maintenance Windows in an AWS account.
describeMaintenanceWindows
in interface AWSSimpleSystemsManagement
public DescribeParametersResult describeParameters(DescribeParametersRequest request)
AWSSimpleSystemsManagement
Get information about a parameter.
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.
describeParameters
in interface AWSSimpleSystemsManagement
public DescribePatchBaselinesResult describePatchBaselines(DescribePatchBaselinesRequest request)
AWSSimpleSystemsManagement
Lists the patch baselines in your AWS account.
describePatchBaselines
in interface AWSSimpleSystemsManagement
public DescribePatchGroupStateResult describePatchGroupState(DescribePatchGroupStateRequest request)
AWSSimpleSystemsManagement
Returns high-level aggregated patch compliance state for a patch group.
describePatchGroupState
in interface AWSSimpleSystemsManagement
public DescribePatchGroupsResult describePatchGroups(DescribePatchGroupsRequest request)
AWSSimpleSystemsManagement
Lists all patch groups that have been registered with patch baselines.
describePatchGroups
in interface AWSSimpleSystemsManagement
public GetAutomationExecutionResult getAutomationExecution(GetAutomationExecutionRequest request)
AWSSimpleSystemsManagement
Get detailed information about a particular Automation execution.
getAutomationExecution
in interface AWSSimpleSystemsManagement
public GetCommandInvocationResult getCommandInvocation(GetCommandInvocationRequest request)
AWSSimpleSystemsManagement
Returns detailed information about command execution for an invocation or plugin.
getCommandInvocation
in interface AWSSimpleSystemsManagement
public GetDefaultPatchBaselineResult getDefaultPatchBaseline(GetDefaultPatchBaselineRequest request)
AWSSimpleSystemsManagement
Retrieves the default patch baseline. Note that Systems Manager supports creating multiple default patch baselines. For example, you can create a default patch baseline for each operating system.
getDefaultPatchBaseline
in interface AWSSimpleSystemsManagement
public GetDeployablePatchSnapshotForInstanceResult getDeployablePatchSnapshotForInstance(GetDeployablePatchSnapshotForInstanceRequest request)
AWSSimpleSystemsManagement
Retrieves the current snapshot for the patch baseline the instance uses. This API is primarily used by the AWS-RunPatchBaseline Systems Manager document.
getDeployablePatchSnapshotForInstance
in interface AWSSimpleSystemsManagement
public GetDocumentResult getDocument(GetDocumentRequest request)
AWSSimpleSystemsManagement
Gets the contents of the specified Systems Manager document.
getDocument
in interface AWSSimpleSystemsManagement
public GetInventoryResult getInventory(GetInventoryRequest request)
AWSSimpleSystemsManagement
Query inventory information.
getInventory
in interface AWSSimpleSystemsManagement
public GetInventorySchemaResult getInventorySchema(GetInventorySchemaRequest request)
AWSSimpleSystemsManagement
Return a list of inventory type names for the account, or return a list of attribute names for a specific Inventory item type.
getInventorySchema
in interface AWSSimpleSystemsManagement
public GetMaintenanceWindowResult getMaintenanceWindow(GetMaintenanceWindowRequest request)
AWSSimpleSystemsManagement
Retrieves a Maintenance Window.
getMaintenanceWindow
in interface AWSSimpleSystemsManagement
public GetMaintenanceWindowExecutionResult getMaintenanceWindowExecution(GetMaintenanceWindowExecutionRequest request)
AWSSimpleSystemsManagement
Retrieves details about a specific task executed as part of a Maintenance Window execution.
getMaintenanceWindowExecution
in interface AWSSimpleSystemsManagement
public GetMaintenanceWindowExecutionTaskResult getMaintenanceWindowExecutionTask(GetMaintenanceWindowExecutionTaskRequest request)
AWSSimpleSystemsManagement
Retrieves the details about a specific task executed as part of a Maintenance Window execution.
getMaintenanceWindowExecutionTask
in interface AWSSimpleSystemsManagement
public GetMaintenanceWindowExecutionTaskInvocationResult getMaintenanceWindowExecutionTaskInvocation(GetMaintenanceWindowExecutionTaskInvocationRequest request)
AWSSimpleSystemsManagement
Retrieves a task invocation. A task invocation is a specific task executing on a specific target. Maintenance Windows report status for all invocations.
getMaintenanceWindowExecutionTaskInvocation
in interface AWSSimpleSystemsManagement
public GetMaintenanceWindowTaskResult getMaintenanceWindowTask(GetMaintenanceWindowTaskRequest request)
AWSSimpleSystemsManagement
Lists the tasks in a Maintenance Window.
getMaintenanceWindowTask
in interface AWSSimpleSystemsManagement
public GetParameterResult getParameter(GetParameterRequest request)
AWSSimpleSystemsManagement
Get information about a parameter by using the parameter name.
getParameter
in interface AWSSimpleSystemsManagement
public GetParameterHistoryResult getParameterHistory(GetParameterHistoryRequest request)
AWSSimpleSystemsManagement
Query a list of all parameters used by the AWS account.
getParameterHistory
in interface AWSSimpleSystemsManagement
public GetParametersResult getParameters(GetParametersRequest request)
AWSSimpleSystemsManagement
Get details of a parameter.
getParameters
in interface AWSSimpleSystemsManagement
public GetParametersByPathResult getParametersByPath(GetParametersByPathRequest request)
AWSSimpleSystemsManagement
Retrieve parameters in a specific hierarchy. For more information, see Working with Systems Manager Parameters.
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.
getParametersByPath
in interface AWSSimpleSystemsManagement
public GetPatchBaselineResult getPatchBaseline(GetPatchBaselineRequest request)
AWSSimpleSystemsManagement
Retrieves information about a patch baseline.
getPatchBaseline
in interface AWSSimpleSystemsManagement
public GetPatchBaselineForPatchGroupResult getPatchBaselineForPatchGroup(GetPatchBaselineForPatchGroupRequest request)
AWSSimpleSystemsManagement
Retrieves the patch baseline that should be used for the specified patch group.
getPatchBaselineForPatchGroup
in interface AWSSimpleSystemsManagement
public ListAssociationVersionsResult listAssociationVersions(ListAssociationVersionsRequest request)
AWSSimpleSystemsManagement
Retrieves all versions of an association for a specific association ID.
listAssociationVersions
in interface AWSSimpleSystemsManagement
public ListAssociationsResult listAssociations(ListAssociationsRequest request)
AWSSimpleSystemsManagement
Lists the associations for the specified Systems Manager document or instance.
listAssociations
in interface AWSSimpleSystemsManagement
public ListCommandInvocationsResult listCommandInvocations(ListCommandInvocationsRequest request)
AWSSimpleSystemsManagement
An invocation is copy of a command sent to a specific instance. A command can apply to one or more instances. A command invocation applies to one instance. For example, if a user executes SendCommand against three instances, then a command invocation is created for each requested instance ID. ListCommandInvocations provide status about command execution.
listCommandInvocations
in interface AWSSimpleSystemsManagement
public ListCommandsResult listCommands(ListCommandsRequest request)
AWSSimpleSystemsManagement
Lists the commands requested by users of the AWS account.
listCommands
in interface AWSSimpleSystemsManagement
public ListComplianceItemsResult listComplianceItems(ListComplianceItemsRequest request)
AWSSimpleSystemsManagement
For a specified resource ID, this API action 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.
listComplianceItems
in interface AWSSimpleSystemsManagement
public ListComplianceSummariesResult listComplianceSummaries(ListComplianceSummariesRequest request)
AWSSimpleSystemsManagement
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.
listComplianceSummaries
in interface AWSSimpleSystemsManagement
public ListDocumentVersionsResult listDocumentVersions(ListDocumentVersionsRequest request)
AWSSimpleSystemsManagement
List all versions for a document.
listDocumentVersions
in interface AWSSimpleSystemsManagement
public ListDocumentsResult listDocuments(ListDocumentsRequest request)
AWSSimpleSystemsManagement
Describes one or more of your Systems Manager documents.
listDocuments
in interface AWSSimpleSystemsManagement
public ListDocumentsResult listDocuments()
AWSSimpleSystemsManagement
listDocuments
in interface AWSSimpleSystemsManagement
AWSSimpleSystemsManagement.listDocuments(ListDocumentsRequest)
public ListInventoryEntriesResult listInventoryEntries(ListInventoryEntriesRequest request)
AWSSimpleSystemsManagement
A list of inventory items returned by the request.
listInventoryEntries
in interface AWSSimpleSystemsManagement
public ListResourceComplianceSummariesResult listResourceComplianceSummaries(ListResourceComplianceSummariesRequest request)
AWSSimpleSystemsManagement
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.
listResourceComplianceSummaries
in interface AWSSimpleSystemsManagement
public ListResourceDataSyncResult listResourceDataSync(ListResourceDataSyncRequest request)
AWSSimpleSystemsManagement
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.
listResourceDataSync
in interface AWSSimpleSystemsManagement
public ListTagsForResourceResult listTagsForResource(ListTagsForResourceRequest request)
AWSSimpleSystemsManagement
Returns a list of the tags assigned to the specified resource.
listTagsForResource
in interface AWSSimpleSystemsManagement
public ModifyDocumentPermissionResult modifyDocumentPermission(ModifyDocumentPermissionRequest request)
AWSSimpleSystemsManagement
Shares a Systems Manager document publicly or privately. If you share a document privately, you must specify the AWS user account IDs for those people who can use the document. If you share a document publicly, you must specify All as the account ID.
modifyDocumentPermission
in interface AWSSimpleSystemsManagement
public PutComplianceItemsResult putComplianceItems(PutComplianceItemsRequest request)
AWSSimpleSystemsManagement
Registers a compliance type and other compliance details on a designated resource. This action 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.
putComplianceItems
in interface AWSSimpleSystemsManagement
public PutInventoryResult putInventory(PutInventoryRequest request)
AWSSimpleSystemsManagement
Bulk update custom inventory items on one more instance. The request adds an inventory item, if it doesn't already exist, or updates an inventory item, if it does exist.
putInventory
in interface AWSSimpleSystemsManagement
public PutParameterResult putParameter(PutParameterRequest request)
AWSSimpleSystemsManagement
Add one or more parameters to the system.
putParameter
in interface AWSSimpleSystemsManagement
public RegisterDefaultPatchBaselineResult registerDefaultPatchBaseline(RegisterDefaultPatchBaselineRequest request)
AWSSimpleSystemsManagement
Defines the default patch baseline.
registerDefaultPatchBaseline
in interface AWSSimpleSystemsManagement
public RegisterPatchBaselineForPatchGroupResult registerPatchBaselineForPatchGroup(RegisterPatchBaselineForPatchGroupRequest request)
AWSSimpleSystemsManagement
Registers a patch baseline for a patch group.
registerPatchBaselineForPatchGroup
in interface AWSSimpleSystemsManagement
public RegisterTargetWithMaintenanceWindowResult registerTargetWithMaintenanceWindow(RegisterTargetWithMaintenanceWindowRequest request)
AWSSimpleSystemsManagement
Registers a target with a Maintenance Window.
registerTargetWithMaintenanceWindow
in interface AWSSimpleSystemsManagement
public RegisterTaskWithMaintenanceWindowResult registerTaskWithMaintenanceWindow(RegisterTaskWithMaintenanceWindowRequest request)
AWSSimpleSystemsManagement
Adds a new task to a Maintenance Window.
registerTaskWithMaintenanceWindow
in interface AWSSimpleSystemsManagement
public RemoveTagsFromResourceResult removeTagsFromResource(RemoveTagsFromResourceRequest request)
AWSSimpleSystemsManagement
Removes all tags from the specified resource.
removeTagsFromResource
in interface AWSSimpleSystemsManagement
public SendAutomationSignalResult sendAutomationSignal(SendAutomationSignalRequest request)
AWSSimpleSystemsManagement
Sends a signal to an Automation execution to change the current behavior or status of the execution.
sendAutomationSignal
in interface AWSSimpleSystemsManagement
public SendCommandResult sendCommand(SendCommandRequest request)
AWSSimpleSystemsManagement
Executes commands on one or more managed instances.
sendCommand
in interface AWSSimpleSystemsManagement
public StartAutomationExecutionResult startAutomationExecution(StartAutomationExecutionRequest request)
AWSSimpleSystemsManagement
Initiates execution of an Automation document.
startAutomationExecution
in interface AWSSimpleSystemsManagement
public StopAutomationExecutionResult stopAutomationExecution(StopAutomationExecutionRequest request)
AWSSimpleSystemsManagement
Stop an Automation that is currently executing.
stopAutomationExecution
in interface AWSSimpleSystemsManagement
public UpdateAssociationResult updateAssociation(UpdateAssociationRequest request)
AWSSimpleSystemsManagement
Updates an association. You can update the association name and version, the document version, schedule, parameters, and Amazon S3 output.
updateAssociation
in interface AWSSimpleSystemsManagement
public UpdateAssociationStatusResult updateAssociationStatus(UpdateAssociationStatusRequest request)
AWSSimpleSystemsManagement
Updates the status of the Systems Manager document associated with the specified instance.
updateAssociationStatus
in interface AWSSimpleSystemsManagement
public UpdateDocumentResult updateDocument(UpdateDocumentRequest request)
AWSSimpleSystemsManagement
The document you want to update.
updateDocument
in interface AWSSimpleSystemsManagement
public UpdateDocumentDefaultVersionResult updateDocumentDefaultVersion(UpdateDocumentDefaultVersionRequest request)
AWSSimpleSystemsManagement
Set the default version of a document.
updateDocumentDefaultVersion
in interface AWSSimpleSystemsManagement
public UpdateMaintenanceWindowResult updateMaintenanceWindow(UpdateMaintenanceWindowRequest request)
AWSSimpleSystemsManagement
Updates an existing Maintenance Window. Only specified parameters are modified.
updateMaintenanceWindow
in interface AWSSimpleSystemsManagement
public UpdateMaintenanceWindowTargetResult updateMaintenanceWindowTarget(UpdateMaintenanceWindowTargetRequest request)
AWSSimpleSystemsManagement
Modifies the target of an existing Maintenance Window. You can't change the target type, but you can change the following:
The target from being an ID target to a Tag target, or a Tag target to an ID target.
IDs for an ID target.
Tags for a Tag target.
Owner.
Name.
Description.
If a parameter is null, then the corresponding field is not modified.
updateMaintenanceWindowTarget
in interface AWSSimpleSystemsManagement
public UpdateMaintenanceWindowTaskResult updateMaintenanceWindowTask(UpdateMaintenanceWindowTaskRequest request)
AWSSimpleSystemsManagement
Modifies a task assigned to a Maintenance Window. You can't change the task type, but you can change the following values:
Task ARN. For example, you can change a RUN_COMMAND task from AWS-RunPowerShellScript to AWS-RunShellScript.
Service role ARN.
Task parameters.
Task priority.
Task MaxConcurrency and MaxErrors.
Log location.
If a parameter is null, then the corresponding field is not modified. Also, if you set Replace to true, then all fields required by the RegisterTaskWithMaintenanceWindow action are required for this request. Optional fields that aren't specified are set to null.
updateMaintenanceWindowTask
in interface AWSSimpleSystemsManagement
public UpdateManagedInstanceRoleResult updateManagedInstanceRole(UpdateManagedInstanceRoleRequest request)
AWSSimpleSystemsManagement
Assigns or changes an Amazon Identity and Access Management (IAM) role to the managed instance.
updateManagedInstanceRole
in interface AWSSimpleSystemsManagement
public UpdatePatchBaselineResult updatePatchBaseline(UpdatePatchBaselineRequest request)
AWSSimpleSystemsManagement
Modifies an existing patch baseline. Fields not specified in the request are left unchanged.
updatePatchBaseline
in interface AWSSimpleSystemsManagement
public void shutdown()
AWSSimpleSystemsManagement
shutdown
in interface AWSSimpleSystemsManagement
public ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request)
AWSSimpleSystemsManagement
Response metadata is only cached for a limited period of time, so if you need to access this extra diagnostic information for an executed request, you should use this method to retrieve it as soon as possible after executing a request.
getCachedResponseMetadata
in interface AWSSimpleSystemsManagement
request
- The originally executed request.Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.