aws-sdk-ssm 1.185.0 → 1.186.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +442 -7
- data/lib/aws-sdk-ssm/client_api.rb +246 -0
- data/lib/aws-sdk-ssm/errors.rb +37 -0
- data/lib/aws-sdk-ssm/types.rb +633 -12
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +116 -0
- data/sig/errors.rbs +7 -0
- data/sig/types.rbs +168 -0
- metadata +2 -2
    
        data/lib/aws-sdk-ssm/types.rb
    CHANGED
    
    | @@ -1433,6 +1433,55 @@ module Aws::SSM | |
| 1433 1433 | 
             
                  include Aws::Structure
         | 
| 1434 1434 | 
             
                end
         | 
| 1435 1435 |  | 
| 1436 | 
            +
                # Information about the optional inputs that can be specified for an
         | 
| 1437 | 
            +
                # automation execution preview.
         | 
| 1438 | 
            +
                #
         | 
| 1439 | 
            +
                # @!attribute [rw] parameters
         | 
| 1440 | 
            +
                #   Information about parameters that can be specified for the preview
         | 
| 1441 | 
            +
                #   operation.
         | 
| 1442 | 
            +
                #   @return [Hash<String,Array<String>>]
         | 
| 1443 | 
            +
                #
         | 
| 1444 | 
            +
                # @!attribute [rw] target_parameter_name
         | 
| 1445 | 
            +
                #   The name of the parameter used as the target resource for the
         | 
| 1446 | 
            +
                #   rate-controlled execution. Required if you specify targets.
         | 
| 1447 | 
            +
                #   @return [String]
         | 
| 1448 | 
            +
                #
         | 
| 1449 | 
            +
                # @!attribute [rw] targets
         | 
| 1450 | 
            +
                #   Information about the resources that would be included in the actual
         | 
| 1451 | 
            +
                #   runbook execution, if it were to be run. Both Targets and TargetMaps
         | 
| 1452 | 
            +
                #   can't be specified together.
         | 
| 1453 | 
            +
                #   @return [Array<Types::Target>]
         | 
| 1454 | 
            +
                #
         | 
| 1455 | 
            +
                # @!attribute [rw] target_maps
         | 
| 1456 | 
            +
                #   A key-value mapping of document parameters to target resources. Both
         | 
| 1457 | 
            +
                #   Targets and TargetMaps can't be specified together.
         | 
| 1458 | 
            +
                #   @return [Array<Hash<String,Array<String>>>]
         | 
| 1459 | 
            +
                #
         | 
| 1460 | 
            +
                # @!attribute [rw] target_locations
         | 
| 1461 | 
            +
                #   Information about the Amazon Web Services Regions and Amazon Web
         | 
| 1462 | 
            +
                #   Services accounts targeted by the Automation execution preview
         | 
| 1463 | 
            +
                #   operation.
         | 
| 1464 | 
            +
                #   @return [Array<Types::TargetLocation>]
         | 
| 1465 | 
            +
                #
         | 
| 1466 | 
            +
                # @!attribute [rw] target_locations_url
         | 
| 1467 | 
            +
                #   A publicly accessible URL for a file that contains the
         | 
| 1468 | 
            +
                #   `TargetLocations` body. Currently, only files in presigned Amazon S3
         | 
| 1469 | 
            +
                #   buckets are supported.
         | 
| 1470 | 
            +
                #   @return [String]
         | 
| 1471 | 
            +
                #
         | 
| 1472 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationExecutionInputs AWS API Documentation
         | 
| 1473 | 
            +
                #
         | 
| 1474 | 
            +
                class AutomationExecutionInputs < Struct.new(
         | 
| 1475 | 
            +
                  :parameters,
         | 
| 1476 | 
            +
                  :target_parameter_name,
         | 
| 1477 | 
            +
                  :targets,
         | 
| 1478 | 
            +
                  :target_maps,
         | 
| 1479 | 
            +
                  :target_locations,
         | 
| 1480 | 
            +
                  :target_locations_url)
         | 
| 1481 | 
            +
                  SENSITIVE = []
         | 
| 1482 | 
            +
                  include Aws::Structure
         | 
| 1483 | 
            +
                end
         | 
| 1484 | 
            +
             | 
| 1436 1485 | 
             
                # The number of simultaneously running Automation executions exceeded
         | 
| 1437 1486 | 
             
                # the allowable limit.
         | 
| 1438 1487 | 
             
                #
         | 
| @@ -1650,6 +1699,55 @@ module Aws::SSM | |
| 1650 1699 | 
             
                  include Aws::Structure
         | 
| 1651 1700 | 
             
                end
         | 
| 1652 1701 |  | 
| 1702 | 
            +
                # Information about the results of the execution preview.
         | 
| 1703 | 
            +
                #
         | 
| 1704 | 
            +
                # @!attribute [rw] step_previews
         | 
| 1705 | 
            +
                #   Information about the type of impact a runbook step would have on a
         | 
| 1706 | 
            +
                #   resource.
         | 
| 1707 | 
            +
                #
         | 
| 1708 | 
            +
                #   * `Mutating`: The runbook step would make changes to the targets
         | 
| 1709 | 
            +
                #     through actions that create, modify, or delete resources.
         | 
| 1710 | 
            +
                #
         | 
| 1711 | 
            +
                #   * `Non_Mutating`: The runbook step would retrieve data about
         | 
| 1712 | 
            +
                #     resources but not make changes to them. This category generally
         | 
| 1713 | 
            +
                #     includes `Describe*`, `List*`, `Get*`, and similar read-only API
         | 
| 1714 | 
            +
                #     actions.
         | 
| 1715 | 
            +
                #
         | 
| 1716 | 
            +
                #   * `Undetermined`: An undetermined step invokes executions performed
         | 
| 1717 | 
            +
                #     by another orchestration service like Lambda, Step Functions, or
         | 
| 1718 | 
            +
                #     Amazon Web Services Systems Manager Run Command. An undetermined
         | 
| 1719 | 
            +
                #     step might also call a third-party API. Systems Manager Automation
         | 
| 1720 | 
            +
                #     doesn't know the outcome of the orchestration processes or
         | 
| 1721 | 
            +
                #     third-party API executions, so the results of the steps are
         | 
| 1722 | 
            +
                #     undetermined.
         | 
| 1723 | 
            +
                #   @return [Hash<String,Integer>]
         | 
| 1724 | 
            +
                #
         | 
| 1725 | 
            +
                # @!attribute [rw] regions
         | 
| 1726 | 
            +
                #   Information about the Amazon Web Services Regions targeted by the
         | 
| 1727 | 
            +
                #   execution preview.
         | 
| 1728 | 
            +
                #   @return [Array<String>]
         | 
| 1729 | 
            +
                #
         | 
| 1730 | 
            +
                # @!attribute [rw] target_previews
         | 
| 1731 | 
            +
                #   Information that provides a preview of what the impact of running
         | 
| 1732 | 
            +
                #   the specified Automation runbook would be.
         | 
| 1733 | 
            +
                #   @return [Array<Types::TargetPreview>]
         | 
| 1734 | 
            +
                #
         | 
| 1735 | 
            +
                # @!attribute [rw] total_accounts
         | 
| 1736 | 
            +
                #   Information about the Amazon Web Services accounts that were
         | 
| 1737 | 
            +
                #   included in the execution preview.
         | 
| 1738 | 
            +
                #   @return [Integer]
         | 
| 1739 | 
            +
                #
         | 
| 1740 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationExecutionPreview AWS API Documentation
         | 
| 1741 | 
            +
                #
         | 
| 1742 | 
            +
                class AutomationExecutionPreview < Struct.new(
         | 
| 1743 | 
            +
                  :step_previews,
         | 
| 1744 | 
            +
                  :regions,
         | 
| 1745 | 
            +
                  :target_previews,
         | 
| 1746 | 
            +
                  :total_accounts)
         | 
| 1747 | 
            +
                  SENSITIVE = []
         | 
| 1748 | 
            +
                  include Aws::Structure
         | 
| 1749 | 
            +
                end
         | 
| 1750 | 
            +
             | 
| 1653 1751 | 
             
                # The specified step name and execution ID don't exist. Verify the
         | 
| 1654 1752 | 
             
                # information and try again.
         | 
| 1655 1753 | 
             
                #
         | 
| @@ -3847,6 +3945,11 @@ module Aws::SSM | |
| 3847 3945 | 
             
                #
         | 
| 3848 3946 | 
             
                # @!attribute [rw] global_filters
         | 
| 3849 3947 | 
             
                #   A set of global filters used to include patches in the baseline.
         | 
| 3948 | 
            +
                #
         | 
| 3949 | 
            +
                #   The `GlobalFilters` parameter can be configured only by using the
         | 
| 3950 | 
            +
                #   CLI or an Amazon Web Services SDK. It can't be configured from the
         | 
| 3951 | 
            +
                #   Patch Manager console, and its value isn't displayed in the
         | 
| 3952 | 
            +
                #   console.
         | 
| 3850 3953 | 
             
                #   @return [Types::PatchFilterGroup]
         | 
| 3851 3954 | 
             
                #
         | 
| 3852 3955 | 
             
                # @!attribute [rw] approval_rules
         | 
| @@ -7288,6 +7391,51 @@ module Aws::SSM | |
| 7288 7391 | 
             
                  include Aws::Structure
         | 
| 7289 7392 | 
             
                end
         | 
| 7290 7393 |  | 
| 7394 | 
            +
                # Information about the inputs for an execution preview.
         | 
| 7395 | 
            +
                #
         | 
| 7396 | 
            +
                # @note ExecutionInputs is a union - when making an API calls you must set exactly one of the members.
         | 
| 7397 | 
            +
                #
         | 
| 7398 | 
            +
                # @!attribute [rw] automation
         | 
| 7399 | 
            +
                #   Information about the optional inputs that can be specified for an
         | 
| 7400 | 
            +
                #   automation execution preview.
         | 
| 7401 | 
            +
                #   @return [Types::AutomationExecutionInputs]
         | 
| 7402 | 
            +
                #
         | 
| 7403 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ExecutionInputs AWS API Documentation
         | 
| 7404 | 
            +
                #
         | 
| 7405 | 
            +
                class ExecutionInputs < Struct.new(
         | 
| 7406 | 
            +
                  :automation,
         | 
| 7407 | 
            +
                  :unknown)
         | 
| 7408 | 
            +
                  SENSITIVE = []
         | 
| 7409 | 
            +
                  include Aws::Structure
         | 
| 7410 | 
            +
                  include Aws::Structure::Union
         | 
| 7411 | 
            +
             | 
| 7412 | 
            +
                  class Automation < ExecutionInputs; end
         | 
| 7413 | 
            +
                  class Unknown < ExecutionInputs; end
         | 
| 7414 | 
            +
                end
         | 
| 7415 | 
            +
             | 
| 7416 | 
            +
                # Information about the changes that would be made if an execution were
         | 
| 7417 | 
            +
                # run.
         | 
| 7418 | 
            +
                #
         | 
| 7419 | 
            +
                # @note ExecutionPreview is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ExecutionPreview corresponding to the set member.
         | 
| 7420 | 
            +
                #
         | 
| 7421 | 
            +
                # @!attribute [rw] automation
         | 
| 7422 | 
            +
                #   Information about the changes that would be made if an Automation
         | 
| 7423 | 
            +
                #   workflow were run.
         | 
| 7424 | 
            +
                #   @return [Types::AutomationExecutionPreview]
         | 
| 7425 | 
            +
                #
         | 
| 7426 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ExecutionPreview AWS API Documentation
         | 
| 7427 | 
            +
                #
         | 
| 7428 | 
            +
                class ExecutionPreview < Struct.new(
         | 
| 7429 | 
            +
                  :automation,
         | 
| 7430 | 
            +
                  :unknown)
         | 
| 7431 | 
            +
                  SENSITIVE = []
         | 
| 7432 | 
            +
                  include Aws::Structure
         | 
| 7433 | 
            +
                  include Aws::Structure::Union
         | 
| 7434 | 
            +
             | 
| 7435 | 
            +
                  class Automation < ExecutionPreview; end
         | 
| 7436 | 
            +
                  class Unknown < ExecutionPreview; end
         | 
| 7437 | 
            +
                end
         | 
| 7438 | 
            +
             | 
| 7291 7439 | 
             
                # Describes a failed association.
         | 
| 7292 7440 | 
             
                #
         | 
| 7293 7441 | 
             
                # @!attribute [rw] entry
         | 
| @@ -7896,6 +8044,53 @@ module Aws::SSM | |
| 7896 8044 | 
             
                  include Aws::Structure
         | 
| 7897 8045 | 
             
                end
         | 
| 7898 8046 |  | 
| 8047 | 
            +
                # @!attribute [rw] execution_preview_id
         | 
| 8048 | 
            +
                #   The ID of the existing execution preview.
         | 
| 8049 | 
            +
                #   @return [String]
         | 
| 8050 | 
            +
                #
         | 
| 8051 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetExecutionPreviewRequest AWS API Documentation
         | 
| 8052 | 
            +
                #
         | 
| 8053 | 
            +
                class GetExecutionPreviewRequest < Struct.new(
         | 
| 8054 | 
            +
                  :execution_preview_id)
         | 
| 8055 | 
            +
                  SENSITIVE = []
         | 
| 8056 | 
            +
                  include Aws::Structure
         | 
| 8057 | 
            +
                end
         | 
| 8058 | 
            +
             | 
| 8059 | 
            +
                # @!attribute [rw] execution_preview_id
         | 
| 8060 | 
            +
                #   The generated ID for the existing execution preview.
         | 
| 8061 | 
            +
                #   @return [String]
         | 
| 8062 | 
            +
                #
         | 
| 8063 | 
            +
                # @!attribute [rw] ended_at
         | 
| 8064 | 
            +
                #   A UTC timestamp indicating when the execution preview operation
         | 
| 8065 | 
            +
                #   ended.
         | 
| 8066 | 
            +
                #   @return [Time]
         | 
| 8067 | 
            +
                #
         | 
| 8068 | 
            +
                # @!attribute [rw] status
         | 
| 8069 | 
            +
                #   The current status of the execution preview operation.
         | 
| 8070 | 
            +
                #   @return [String]
         | 
| 8071 | 
            +
                #
         | 
| 8072 | 
            +
                # @!attribute [rw] status_message
         | 
| 8073 | 
            +
                #   Supplemental information about the current status of the execution
         | 
| 8074 | 
            +
                #   preview.
         | 
| 8075 | 
            +
                #   @return [String]
         | 
| 8076 | 
            +
                #
         | 
| 8077 | 
            +
                # @!attribute [rw] execution_preview
         | 
| 8078 | 
            +
                #   Information about the changes that would be made if an execution
         | 
| 8079 | 
            +
                #   were run.
         | 
| 8080 | 
            +
                #   @return [Types::ExecutionPreview]
         | 
| 8081 | 
            +
                #
         | 
| 8082 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetExecutionPreviewResponse AWS API Documentation
         | 
| 8083 | 
            +
                #
         | 
| 8084 | 
            +
                class GetExecutionPreviewResponse < Struct.new(
         | 
| 8085 | 
            +
                  :execution_preview_id,
         | 
| 8086 | 
            +
                  :ended_at,
         | 
| 8087 | 
            +
                  :status,
         | 
| 8088 | 
            +
                  :status_message,
         | 
| 8089 | 
            +
                  :execution_preview)
         | 
| 8090 | 
            +
                  SENSITIVE = []
         | 
| 8091 | 
            +
                  include Aws::Structure
         | 
| 8092 | 
            +
                end
         | 
| 8093 | 
            +
             | 
| 7899 8094 | 
             
                # @!attribute [rw] filters
         | 
| 7900 8095 | 
             
                #   One or more filters. Use a filter to return a more specific list of
         | 
| 7901 8096 | 
             
                #   results.
         | 
| @@ -9163,16 +9358,20 @@ module Aws::SSM | |
| 9163 9358 | 
             
                #   The ID of the service setting to get. The setting ID can be one of
         | 
| 9164 9359 | 
             
                #   the following.
         | 
| 9165 9360 | 
             
                #
         | 
| 9166 | 
            -
                #   * `/ssm/ | 
| 9361 | 
            +
                #   * `/ssm/appmanager/appmanager-enabled`
         | 
| 9167 9362 | 
             
                #
         | 
| 9168 9363 | 
             
                #   * `/ssm/automation/customer-script-log-destination`
         | 
| 9169 9364 | 
             
                #
         | 
| 9170 9365 | 
             
                #   * `/ssm/automation/customer-script-log-group-name`
         | 
| 9171 9366 | 
             
                #
         | 
| 9367 | 
            +
                #   * /ssm/automation/enable-adaptive-concurrency
         | 
| 9368 | 
            +
                #
         | 
| 9172 9369 | 
             
                #   * `/ssm/documents/console/public-sharing-permission`
         | 
| 9173 9370 | 
             
                #
         | 
| 9174 9371 | 
             
                #   * `/ssm/managed-instance/activation-tier`
         | 
| 9175 9372 | 
             
                #
         | 
| 9373 | 
            +
                #   * `/ssm/managed-instance/default-ec2-instance-management-role`
         | 
| 9374 | 
            +
                #
         | 
| 9176 9375 | 
             
                #   * `/ssm/opsinsights/opscenter`
         | 
| 9177 9376 | 
             
                #
         | 
| 9178 9377 | 
             
                #   * `/ssm/parameter-store/default-parameter-tier`
         | 
| @@ -9434,6 +9633,67 @@ module Aws::SSM | |
| 9434 9633 | 
             
                  include Aws::Structure
         | 
| 9435 9634 | 
             
                end
         | 
| 9436 9635 |  | 
| 9636 | 
            +
                # Details about a specific managed node.
         | 
| 9637 | 
            +
                #
         | 
| 9638 | 
            +
                # @!attribute [rw] agent_type
         | 
| 9639 | 
            +
                #   The type of agent installed on the node.
         | 
| 9640 | 
            +
                #   @return [String]
         | 
| 9641 | 
            +
                #
         | 
| 9642 | 
            +
                # @!attribute [rw] agent_version
         | 
| 9643 | 
            +
                #   The version number of the agent installed on the node.
         | 
| 9644 | 
            +
                #   @return [String]
         | 
| 9645 | 
            +
                #
         | 
| 9646 | 
            +
                # @!attribute [rw] computer_name
         | 
| 9647 | 
            +
                #   The fully qualified host name of the managed node.
         | 
| 9648 | 
            +
                #   @return [String]
         | 
| 9649 | 
            +
                #
         | 
| 9650 | 
            +
                # @!attribute [rw] instance_status
         | 
| 9651 | 
            +
                #   The current status of the managed node.
         | 
| 9652 | 
            +
                #   @return [String]
         | 
| 9653 | 
            +
                #
         | 
| 9654 | 
            +
                # @!attribute [rw] ip_address
         | 
| 9655 | 
            +
                #   The IP address of the managed node.
         | 
| 9656 | 
            +
                #   @return [String]
         | 
| 9657 | 
            +
                #
         | 
| 9658 | 
            +
                # @!attribute [rw] managed_status
         | 
| 9659 | 
            +
                #   Indicates whether the node is managed by Systems Manager.
         | 
| 9660 | 
            +
                #   @return [String]
         | 
| 9661 | 
            +
                #
         | 
| 9662 | 
            +
                # @!attribute [rw] platform_type
         | 
| 9663 | 
            +
                #   The operating system platform type of the managed node.
         | 
| 9664 | 
            +
                #   @return [String]
         | 
| 9665 | 
            +
                #
         | 
| 9666 | 
            +
                # @!attribute [rw] platform_name
         | 
| 9667 | 
            +
                #   The name of the operating system platform running on your managed
         | 
| 9668 | 
            +
                #   node.
         | 
| 9669 | 
            +
                #   @return [String]
         | 
| 9670 | 
            +
                #
         | 
| 9671 | 
            +
                # @!attribute [rw] platform_version
         | 
| 9672 | 
            +
                #   The version of the OS platform running on your managed node.
         | 
| 9673 | 
            +
                #   @return [String]
         | 
| 9674 | 
            +
                #
         | 
| 9675 | 
            +
                # @!attribute [rw] resource_type
         | 
| 9676 | 
            +
                #   The type of instance, either an EC2 instance or another supported
         | 
| 9677 | 
            +
                #   machine type in a hybrid fleet.
         | 
| 9678 | 
            +
                #   @return [String]
         | 
| 9679 | 
            +
                #
         | 
| 9680 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstanceInfo AWS API Documentation
         | 
| 9681 | 
            +
                #
         | 
| 9682 | 
            +
                class InstanceInfo < Struct.new(
         | 
| 9683 | 
            +
                  :agent_type,
         | 
| 9684 | 
            +
                  :agent_version,
         | 
| 9685 | 
            +
                  :computer_name,
         | 
| 9686 | 
            +
                  :instance_status,
         | 
| 9687 | 
            +
                  :ip_address,
         | 
| 9688 | 
            +
                  :managed_status,
         | 
| 9689 | 
            +
                  :platform_type,
         | 
| 9690 | 
            +
                  :platform_name,
         | 
| 9691 | 
            +
                  :platform_version,
         | 
| 9692 | 
            +
                  :resource_type)
         | 
| 9693 | 
            +
                  SENSITIVE = [:ip_address]
         | 
| 9694 | 
            +
                  include Aws::Structure
         | 
| 9695 | 
            +
                end
         | 
| 9696 | 
            +
             | 
| 9437 9697 | 
             
                # Describes a filter for a specific list of managed nodes.
         | 
| 9438 9698 | 
             
                #
         | 
| 9439 9699 | 
             
                # @!attribute [rw] instance_id
         | 
| @@ -9962,7 +10222,7 @@ module Aws::SSM | |
| 9962 10222 | 
             
                #
         | 
| 9963 10223 | 
             
                # @!attribute [rw] platform_type
         | 
| 9964 10224 | 
             
                #   The operating system platform type of the managed node. For example,
         | 
| 9965 | 
            -
                #   Windows.
         | 
| 10225 | 
            +
                #   Windows Server or Amazon Linux 2.
         | 
| 9966 10226 | 
             
                #   @return [String]
         | 
| 9967 10227 | 
             
                #
         | 
| 9968 10228 | 
             
                # @!attribute [rw] platform_name
         | 
| @@ -10126,7 +10386,7 @@ module Aws::SSM | |
| 10126 10386 | 
             
                  include Aws::Structure
         | 
| 10127 10387 | 
             
                end
         | 
| 10128 10388 |  | 
| 10129 | 
            -
                # The activation ID isn't valid. Verify  | 
| 10389 | 
            +
                # The activation ID isn't valid. Verify that you entered the correct
         | 
| 10130 10390 | 
             
                # ActivationId or ActivationCode and try again.
         | 
| 10131 10391 | 
             
                #
         | 
| 10132 10392 | 
             
                # @!attribute [rw] message
         | 
| @@ -10140,9 +10400,8 @@ module Aws::SSM | |
| 10140 10400 | 
             
                  include Aws::Structure
         | 
| 10141 10401 | 
             
                end
         | 
| 10142 10402 |  | 
| 10143 | 
            -
                # The specified aggregator isn't valid for  | 
| 10144 | 
            -
                #  | 
| 10145 | 
            -
                # `AWS:Application` or `AWS:InstanceInformation`.
         | 
| 10403 | 
            +
                # The specified aggregator isn't valid for the group type. Verify that
         | 
| 10404 | 
            +
                # the aggregator you provided is supported.
         | 
| 10146 10405 | 
             
                #
         | 
| 10147 10406 | 
             
                # @!attribute [rw] message
         | 
| 10148 10407 | 
             
                #   @return [String]
         | 
| @@ -10356,7 +10615,7 @@ module Aws::SSM | |
| 10356 10615 | 
             
                  include Aws::Structure
         | 
| 10357 10616 | 
             
                end
         | 
| 10358 10617 |  | 
| 10359 | 
            -
                # The filter name isn't valid. Verify  | 
| 10618 | 
            +
                # The filter name isn't valid. Verify that you entered the correct name
         | 
| 10360 10619 | 
             
                # and try again.
         | 
| 10361 10620 | 
             
                #
         | 
| 10362 10621 | 
             
                # @!attribute [rw] message
         | 
| @@ -11795,6 +12054,117 @@ module Aws::SSM | |
| 11795 12054 | 
             
                  include Aws::Structure
         | 
| 11796 12055 | 
             
                end
         | 
| 11797 12056 |  | 
| 12057 | 
            +
                # @!attribute [rw] sync_name
         | 
| 12058 | 
            +
                #   The name of the resource data sync to retrieve information about.
         | 
| 12059 | 
            +
                #   Required for cross-account/cross-Region configurations. Optional for
         | 
| 12060 | 
            +
                #   single account/single-Region configurations.
         | 
| 12061 | 
            +
                #   @return [String]
         | 
| 12062 | 
            +
                #
         | 
| 12063 | 
            +
                # @!attribute [rw] filters
         | 
| 12064 | 
            +
                #   One or more filters. Use a filter to return a more specific list of
         | 
| 12065 | 
            +
                #   managed nodes.
         | 
| 12066 | 
            +
                #   @return [Array<Types::NodeFilter>]
         | 
| 12067 | 
            +
                #
         | 
| 12068 | 
            +
                # @!attribute [rw] next_token
         | 
| 12069 | 
            +
                #   The token for the next set of items to return. (You received this
         | 
| 12070 | 
            +
                #   token from a previous call.)
         | 
| 12071 | 
            +
                #   @return [String]
         | 
| 12072 | 
            +
                #
         | 
| 12073 | 
            +
                # @!attribute [rw] max_results
         | 
| 12074 | 
            +
                #   The maximum number of items to return for this call. The call also
         | 
| 12075 | 
            +
                #   returns a token that you can specify in a subsequent call to get the
         | 
| 12076 | 
            +
                #   next set of results.
         | 
| 12077 | 
            +
                #   @return [Integer]
         | 
| 12078 | 
            +
                #
         | 
| 12079 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListNodesRequest AWS API Documentation
         | 
| 12080 | 
            +
                #
         | 
| 12081 | 
            +
                class ListNodesRequest < Struct.new(
         | 
| 12082 | 
            +
                  :sync_name,
         | 
| 12083 | 
            +
                  :filters,
         | 
| 12084 | 
            +
                  :next_token,
         | 
| 12085 | 
            +
                  :max_results)
         | 
| 12086 | 
            +
                  SENSITIVE = []
         | 
| 12087 | 
            +
                  include Aws::Structure
         | 
| 12088 | 
            +
                end
         | 
| 12089 | 
            +
             | 
| 12090 | 
            +
                # @!attribute [rw] nodes
         | 
| 12091 | 
            +
                #   A list of managed nodes that match the specified filter criteria.
         | 
| 12092 | 
            +
                #   @return [Array<Types::Node>]
         | 
| 12093 | 
            +
                #
         | 
| 12094 | 
            +
                # @!attribute [rw] next_token
         | 
| 12095 | 
            +
                #   The token to use when requesting the next set of items. If there are
         | 
| 12096 | 
            +
                #   no additional items to return, the string is empty.
         | 
| 12097 | 
            +
                #   @return [String]
         | 
| 12098 | 
            +
                #
         | 
| 12099 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListNodesResult AWS API Documentation
         | 
| 12100 | 
            +
                #
         | 
| 12101 | 
            +
                class ListNodesResult < Struct.new(
         | 
| 12102 | 
            +
                  :nodes,
         | 
| 12103 | 
            +
                  :next_token)
         | 
| 12104 | 
            +
                  SENSITIVE = []
         | 
| 12105 | 
            +
                  include Aws::Structure
         | 
| 12106 | 
            +
                end
         | 
| 12107 | 
            +
             | 
| 12108 | 
            +
                # @!attribute [rw] sync_name
         | 
| 12109 | 
            +
                #   The name of the resource data sync to retrieve information about.
         | 
| 12110 | 
            +
                #   Required for cross-account/cross-Region configuration. Optional for
         | 
| 12111 | 
            +
                #   single account/single-Region configurations.
         | 
| 12112 | 
            +
                #   @return [String]
         | 
| 12113 | 
            +
                #
         | 
| 12114 | 
            +
                # @!attribute [rw] filters
         | 
| 12115 | 
            +
                #   One or more filters. Use a filter to generate a summary that matches
         | 
| 12116 | 
            +
                #   your specified filter criteria.
         | 
| 12117 | 
            +
                #   @return [Array<Types::NodeFilter>]
         | 
| 12118 | 
            +
                #
         | 
| 12119 | 
            +
                # @!attribute [rw] aggregators
         | 
| 12120 | 
            +
                #   Specify one or more aggregators to return a count of managed nodes
         | 
| 12121 | 
            +
                #   that match that expression. For example, a count of managed nodes by
         | 
| 12122 | 
            +
                #   operating system.
         | 
| 12123 | 
            +
                #   @return [Array<Types::NodeAggregator>]
         | 
| 12124 | 
            +
                #
         | 
| 12125 | 
            +
                # @!attribute [rw] next_token
         | 
| 12126 | 
            +
                #   The token for the next set of items to return. (You received this
         | 
| 12127 | 
            +
                #   token from a previous call.) The call also returns a token that you
         | 
| 12128 | 
            +
                #   can specify in a subsequent call to get the next set of results.
         | 
| 12129 | 
            +
                #   @return [String]
         | 
| 12130 | 
            +
                #
         | 
| 12131 | 
            +
                # @!attribute [rw] max_results
         | 
| 12132 | 
            +
                #   The maximum number of items to return for this call. The call also
         | 
| 12133 | 
            +
                #   returns a token that you can specify in a subsequent call to get the
         | 
| 12134 | 
            +
                #   next set of results.
         | 
| 12135 | 
            +
                #   @return [Integer]
         | 
| 12136 | 
            +
                #
         | 
| 12137 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListNodesSummaryRequest AWS API Documentation
         | 
| 12138 | 
            +
                #
         | 
| 12139 | 
            +
                class ListNodesSummaryRequest < Struct.new(
         | 
| 12140 | 
            +
                  :sync_name,
         | 
| 12141 | 
            +
                  :filters,
         | 
| 12142 | 
            +
                  :aggregators,
         | 
| 12143 | 
            +
                  :next_token,
         | 
| 12144 | 
            +
                  :max_results)
         | 
| 12145 | 
            +
                  SENSITIVE = []
         | 
| 12146 | 
            +
                  include Aws::Structure
         | 
| 12147 | 
            +
                end
         | 
| 12148 | 
            +
             | 
| 12149 | 
            +
                # @!attribute [rw] summary
         | 
| 12150 | 
            +
                #   A collection of objects reporting information about your managed
         | 
| 12151 | 
            +
                #   nodes, such as the count of nodes by operating system.
         | 
| 12152 | 
            +
                #   @return [Array<Hash<String,String>>]
         | 
| 12153 | 
            +
                #
         | 
| 12154 | 
            +
                # @!attribute [rw] next_token
         | 
| 12155 | 
            +
                #   The token to use when requesting the next set of items. If there are
         | 
| 12156 | 
            +
                #   no additional items to return, the string is empty.
         | 
| 12157 | 
            +
                #   @return [String]
         | 
| 12158 | 
            +
                #
         | 
| 12159 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListNodesSummaryResult AWS API Documentation
         | 
| 12160 | 
            +
                #
         | 
| 12161 | 
            +
                class ListNodesSummaryResult < Struct.new(
         | 
| 12162 | 
            +
                  :summary,
         | 
| 12163 | 
            +
                  :next_token)
         | 
| 12164 | 
            +
                  SENSITIVE = []
         | 
| 12165 | 
            +
                  include Aws::Structure
         | 
| 12166 | 
            +
                end
         | 
| 12167 | 
            +
             | 
| 11798 12168 | 
             
                # @!attribute [rw] filters
         | 
| 11799 12169 | 
             
                #   One or more OpsItem filters. Use a filter to return a more specific
         | 
| 11800 12170 | 
             
                #   list of results.
         | 
| @@ -13004,6 +13374,149 @@ module Aws::SSM | |
| 13004 13374 | 
             
                #
         | 
| 13005 13375 | 
             
                class ModifyDocumentPermissionResponse < Aws::EmptyStructure; end
         | 
| 13006 13376 |  | 
| 13377 | 
            +
                # Details about an individual managed node.
         | 
| 13378 | 
            +
                #
         | 
| 13379 | 
            +
                # @!attribute [rw] capture_time
         | 
| 13380 | 
            +
                #   The UTC timestamp for when the managed node data was last captured.
         | 
| 13381 | 
            +
                #   @return [Time]
         | 
| 13382 | 
            +
                #
         | 
| 13383 | 
            +
                # @!attribute [rw] id
         | 
| 13384 | 
            +
                #   The ID of the managed node.
         | 
| 13385 | 
            +
                #   @return [String]
         | 
| 13386 | 
            +
                #
         | 
| 13387 | 
            +
                # @!attribute [rw] owner
         | 
| 13388 | 
            +
                #   Information about the ownership of the managed node.
         | 
| 13389 | 
            +
                #   @return [Types::NodeOwnerInfo]
         | 
| 13390 | 
            +
                #
         | 
| 13391 | 
            +
                # @!attribute [rw] region
         | 
| 13392 | 
            +
                #   The Amazon Web Services Region that a managed node was created in or
         | 
| 13393 | 
            +
                #   assigned to.
         | 
| 13394 | 
            +
                #   @return [String]
         | 
| 13395 | 
            +
                #
         | 
| 13396 | 
            +
                # @!attribute [rw] node_type
         | 
| 13397 | 
            +
                #   Information about the type of node.
         | 
| 13398 | 
            +
                #   @return [Types::NodeType]
         | 
| 13399 | 
            +
                #
         | 
| 13400 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Node AWS API Documentation
         | 
| 13401 | 
            +
                #
         | 
| 13402 | 
            +
                class Node < Struct.new(
         | 
| 13403 | 
            +
                  :capture_time,
         | 
| 13404 | 
            +
                  :id,
         | 
| 13405 | 
            +
                  :owner,
         | 
| 13406 | 
            +
                  :region,
         | 
| 13407 | 
            +
                  :node_type)
         | 
| 13408 | 
            +
                  SENSITIVE = []
         | 
| 13409 | 
            +
                  include Aws::Structure
         | 
| 13410 | 
            +
                end
         | 
| 13411 | 
            +
             | 
| 13412 | 
            +
                # One or more aggregators for viewing counts of nodes using different
         | 
| 13413 | 
            +
                # dimensions.
         | 
| 13414 | 
            +
                #
         | 
| 13415 | 
            +
                # @!attribute [rw] aggregator_type
         | 
| 13416 | 
            +
                #   The aggregator type for limiting a node summary. Currently, only
         | 
| 13417 | 
            +
                #   `Count` is supported.
         | 
| 13418 | 
            +
                #   @return [String]
         | 
| 13419 | 
            +
                #
         | 
| 13420 | 
            +
                # @!attribute [rw] type_name
         | 
| 13421 | 
            +
                #   The data type name to use for viewing counts of nodes. Currently,
         | 
| 13422 | 
            +
                #   only `Instance` is supported.
         | 
| 13423 | 
            +
                #   @return [String]
         | 
| 13424 | 
            +
                #
         | 
| 13425 | 
            +
                # @!attribute [rw] attribute_name
         | 
| 13426 | 
            +
                #   The name of a node attribute on which to limit the count of nodes.
         | 
| 13427 | 
            +
                #   @return [String]
         | 
| 13428 | 
            +
                #
         | 
| 13429 | 
            +
                # @!attribute [rw] aggregators
         | 
| 13430 | 
            +
                #   Information about aggregators used to refine a node summary.
         | 
| 13431 | 
            +
                #   @return [Array<Types::NodeAggregator>]
         | 
| 13432 | 
            +
                #
         | 
| 13433 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/NodeAggregator AWS API Documentation
         | 
| 13434 | 
            +
                #
         | 
| 13435 | 
            +
                class NodeAggregator < Struct.new(
         | 
| 13436 | 
            +
                  :aggregator_type,
         | 
| 13437 | 
            +
                  :type_name,
         | 
| 13438 | 
            +
                  :attribute_name,
         | 
| 13439 | 
            +
                  :aggregators)
         | 
| 13440 | 
            +
                  SENSITIVE = []
         | 
| 13441 | 
            +
                  include Aws::Structure
         | 
| 13442 | 
            +
                end
         | 
| 13443 | 
            +
             | 
| 13444 | 
            +
                # The filters for the operation.
         | 
| 13445 | 
            +
                #
         | 
| 13446 | 
            +
                # @!attribute [rw] key
         | 
| 13447 | 
            +
                #   The name of the filter.
         | 
| 13448 | 
            +
                #   @return [String]
         | 
| 13449 | 
            +
                #
         | 
| 13450 | 
            +
                # @!attribute [rw] values
         | 
| 13451 | 
            +
                #   A filter value supported by the specified key. For example, for the
         | 
| 13452 | 
            +
                #   key `PlatformType`, supported values include `Linux` and `Windows`.
         | 
| 13453 | 
            +
                #   @return [Array<String>]
         | 
| 13454 | 
            +
                #
         | 
| 13455 | 
            +
                # @!attribute [rw] type
         | 
| 13456 | 
            +
                #   The type of filter operator.
         | 
| 13457 | 
            +
                #   @return [String]
         | 
| 13458 | 
            +
                #
         | 
| 13459 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/NodeFilter AWS API Documentation
         | 
| 13460 | 
            +
                #
         | 
| 13461 | 
            +
                class NodeFilter < Struct.new(
         | 
| 13462 | 
            +
                  :key,
         | 
| 13463 | 
            +
                  :values,
         | 
| 13464 | 
            +
                  :type)
         | 
| 13465 | 
            +
                  SENSITIVE = []
         | 
| 13466 | 
            +
                  include Aws::Structure
         | 
| 13467 | 
            +
                end
         | 
| 13468 | 
            +
             | 
| 13469 | 
            +
                # Information about ownership of a managed node.
         | 
| 13470 | 
            +
                #
         | 
| 13471 | 
            +
                # @!attribute [rw] account_id
         | 
| 13472 | 
            +
                #   The ID of the Amazon Web Services account that owns the managed
         | 
| 13473 | 
            +
                #   node.
         | 
| 13474 | 
            +
                #   @return [String]
         | 
| 13475 | 
            +
                #
         | 
| 13476 | 
            +
                # @!attribute [rw] organizational_unit_id
         | 
| 13477 | 
            +
                #   The ID of the organization unit (OU) that the account is part of.
         | 
| 13478 | 
            +
                #   @return [String]
         | 
| 13479 | 
            +
                #
         | 
| 13480 | 
            +
                # @!attribute [rw] organizational_unit_path
         | 
| 13481 | 
            +
                #   The path for the organizational unit (OU) that owns the managed
         | 
| 13482 | 
            +
                #   node. The path for the OU is built using the IDs of the
         | 
| 13483 | 
            +
                #   organization, root, and all OUs in the path down to and including
         | 
| 13484 | 
            +
                #   the OU. For example:
         | 
| 13485 | 
            +
                #
         | 
| 13486 | 
            +
                #   `o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-ghi0-awsccccc/ou-jkl0-awsddddd/`
         | 
| 13487 | 
            +
                #   @return [String]
         | 
| 13488 | 
            +
                #
         | 
| 13489 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/NodeOwnerInfo AWS API Documentation
         | 
| 13490 | 
            +
                #
         | 
| 13491 | 
            +
                class NodeOwnerInfo < Struct.new(
         | 
| 13492 | 
            +
                  :account_id,
         | 
| 13493 | 
            +
                  :organizational_unit_id,
         | 
| 13494 | 
            +
                  :organizational_unit_path)
         | 
| 13495 | 
            +
                  SENSITIVE = []
         | 
| 13496 | 
            +
                  include Aws::Structure
         | 
| 13497 | 
            +
                end
         | 
| 13498 | 
            +
             | 
| 13499 | 
            +
                # Information about a managed node's type.
         | 
| 13500 | 
            +
                #
         | 
| 13501 | 
            +
                # @note NodeType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of NodeType corresponding to the set member.
         | 
| 13502 | 
            +
                #
         | 
| 13503 | 
            +
                # @!attribute [rw] instance
         | 
| 13504 | 
            +
                #   Information about a specific managed node.
         | 
| 13505 | 
            +
                #   @return [Types::InstanceInfo]
         | 
| 13506 | 
            +
                #
         | 
| 13507 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/NodeType AWS API Documentation
         | 
| 13508 | 
            +
                #
         | 
| 13509 | 
            +
                class NodeType < Struct.new(
         | 
| 13510 | 
            +
                  :instance,
         | 
| 13511 | 
            +
                  :unknown)
         | 
| 13512 | 
            +
                  SENSITIVE = []
         | 
| 13513 | 
            +
                  include Aws::Structure
         | 
| 13514 | 
            +
                  include Aws::Structure::Union
         | 
| 13515 | 
            +
             | 
| 13516 | 
            +
                  class Instance < NodeType; end
         | 
| 13517 | 
            +
                  class Unknown < NodeType; end
         | 
| 13518 | 
            +
                end
         | 
| 13519 | 
            +
             | 
| 13007 13520 | 
             
                # A summary of resources that aren't compliant. The summary is
         | 
| 13008 13521 | 
             
                # organized according to resource type.
         | 
| 13009 13522 | 
             
                #
         | 
| @@ -14303,7 +14816,7 @@ module Aws::SSM | |
| 14303 14816 | 
             
                #   @return [String]
         | 
| 14304 14817 | 
             
                #
         | 
| 14305 14818 | 
             
                # @!attribute [rw] arn
         | 
| 14306 | 
            -
                #   The (ARN) of the  | 
| 14819 | 
            +
                #   The Amazon Resource Name (ARN) of the parameter.
         | 
| 14307 14820 | 
             
                #   @return [String]
         | 
| 14308 14821 | 
             
                #
         | 
| 14309 14822 | 
             
                # @!attribute [rw] type
         | 
| @@ -16067,16 +16580,20 @@ module Aws::SSM | |
| 16067 16580 | 
             
                #   The Amazon Resource Name (ARN) of the service setting to reset. The
         | 
| 16068 16581 | 
             
                #   setting ID can be one of the following.
         | 
| 16069 16582 | 
             
                #
         | 
| 16070 | 
            -
                #   * `/ssm/ | 
| 16583 | 
            +
                #   * `/ssm/appmanager/appmanager-enabled`
         | 
| 16071 16584 | 
             
                #
         | 
| 16072 16585 | 
             
                #   * `/ssm/automation/customer-script-log-destination`
         | 
| 16073 16586 | 
             
                #
         | 
| 16074 16587 | 
             
                #   * `/ssm/automation/customer-script-log-group-name`
         | 
| 16075 16588 | 
             
                #
         | 
| 16589 | 
            +
                #   * /ssm/automation/enable-adaptive-concurrency
         | 
| 16590 | 
            +
                #
         | 
| 16076 16591 | 
             
                #   * `/ssm/documents/console/public-sharing-permission`
         | 
| 16077 16592 | 
             
                #
         | 
| 16078 16593 | 
             
                #   * `/ssm/managed-instance/activation-tier`
         | 
| 16079 16594 | 
             
                #
         | 
| 16595 | 
            +
                #   * `/ssm/managed-instance/default-ec2-instance-management-role`
         | 
| 16596 | 
            +
                #
         | 
| 16080 16597 | 
             
                #   * `/ssm/opsinsights/opscenter`
         | 
| 16081 16598 | 
             
                #
         | 
| 16082 16599 | 
             
                #   * `/ssm/parameter-store/default-parameter-tier`
         | 
| @@ -17721,6 +18238,44 @@ module Aws::SSM | |
| 17721 18238 | 
             
                  include Aws::Structure
         | 
| 17722 18239 | 
             
                end
         | 
| 17723 18240 |  | 
| 18241 | 
            +
                # @!attribute [rw] document_name
         | 
| 18242 | 
            +
                #   The name of the Automation runbook to run. The result of the
         | 
| 18243 | 
            +
                #   execution preview indicates what the impact would be of running this
         | 
| 18244 | 
            +
                #   runbook.
         | 
| 18245 | 
            +
                #   @return [String]
         | 
| 18246 | 
            +
                #
         | 
| 18247 | 
            +
                # @!attribute [rw] document_version
         | 
| 18248 | 
            +
                #   The version of the Automation runbook to run. The default value is
         | 
| 18249 | 
            +
                #   `$DEFAULT`.
         | 
| 18250 | 
            +
                #   @return [String]
         | 
| 18251 | 
            +
                #
         | 
| 18252 | 
            +
                # @!attribute [rw] execution_inputs
         | 
| 18253 | 
            +
                #   Information about the inputs that can be specified for the preview
         | 
| 18254 | 
            +
                #   operation.
         | 
| 18255 | 
            +
                #   @return [Types::ExecutionInputs]
         | 
| 18256 | 
            +
                #
         | 
| 18257 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartExecutionPreviewRequest AWS API Documentation
         | 
| 18258 | 
            +
                #
         | 
| 18259 | 
            +
                class StartExecutionPreviewRequest < Struct.new(
         | 
| 18260 | 
            +
                  :document_name,
         | 
| 18261 | 
            +
                  :document_version,
         | 
| 18262 | 
            +
                  :execution_inputs)
         | 
| 18263 | 
            +
                  SENSITIVE = []
         | 
| 18264 | 
            +
                  include Aws::Structure
         | 
| 18265 | 
            +
                end
         | 
| 18266 | 
            +
             | 
| 18267 | 
            +
                # @!attribute [rw] execution_preview_id
         | 
| 18268 | 
            +
                #   The ID of the execution preview generated by the system.
         | 
| 18269 | 
            +
                #   @return [String]
         | 
| 18270 | 
            +
                #
         | 
| 18271 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartExecutionPreviewResponse AWS API Documentation
         | 
| 18272 | 
            +
                #
         | 
| 18273 | 
            +
                class StartExecutionPreviewResponse < Struct.new(
         | 
| 18274 | 
            +
                  :execution_preview_id)
         | 
| 18275 | 
            +
                  SENSITIVE = []
         | 
| 18276 | 
            +
                  include Aws::Structure
         | 
| 18277 | 
            +
                end
         | 
| 18278 | 
            +
             | 
| 17724 18279 | 
             
                # @!attribute [rw] target
         | 
| 17725 18280 | 
             
                #   The managed node to connect to for the session.
         | 
| 17726 18281 | 
             
                #   @return [String]
         | 
| @@ -18247,6 +18802,27 @@ module Aws::SSM | |
| 18247 18802 | 
             
                  include Aws::Structure
         | 
| 18248 18803 | 
             
                end
         | 
| 18249 18804 |  | 
| 18805 | 
            +
                # Information about the resources that would be included in the actual
         | 
| 18806 | 
            +
                # runbook execution, if it were to be run.
         | 
| 18807 | 
            +
                #
         | 
| 18808 | 
            +
                # @!attribute [rw] count
         | 
| 18809 | 
            +
                #   The number of resources of a certain type included in an execution
         | 
| 18810 | 
            +
                #   preview.
         | 
| 18811 | 
            +
                #   @return [Integer]
         | 
| 18812 | 
            +
                #
         | 
| 18813 | 
            +
                # @!attribute [rw] target_type
         | 
| 18814 | 
            +
                #   A type of resource that was included in the execution preview.
         | 
| 18815 | 
            +
                #   @return [String]
         | 
| 18816 | 
            +
                #
         | 
| 18817 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/TargetPreview AWS API Documentation
         | 
| 18818 | 
            +
                #
         | 
| 18819 | 
            +
                class TargetPreview < Struct.new(
         | 
| 18820 | 
            +
                  :count,
         | 
| 18821 | 
            +
                  :target_type)
         | 
| 18822 | 
            +
                  SENSITIVE = []
         | 
| 18823 | 
            +
                  include Aws::Structure
         | 
| 18824 | 
            +
                end
         | 
| 18825 | 
            +
             | 
| 18250 18826 | 
             
                # @!attribute [rw] session_id
         | 
| 18251 18827 | 
             
                #   The ID of the session to terminate.
         | 
| 18252 18828 | 
             
                #   @return [String]
         | 
| @@ -18436,6 +19012,21 @@ module Aws::SSM | |
| 18436 19012 | 
             
                  include Aws::Structure
         | 
| 18437 19013 | 
             
                end
         | 
| 18438 19014 |  | 
| 19015 | 
            +
                # This operation is not supported for the current account. You must
         | 
| 19016 | 
            +
                # first enable the Systems Manager integrated experience in your
         | 
| 19017 | 
            +
                # account.
         | 
| 19018 | 
            +
                #
         | 
| 19019 | 
            +
                # @!attribute [rw] message
         | 
| 19020 | 
            +
                #   @return [String]
         | 
| 19021 | 
            +
                #
         | 
| 19022 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UnsupportedOperationException AWS API Documentation
         | 
| 19023 | 
            +
                #
         | 
| 19024 | 
            +
                class UnsupportedOperationException < Struct.new(
         | 
| 19025 | 
            +
                  :message)
         | 
| 19026 | 
            +
                  SENSITIVE = []
         | 
| 19027 | 
            +
                  include Aws::Structure
         | 
| 19028 | 
            +
                end
         | 
| 19029 | 
            +
             | 
| 18439 19030 | 
             
                # The parameter type isn't supported.
         | 
| 18440 19031 | 
             
                #
         | 
| 18441 19032 | 
             
                # @!attribute [rw] message
         | 
| @@ -19725,6 +20316,11 @@ module Aws::SSM | |
| 19725 20316 | 
             
                #
         | 
| 19726 20317 | 
             
                # @!attribute [rw] global_filters
         | 
| 19727 20318 | 
             
                #   A set of global filters used to include patches in the baseline.
         | 
| 20319 | 
            +
                #
         | 
| 20320 | 
            +
                #   The `GlobalFilters` parameter can be configured only by using the
         | 
| 20321 | 
            +
                #   CLI or an Amazon Web Services SDK. It can't be configured from the
         | 
| 20322 | 
            +
                #   Patch Manager console, and its value isn't displayed in the
         | 
| 20323 | 
            +
                #   console.
         | 
| 19728 20324 | 
             
                #   @return [Types::PatchFilterGroup]
         | 
| 19729 20325 | 
             
                #
         | 
| 19730 20326 | 
             
                # @!attribute [rw] approval_rules
         | 
| @@ -19951,16 +20547,20 @@ module Aws::SSM | |
| 19951 20547 | 
             
                #   `arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled`.
         | 
| 19952 20548 | 
             
                #   The setting ID can be one of the following.
         | 
| 19953 20549 | 
             
                #
         | 
| 19954 | 
            -
                #   * `/ssm/ | 
| 20550 | 
            +
                #   * `/ssm/appmanager/appmanager-enabled`
         | 
| 19955 20551 | 
             
                #
         | 
| 19956 20552 | 
             
                #   * `/ssm/automation/customer-script-log-destination`
         | 
| 19957 20553 | 
             
                #
         | 
| 19958 20554 | 
             
                #   * `/ssm/automation/customer-script-log-group-name`
         | 
| 19959 20555 | 
             
                #
         | 
| 20556 | 
            +
                #   * /ssm/automation/enable-adaptive-concurrency
         | 
| 20557 | 
            +
                #
         | 
| 19960 20558 | 
             
                #   * `/ssm/documents/console/public-sharing-permission`
         | 
| 19961 20559 | 
             
                #
         | 
| 19962 20560 | 
             
                #   * `/ssm/managed-instance/activation-tier`
         | 
| 19963 20561 | 
             
                #
         | 
| 20562 | 
            +
                #   * `/ssm/managed-instance/default-ec2-instance-management-role`
         | 
| 20563 | 
            +
                #
         | 
| 19964 20564 | 
             
                #   * `/ssm/opsinsights/opscenter`
         | 
| 19965 20565 | 
             
                #
         | 
| 19966 20566 | 
             
                #   * `/ssm/parameter-store/default-parameter-tier`
         | 
| @@ -19980,8 +20580,7 @@ module Aws::SSM | |
| 19980 20580 | 
             
                #   The new value to specify for the service setting. The following list
         | 
| 19981 20581 | 
             
                #   specifies the available values for each setting.
         | 
| 19982 20582 | 
             
                #
         | 
| 19983 | 
            -
                #   * For `/ssm/ | 
| 19984 | 
            -
                #     enter the name of an IAM role.
         | 
| 20583 | 
            +
                #   * For `/ssm/appmanager/appmanager-enabled`, enter `True` or `False`.
         | 
| 19985 20584 | 
             
                #
         | 
| 19986 20585 | 
             
                #   * For `/ssm/automation/customer-script-log-destination`, enter
         | 
| 19987 20586 | 
             
                #     `CloudWatch`.
         | 
| @@ -19995,6 +20594,9 @@ module Aws::SSM | |
| 19995 20594 | 
             
                #   * For `/ssm/managed-instance/activation-tier`, enter `standard` or
         | 
| 19996 20595 | 
             
                #     `advanced`.
         | 
| 19997 20596 | 
             
                #
         | 
| 20597 | 
            +
                #   * For `/ssm/managed-instance/default-ec2-instance-management-role`,
         | 
| 20598 | 
            +
                #     enter the name of an IAM role.
         | 
| 20599 | 
            +
                #
         | 
| 19998 20600 | 
             
                #   * For `/ssm/opsinsights/opscenter`, enter `Enabled` or `Disabled`.
         | 
| 19999 20601 | 
             
                #
         | 
| 20000 20602 | 
             
                #   * For `/ssm/parameter-store/default-parameter-tier`, enter
         | 
| @@ -20019,6 +20621,25 @@ module Aws::SSM | |
| 20019 20621 | 
             
                #
         | 
| 20020 20622 | 
             
                class UpdateServiceSettingResult < Aws::EmptyStructure; end
         | 
| 20021 20623 |  | 
| 20624 | 
            +
                # The request isn't valid. Verify that you entered valid contents for
         | 
| 20625 | 
            +
                # the command and try again.
         | 
| 20626 | 
            +
                #
         | 
| 20627 | 
            +
                # @!attribute [rw] message
         | 
| 20628 | 
            +
                #   @return [String]
         | 
| 20629 | 
            +
                #
         | 
| 20630 | 
            +
                # @!attribute [rw] reason_code
         | 
| 20631 | 
            +
                #   The reason code for the invalid request.
         | 
| 20632 | 
            +
                #   @return [String]
         | 
| 20633 | 
            +
                #
         | 
| 20634 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ValidationException AWS API Documentation
         | 
| 20635 | 
            +
                #
         | 
| 20636 | 
            +
                class ValidationException < Struct.new(
         | 
| 20637 | 
            +
                  :message,
         | 
| 20638 | 
            +
                  :reason_code)
         | 
| 20639 | 
            +
                  SENSITIVE = []
         | 
| 20640 | 
            +
                  include Aws::Structure
         | 
| 20641 | 
            +
                end
         | 
| 20642 | 
            +
             | 
| 20022 20643 | 
             
              end
         | 
| 20023 20644 | 
             
            end
         | 
| 20024 20645 |  |