[][src]Struct rusoto_ssm::SsmClient

pub struct SsmClient { /* fields omitted */ }

A client for the Amazon SSM API.

Methods

impl SsmClient[src]

pub fn new(region: Region) -> SsmClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> SsmClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    P::Future: Send,
    D: DispatchSignedRequest + Send + Sync + 'static,
    D::Future: Send
[src]

pub fn new_with_client(client: Client, region: Region) -> SsmClient[src]

Trait Implementations

impl Ssm for SsmClient[src]

fn add_tags_to_resource(
    &self,
    input: AddTagsToResourceRequest
) -> RusotoFuture<AddTagsToResourceResult, AddTagsToResourceError>
[src]

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 50 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.

fn cancel_command(
    &self,
    input: CancelCommandRequest
) -> RusotoFuture<CancelCommandResult, CancelCommandError>
[src]

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.

fn cancel_maintenance_window_execution(
    &self,
    input: CancelMaintenanceWindowExecutionRequest
) -> RusotoFuture<CancelMaintenanceWindowExecutionResult, CancelMaintenanceWindowExecutionError>
[src]

Stops a maintenance window execution that is already in progress and cancels any tasks in the window that have not already starting running. (Tasks already in progress will continue to completion.)

fn create_activation(
    &self,
    input: CreateActivationRequest
) -> RusotoFuture<CreateActivationResult, CreateActivationError>
[src]

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 AWS Systems Manager for Hybrid Environments.

fn create_association(
    &self,
    input: CreateAssociationRequest
) -> RusotoFuture<CreateAssociationResult, CreateAssociationError>
[src]

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, 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 returns the AssociationAlreadyExists exception.

fn create_association_batch(
    &self,
    input: CreateAssociationBatchRequest
) -> RusotoFuture<CreateAssociationBatchResult, CreateAssociationBatchError>
[src]

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, 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 returns the AssociationAlreadyExists exception.

fn create_document(
    &self,
    input: CreateDocumentRequest
) -> RusotoFuture<CreateDocumentResult, CreateDocumentError>
[src]

Creates a Systems Manager document.

After you create a document, you can use CreateAssociation to associate it with one or more running instances.

fn create_maintenance_window(
    &self,
    input: CreateMaintenanceWindowRequest
) -> RusotoFuture<CreateMaintenanceWindowResult, CreateMaintenanceWindowError>
[src]

Creates a new maintenance window.

fn create_ops_item(
    &self,
    input: CreateOpsItemRequest
) -> RusotoFuture<CreateOpsItemResponse, CreateOpsItemError>
[src]

Creates a new OpsItem. You must have permission in AWS Identity and Access Management (IAM) to create a new OpsItem. For more information, see Getting Started with OpsCenter in the AWS Systems Manager User Guide.

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

fn create_patch_baseline(
    &self,
    input: CreatePatchBaselineRequest
) -> RusotoFuture<CreatePatchBaselineResult, CreatePatchBaselineError>
[src]

Creates a patch baseline.

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

fn create_resource_data_sync(
    &self,
    input: CreateResourceDataSyncRequest
) -> RusotoFuture<CreateResourceDataSyncResult, CreateResourceDataSyncError>
[src]

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.

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. For more information, see Configuring Resource Data Sync for Inventory in the AWS Systems Manager User Guide.

fn delete_activation(
    &self,
    input: DeleteActivationRequest
) -> RusotoFuture<DeleteActivationResult, DeleteActivationError>
[src]

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.

fn delete_association(
    &self,
    input: DeleteAssociationRequest
) -> RusotoFuture<DeleteAssociationResult, DeleteAssociationError>
[src]

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.

fn delete_document(
    &self,
    input: DeleteDocumentRequest
) -> RusotoFuture<DeleteDocumentResult, DeleteDocumentError>
[src]

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.

fn delete_inventory(
    &self,
    input: DeleteInventoryRequest
) -> RusotoFuture<DeleteInventoryResult, DeleteInventoryError>
[src]

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.

fn delete_maintenance_window(
    &self,
    input: DeleteMaintenanceWindowRequest
) -> RusotoFuture<DeleteMaintenanceWindowResult, DeleteMaintenanceWindowError>
[src]

Deletes a maintenance window.

fn delete_parameter(
    &self,
    input: DeleteParameterRequest
) -> RusotoFuture<DeleteParameterResult, DeleteParameterError>
[src]

Delete a parameter from the system.

fn delete_parameters(
    &self,
    input: DeleteParametersRequest
) -> RusotoFuture<DeleteParametersResult, DeleteParametersError>
[src]

Delete a list of parameters.

fn delete_patch_baseline(
    &self,
    input: DeletePatchBaselineRequest
) -> RusotoFuture<DeletePatchBaselineResult, DeletePatchBaselineError>
[src]

Deletes a patch baseline.

fn delete_resource_data_sync(
    &self,
    input: DeleteResourceDataSyncRequest
) -> RusotoFuture<DeleteResourceDataSyncResult, DeleteResourceDataSyncError>
[src]

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.

fn deregister_managed_instance(
    &self,
    input: DeregisterManagedInstanceRequest
) -> RusotoFuture<DeregisterManagedInstanceResult, DeregisterManagedInstanceError>
[src]

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 SSM Agent first.

fn deregister_patch_baseline_for_patch_group(
    &self,
    input: DeregisterPatchBaselineForPatchGroupRequest
) -> RusotoFuture<DeregisterPatchBaselineForPatchGroupResult, DeregisterPatchBaselineForPatchGroupError>
[src]

Removes a patch group from a patch baseline.

fn deregister_target_from_maintenance_window(
    &self,
    input: DeregisterTargetFromMaintenanceWindowRequest
) -> RusotoFuture<DeregisterTargetFromMaintenanceWindowResult, DeregisterTargetFromMaintenanceWindowError>
[src]

Removes a target from a maintenance window.

fn deregister_task_from_maintenance_window(
    &self,
    input: DeregisterTaskFromMaintenanceWindowRequest
) -> RusotoFuture<DeregisterTaskFromMaintenanceWindowResult, DeregisterTaskFromMaintenanceWindowError>
[src]

Removes a task from a maintenance window.

fn describe_activations(
    &self,
    input: DescribeActivationsRequest
) -> RusotoFuture<DescribeActivationsResult, DescribeActivationsError>
[src]

Describes details about the activation, such as the date and time the activation was created, its expiration date, the IAM role assigned to the instances in the activation, and the number of instances registered by using this activation.

fn describe_association(
    &self,
    input: DescribeAssociationRequest
) -> RusotoFuture<DescribeAssociationResult, DescribeAssociationError>
[src]

Describes the association for the specified target or instance. If you created the association by using the Targets parameter, then you must retrieve the association by using the association ID. If you created the association by specifying an instance ID and a Systems Manager document, then you retrieve the association by specifying the document name and the instance ID.

fn describe_association_execution_targets(
    &self,
    input: DescribeAssociationExecutionTargetsRequest
) -> RusotoFuture<DescribeAssociationExecutionTargetsResult, DescribeAssociationExecutionTargetsError>
[src]

Use this API action to view information about a specific execution of a specific association.

fn describe_association_executions(
    &self,
    input: DescribeAssociationExecutionsRequest
) -> RusotoFuture<DescribeAssociationExecutionsResult, DescribeAssociationExecutionsError>
[src]

Use this API action to view all executions for a specific association ID.

fn describe_automation_executions(
    &self,
    input: DescribeAutomationExecutionsRequest
) -> RusotoFuture<DescribeAutomationExecutionsResult, DescribeAutomationExecutionsError>
[src]

Provides details about all active and terminated Automation executions.

fn describe_automation_step_executions(
    &self,
    input: DescribeAutomationStepExecutionsRequest
) -> RusotoFuture<DescribeAutomationStepExecutionsResult, DescribeAutomationStepExecutionsError>
[src]

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

fn describe_available_patches(
    &self,
    input: DescribeAvailablePatchesRequest
) -> RusotoFuture<DescribeAvailablePatchesResult, DescribeAvailablePatchesError>
[src]

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

fn describe_document(
    &self,
    input: DescribeDocumentRequest
) -> RusotoFuture<DescribeDocumentResult, DescribeDocumentError>
[src]

Describes the specified Systems Manager document.

fn describe_document_permission(
    &self,
    input: DescribeDocumentPermissionRequest
) -> RusotoFuture<DescribeDocumentPermissionResponse, DescribeDocumentPermissionError>
[src]

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).

fn describe_effective_instance_associations(
    &self,
    input: DescribeEffectiveInstanceAssociationsRequest
) -> RusotoFuture<DescribeEffectiveInstanceAssociationsResult, DescribeEffectiveInstanceAssociationsError>
[src]

All associations for the instance(s).

fn describe_effective_patches_for_patch_baseline(
    &self,
    input: DescribeEffectivePatchesForPatchBaselineRequest
) -> RusotoFuture<DescribeEffectivePatchesForPatchBaselineResult, DescribeEffectivePatchesForPatchBaselineError>
[src]

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.

fn describe_instance_associations_status(
    &self,
    input: DescribeInstanceAssociationsStatusRequest
) -> RusotoFuture<DescribeInstanceAssociationsStatusResult, DescribeInstanceAssociationsStatusError>
[src]

The status of the associations for the instance(s).

fn describe_instance_information(
    &self,
    input: DescribeInstanceInformationRequest
) -> RusotoFuture<DescribeInstanceInformationResult, DescribeInstanceInformationError>
[src]

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.

The IamRole field for this API action is the Amazon Identity and Access Management (IAM) role assigned to on-premises instances. This call does not return the IAM role for Amazon EC2 instances.

fn describe_instance_patch_states(
    &self,
    input: DescribeInstancePatchStatesRequest
) -> RusotoFuture<DescribeInstancePatchStatesResult, DescribeInstancePatchStatesError>
[src]

Retrieves the high-level patch state of one or more instances.

fn describe_instance_patch_states_for_patch_group(
    &self,
    input: DescribeInstancePatchStatesForPatchGroupRequest
) -> RusotoFuture<DescribeInstancePatchStatesForPatchGroupResult, DescribeInstancePatchStatesForPatchGroupError>
[src]

Retrieves the high-level patch state for the instances in the specified patch group.

fn describe_instance_patches(
    &self,
    input: DescribeInstancePatchesRequest
) -> RusotoFuture<DescribeInstancePatchesResult, DescribeInstancePatchesError>
[src]

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

fn describe_inventory_deletions(
    &self,
    input: DescribeInventoryDeletionsRequest
) -> RusotoFuture<DescribeInventoryDeletionsResult, DescribeInventoryDeletionsError>
[src]

Describes a specific delete inventory operation.

fn describe_maintenance_window_execution_task_invocations(
    &self,
    input: DescribeMaintenanceWindowExecutionTaskInvocationsRequest
) -> RusotoFuture<DescribeMaintenanceWindowExecutionTaskInvocationsResult, DescribeMaintenanceWindowExecutionTaskInvocationsError>
[src]

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

fn describe_maintenance_window_execution_tasks(
    &self,
    input: DescribeMaintenanceWindowExecutionTasksRequest
) -> RusotoFuture<DescribeMaintenanceWindowExecutionTasksResult, DescribeMaintenanceWindowExecutionTasksError>
[src]

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

fn describe_maintenance_window_executions(
    &self,
    input: DescribeMaintenanceWindowExecutionsRequest
) -> RusotoFuture<DescribeMaintenanceWindowExecutionsResult, DescribeMaintenanceWindowExecutionsError>
[src]

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.

fn describe_maintenance_window_schedule(
    &self,
    input: DescribeMaintenanceWindowScheduleRequest
) -> RusotoFuture<DescribeMaintenanceWindowScheduleResult, DescribeMaintenanceWindowScheduleError>
[src]

Retrieves information about upcoming executions of a maintenance window.

fn describe_maintenance_window_targets(
    &self,
    input: DescribeMaintenanceWindowTargetsRequest
) -> RusotoFuture<DescribeMaintenanceWindowTargetsResult, DescribeMaintenanceWindowTargetsError>
[src]

Lists the targets registered with the maintenance window.

fn describe_maintenance_window_tasks(
    &self,
    input: DescribeMaintenanceWindowTasksRequest
) -> RusotoFuture<DescribeMaintenanceWindowTasksResult, DescribeMaintenanceWindowTasksError>
[src]

Lists the tasks in a maintenance window.

fn describe_maintenance_windows(
    &self,
    input: DescribeMaintenanceWindowsRequest
) -> RusotoFuture<DescribeMaintenanceWindowsResult, DescribeMaintenanceWindowsError>
[src]

Retrieves the maintenance windows in an AWS account.

fn describe_maintenance_windows_for_target(
    &self,
    input: DescribeMaintenanceWindowsForTargetRequest
) -> RusotoFuture<DescribeMaintenanceWindowsForTargetResult, DescribeMaintenanceWindowsForTargetError>
[src]

Retrieves information about the maintenance window targets or tasks that an instance is associated with.

fn describe_ops_items(
    &self,
    input: DescribeOpsItemsRequest
) -> RusotoFuture<DescribeOpsItemsResponse, DescribeOpsItemsError>
[src]

Query a set of OpsItems. You must have permission in AWS Identity and Access Management (IAM) to query a list of OpsItems. For more information, see Getting Started with OpsCenter in the AWS Systems Manager User Guide.

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

fn describe_parameters(
    &self,
    input: DescribeParametersRequest
) -> RusotoFuture<DescribeParametersResult, DescribeParametersError>
[src]

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.

fn describe_patch_baselines(
    &self,
    input: DescribePatchBaselinesRequest
) -> RusotoFuture<DescribePatchBaselinesResult, DescribePatchBaselinesError>
[src]

Lists the patch baselines in your AWS account.

fn describe_patch_group_state(
    &self,
    input: DescribePatchGroupStateRequest
) -> RusotoFuture<DescribePatchGroupStateResult, DescribePatchGroupStateError>
[src]

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

fn describe_patch_groups(
    &self,
    input: DescribePatchGroupsRequest
) -> RusotoFuture<DescribePatchGroupsResult, DescribePatchGroupsError>
[src]

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

fn describe_patch_properties(
    &self,
    input: DescribePatchPropertiesRequest
) -> RusotoFuture<DescribePatchPropertiesResult, DescribePatchPropertiesError>
[src]

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 actions 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:

WINDOWS

Valid properties: PRODUCT, PRODUCTFAMILY, CLASSIFICATION, MSRCSEVERITY

AMAZONLINUX

Valid properties: PRODUCT, CLASSIFICATION, SEVERITY

AMAZONLINUX2

Valid properties: PRODUCT, CLASSIFICATION, SEVERITY

UBUNTU

Valid properties: PRODUCT, PRIORITY

REDHATENTERPRISE_LINUX

Valid properties: PRODUCT, CLASSIFICATION, SEVERITY

SUSE

Valid properties: PRODUCT, CLASSIFICATION, SEVERITY

CENTOS

Valid properties: PRODUCT, CLASSIFICATION, SEVERITY

fn describe_sessions(
    &self,
    input: DescribeSessionsRequest
) -> RusotoFuture<DescribeSessionsResponse, DescribeSessionsError>
[src]

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

fn get_automation_execution(
    &self,
    input: GetAutomationExecutionRequest
) -> RusotoFuture<GetAutomationExecutionResult, GetAutomationExecutionError>
[src]

Get detailed information about a particular Automation execution.

fn get_command_invocation(
    &self,
    input: GetCommandInvocationRequest
) -> RusotoFuture<GetCommandInvocationResult, GetCommandInvocationError>
[src]

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

fn get_connection_status(
    &self,
    input: GetConnectionStatusRequest
) -> RusotoFuture<GetConnectionStatusResponse, GetConnectionStatusError>
[src]

Retrieves the Session Manager connection status for an instance to determine whether it is connected and ready to receive Session Manager connections.

fn get_default_patch_baseline(
    &self,
    input: GetDefaultPatchBaselineRequest
) -> RusotoFuture<GetDefaultPatchBaselineResult, GetDefaultPatchBaselineError>
[src]

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.

If you do not specify an operating system value, the default patch baseline for Windows is returned.

fn get_deployable_patch_snapshot_for_instance(
    &self,
    input: GetDeployablePatchSnapshotForInstanceRequest
) -> RusotoFuture<GetDeployablePatchSnapshotForInstanceResult, GetDeployablePatchSnapshotForInstanceError>
[src]

Retrieves the current snapshot for the patch baseline the instance uses. This API is primarily used by the AWS-RunPatchBaseline Systems Manager document.

fn get_document(
    &self,
    input: GetDocumentRequest
) -> RusotoFuture<GetDocumentResult, GetDocumentError>
[src]

Gets the contents of the specified Systems Manager document.

fn get_inventory(
    &self,
    input: GetInventoryRequest
) -> RusotoFuture<GetInventoryResult, GetInventoryError>
[src]

Query inventory information.

fn get_inventory_schema(
    &self,
    input: GetInventorySchemaRequest
) -> RusotoFuture<GetInventorySchemaResult, GetInventorySchemaError>
[src]

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

fn get_maintenance_window(
    &self,
    input: GetMaintenanceWindowRequest
) -> RusotoFuture<GetMaintenanceWindowResult, GetMaintenanceWindowError>
[src]

Retrieves a maintenance window.

fn get_maintenance_window_execution(
    &self,
    input: GetMaintenanceWindowExecutionRequest
) -> RusotoFuture<GetMaintenanceWindowExecutionResult, GetMaintenanceWindowExecutionError>
[src]

Retrieves details about a specific a maintenance window execution.

fn get_maintenance_window_execution_task(
    &self,
    input: GetMaintenanceWindowExecutionTaskRequest
) -> RusotoFuture<GetMaintenanceWindowExecutionTaskResult, GetMaintenanceWindowExecutionTaskError>
[src]

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

fn get_maintenance_window_execution_task_invocation(
    &self,
    input: GetMaintenanceWindowExecutionTaskInvocationRequest
) -> RusotoFuture<GetMaintenanceWindowExecutionTaskInvocationResult, GetMaintenanceWindowExecutionTaskInvocationError>
[src]

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

fn get_maintenance_window_task(
    &self,
    input: GetMaintenanceWindowTaskRequest
) -> RusotoFuture<GetMaintenanceWindowTaskResult, GetMaintenanceWindowTaskError>
[src]

Lists the tasks in a maintenance window.

fn get_ops_item(
    &self,
    input: GetOpsItemRequest
) -> RusotoFuture<GetOpsItemResponse, GetOpsItemError>
[src]

Get information about an OpsItem by using the ID. You must have permission in AWS Identity and Access Management (IAM) to view information about an OpsItem. For more information, see Getting Started with OpsCenter in the AWS Systems Manager User Guide.

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

fn get_ops_summary(
    &self,
    input: GetOpsSummaryRequest
) -> RusotoFuture<GetOpsSummaryResult, GetOpsSummaryError>
[src]

View a summary of OpsItems based on specified filters and aggregators.

fn get_parameter(
    &self,
    input: GetParameterRequest
) -> RusotoFuture<GetParameterResult, GetParameterError>
[src]

Get information about a parameter by using the parameter name. Don't confuse this API action with the GetParameters API action.

fn get_parameter_history(
    &self,
    input: GetParameterHistoryRequest
) -> RusotoFuture<GetParameterHistoryResult, GetParameterHistoryError>
[src]

Query a list of all parameters used by the AWS account.

fn get_parameters(
    &self,
    input: GetParametersRequest
) -> RusotoFuture<GetParametersResult, GetParametersError>
[src]

Get details of a parameter. Don't confuse this API action with the GetParameter API action.

fn get_parameters_by_path(
    &self,
    input: GetParametersByPathRequest
) -> RusotoFuture<GetParametersByPathResult, GetParametersByPathError>
[src]

Retrieve parameters in a specific hierarchy. For more information, see Working with Systems Manager Parameters in the AWS Systems Manager User Guide.

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.

This API action doesn't support filtering by tags.

fn get_patch_baseline(
    &self,
    input: GetPatchBaselineRequest
) -> RusotoFuture<GetPatchBaselineResult, GetPatchBaselineError>
[src]

Retrieves information about a patch baseline.

fn get_patch_baseline_for_patch_group(
    &self,
    input: GetPatchBaselineForPatchGroupRequest
) -> RusotoFuture<GetPatchBaselineForPatchGroupResult, GetPatchBaselineForPatchGroupError>
[src]

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

fn get_service_setting(
    &self,
    input: GetServiceSettingRequest
) -> RusotoFuture<GetServiceSettingResult, GetServiceSettingError>
[src]

ServiceSetting is an account-level setting for an AWS service. This setting defines how a user interacts with or uses a service or a feature of a service. For example, if an AWS service charges money to the account based on feature or service usage, then the AWS 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. AWS 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 action to change the default setting. Or use the ResetServiceSetting to change the value back to the original value defined by the AWS service team.

Query the current service setting for the account.

fn label_parameter_version(
    &self,
    input: LabelParameterVersionRequest
) -> RusotoFuture<LabelParameterVersionResult, LabelParameterVersionError>
[src]

A parameter label is a user-defined alias to help you manage different versions of a parameter. When you modify a parameter, 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.

  • You can't delete a parameter label. If you no longer want to use a parameter label, then you must 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 is not associated with a parameter and the system displays it in the list of InvalidLabels.

fn list_association_versions(
    &self,
    input: ListAssociationVersionsRequest
) -> RusotoFuture<ListAssociationVersionsResult, ListAssociationVersionsError>
[src]

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

fn list_associations(
    &self,
    input: ListAssociationsRequest
) -> RusotoFuture<ListAssociationsResult, ListAssociationsError>
[src]

Lists the associations for the specified Systems Manager document or instance.

fn list_command_invocations(
    &self,
    input: ListCommandInvocationsRequest
) -> RusotoFuture<ListCommandInvocationsResult, ListCommandInvocationsError>
[src]

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 runs SendCommand against three instances, then a command invocation is created for each requested instance ID. ListCommandInvocations provide status about command execution.

fn list_commands(
    &self,
    input: ListCommandsRequest
) -> RusotoFuture<ListCommandsResult, ListCommandsError>
[src]

Lists the commands requested by users of the AWS account.

fn list_compliance_items(
    &self,
    input: ListComplianceItemsRequest
) -> RusotoFuture<ListComplianceItemsResult, ListComplianceItemsError>
[src]

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.

fn list_compliance_summaries(
    &self,
    input: ListComplianceSummariesRequest
) -> RusotoFuture<ListComplianceSummariesResult, ListComplianceSummariesError>
[src]

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.

fn list_document_versions(
    &self,
    input: ListDocumentVersionsRequest
) -> RusotoFuture<ListDocumentVersionsResult, ListDocumentVersionsError>
[src]

List all versions for a document.

fn list_documents(
    &self,
    input: ListDocumentsRequest
) -> RusotoFuture<ListDocumentsResult, ListDocumentsError>
[src]

Describes one or more of your Systems Manager documents.

fn list_inventory_entries(
    &self,
    input: ListInventoryEntriesRequest
) -> RusotoFuture<ListInventoryEntriesResult, ListInventoryEntriesError>
[src]

A list of inventory items returned by the request.

fn list_resource_compliance_summaries(
    &self,
    input: ListResourceComplianceSummariesRequest
) -> RusotoFuture<ListResourceComplianceSummariesResult, ListResourceComplianceSummariesError>
[src]

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.

fn list_resource_data_sync(
    &self,
    input: ListResourceDataSyncRequest
) -> RusotoFuture<ListResourceDataSyncResult, ListResourceDataSyncError>
[src]

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.

fn list_tags_for_resource(
    &self,
    input: ListTagsForResourceRequest
) -> RusotoFuture<ListTagsForResourceResult, ListTagsForResourceError>
[src]

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

fn modify_document_permission(
    &self,
    input: ModifyDocumentPermissionRequest
) -> RusotoFuture<ModifyDocumentPermissionResponse, ModifyDocumentPermissionError>
[src]

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.

fn put_compliance_items(
    &self,
    input: PutComplianceItemsRequest
) -> RusotoFuture<PutComplianceItemsResult, PutComplianceItemsError>
[src]

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.

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 instance.

  • 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: A 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'

fn put_inventory(
    &self,
    input: PutInventoryRequest
) -> RusotoFuture<PutInventoryResult, PutInventoryError>
[src]

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.

fn put_parameter(
    &self,
    input: PutParameterRequest
) -> RusotoFuture<PutParameterResult, PutParameterError>
[src]

Add a parameter to the system.

fn register_default_patch_baseline(
    &self,
    input: RegisterDefaultPatchBaselineRequest
) -> RusotoFuture<RegisterDefaultPatchBaselineResult, RegisterDefaultPatchBaselineError>
[src]

Defines the default patch baseline for the relevant operating system.

To reset the AWS predefined patch baseline as the default, specify the full patch baseline 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.

fn register_patch_baseline_for_patch_group(
    &self,
    input: RegisterPatchBaselineForPatchGroupRequest
) -> RusotoFuture<RegisterPatchBaselineForPatchGroupResult, RegisterPatchBaselineForPatchGroupError>
[src]

Registers a patch baseline for a patch group.

fn register_target_with_maintenance_window(
    &self,
    input: RegisterTargetWithMaintenanceWindowRequest
) -> RusotoFuture<RegisterTargetWithMaintenanceWindowResult, RegisterTargetWithMaintenanceWindowError>
[src]

Registers a target with a maintenance window.

fn register_task_with_maintenance_window(
    &self,
    input: RegisterTaskWithMaintenanceWindowRequest
) -> RusotoFuture<RegisterTaskWithMaintenanceWindowResult, RegisterTaskWithMaintenanceWindowError>
[src]

Adds a new task to a maintenance window.

fn remove_tags_from_resource(
    &self,
    input: RemoveTagsFromResourceRequest
) -> RusotoFuture<RemoveTagsFromResourceResult, RemoveTagsFromResourceError>
[src]

Removes tag keys from the specified resource.

fn reset_service_setting(
    &self,
    input: ResetServiceSettingRequest
) -> RusotoFuture<ResetServiceSettingResult, ResetServiceSettingError>
[src]

ServiceSetting is an account-level setting for an AWS service. This setting defines how a user interacts with or uses a service or a feature of a service. For example, if an AWS service charges money to the account based on feature or service usage, then the AWS 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. AWS 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 action to view the current value. Use the UpdateServiceSetting API action to change the default setting.

Reset the service setting for the account to the default value as provisioned by the AWS service team.

fn resume_session(
    &self,
    input: ResumeSessionRequest
) -> RusotoFuture<ResumeSessionResponse, ResumeSessionError>
[src]

Reconnects a session to an instance 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 is not intended for any other use.

fn send_automation_signal(
    &self,
    input: SendAutomationSignalRequest
) -> RusotoFuture<SendAutomationSignalResult, SendAutomationSignalError>
[src]

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

fn send_command(
    &self,
    input: SendCommandRequest
) -> RusotoFuture<SendCommandResult, SendCommandError>
[src]

Runs commands on one or more managed instances.

fn start_associations_once(
    &self,
    input: StartAssociationsOnceRequest
) -> RusotoFuture<StartAssociationsOnceResult, StartAssociationsOnceError>
[src]

Use this API action to run an association immediately and only one time. This action can be helpful when troubleshooting associations.

fn start_automation_execution(
    &self,
    input: StartAutomationExecutionRequest
) -> RusotoFuture<StartAutomationExecutionResult, StartAutomationExecutionError>
[src]

Initiates execution of an Automation document.

fn start_session(
    &self,
    input: StartSessionRequest
) -> RusotoFuture<StartSessionResponse, StartSessionError>
[src]

Initiates a connection to a target (for example, an instance) 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.

AWS 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 AWS CLI in the AWS Systems Manager User Guide.

fn stop_automation_execution(
    &self,
    input: StopAutomationExecutionRequest
) -> RusotoFuture<StopAutomationExecutionResult, StopAutomationExecutionError>
[src]

Stop an Automation that is currently running.

fn terminate_session(
    &self,
    input: TerminateSessionRequest
) -> RusotoFuture<TerminateSessionResponse, TerminateSessionError>
[src]

Permanently ends a session and closes the data connection between the Session Manager client and SSM Agent on the instance. A terminated session cannot be resumed.

fn update_association(
    &self,
    input: UpdateAssociationRequest
) -> RusotoFuture<UpdateAssociationResult, UpdateAssociationError>
[src]

Updates an association. You can update the association name and version, the document version, schedule, parameters, and Amazon S3 output.

When you update an association, the association immediately runs against the specified targets.

fn update_association_status(
    &self,
    input: UpdateAssociationStatusRequest
) -> RusotoFuture<UpdateAssociationStatusResult, UpdateAssociationStatusError>
[src]

Updates the status of the Systems Manager document associated with the specified instance.

fn update_document(
    &self,
    input: UpdateDocumentRequest
) -> RusotoFuture<UpdateDocumentResult, UpdateDocumentError>
[src]

Updates one or more values for an SSM document.

fn update_document_default_version(
    &self,
    input: UpdateDocumentDefaultVersionRequest
) -> RusotoFuture<UpdateDocumentDefaultVersionResult, UpdateDocumentDefaultVersionError>
[src]

Set the default version of a document.

fn update_maintenance_window(
    &self,
    input: UpdateMaintenanceWindowRequest
) -> RusotoFuture<UpdateMaintenanceWindowResult, UpdateMaintenanceWindowError>
[src]

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

fn update_maintenance_window_target(
    &self,
    input: UpdateMaintenanceWindowTargetRequest
) -> RusotoFuture<UpdateMaintenanceWindowTargetResult, UpdateMaintenanceWindowTargetError>
[src]

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 is not modified.

fn update_maintenance_window_task(
    &self,
    input: UpdateMaintenanceWindowTaskRequest
) -> RusotoFuture<UpdateMaintenanceWindowTaskResult, UpdateMaintenanceWindowTaskError>
[src]

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

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.

fn update_managed_instance_role(
    &self,
    input: UpdateManagedInstanceRoleRequest
) -> RusotoFuture<UpdateManagedInstanceRoleResult, UpdateManagedInstanceRoleError>
[src]

Assigns or changes an Amazon Identity and Access Management (IAM) role for the managed instance.

fn update_ops_item(
    &self,
    input: UpdateOpsItemRequest
) -> RusotoFuture<UpdateOpsItemResponse, UpdateOpsItemError>
[src]

Edit or change an OpsItem. You must have permission in AWS Identity and Access Management (IAM) to update an OpsItem. For more information, see Getting Started with OpsCenter in the AWS Systems Manager User Guide.

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

fn update_patch_baseline(
    &self,
    input: UpdatePatchBaselineRequest
) -> RusotoFuture<UpdatePatchBaselineResult, UpdatePatchBaselineError>
[src]

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

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

fn update_service_setting(
    &self,
    input: UpdateServiceSettingRequest
) -> RusotoFuture<UpdateServiceSettingResult, UpdateServiceSettingError>
[src]

ServiceSetting is an account-level setting for an AWS service. This setting defines how a user interacts with or uses a service or a feature of a service. For example, if an AWS service charges money to the account based on feature or service usage, then the AWS 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. AWS 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 action to view the current value. Or, use the ResetServiceSetting to change the value back to the original value defined by the AWS service team.

Update the service setting for the account.

impl Clone for SsmClient[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self