aws-sdk-ssm 1.46.0 → 1.47.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/lib/aws-sdk-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +1 -1
- data/lib/aws-sdk-ssm/client_api.rb +280 -0
- data/lib/aws-sdk-ssm/errors.rb +1492 -0
- data/lib/aws-sdk-ssm/types.rb +1289 -33
- metadata +4 -4
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -140,6 +140,20 @@ module Aws::SSM
|
|
140
140
|
#
|
141
141
|
class AddTagsToResourceResult < Aws::EmptyStructure; end
|
142
142
|
|
143
|
+
# Error returned if an attempt is made to register a patch group with a
|
144
|
+
# patch baseline that is already registered with a different patch
|
145
|
+
# baseline.
|
146
|
+
#
|
147
|
+
# @!attribute [rw] message
|
148
|
+
# @return [String]
|
149
|
+
#
|
150
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AlreadyExistsException AWS API Documentation
|
151
|
+
#
|
152
|
+
class AlreadyExistsException < Struct.new(
|
153
|
+
:message)
|
154
|
+
include Aws::Structure
|
155
|
+
end
|
156
|
+
|
143
157
|
# Describes an association of a Systems Manager document and an
|
144
158
|
# instance.
|
145
159
|
#
|
@@ -337,6 +351,18 @@ module Aws::SSM
|
|
337
351
|
include Aws::Structure
|
338
352
|
end
|
339
353
|
|
354
|
+
# The specified association does not exist.
|
355
|
+
#
|
356
|
+
# @!attribute [rw] message
|
357
|
+
# @return [String]
|
358
|
+
#
|
359
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationDoesNotExist AWS API Documentation
|
360
|
+
#
|
361
|
+
class AssociationDoesNotExist < Struct.new(
|
362
|
+
:message)
|
363
|
+
include Aws::Structure
|
364
|
+
end
|
365
|
+
|
340
366
|
# Includes information about the specified association.
|
341
367
|
#
|
342
368
|
# @!attribute [rw] association_id
|
@@ -386,6 +412,19 @@ module Aws::SSM
|
|
386
412
|
include Aws::Structure
|
387
413
|
end
|
388
414
|
|
415
|
+
# The specified execution ID does not exist. Verify the ID number and
|
416
|
+
# try again.
|
417
|
+
#
|
418
|
+
# @!attribute [rw] message
|
419
|
+
# @return [String]
|
420
|
+
#
|
421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationExecutionDoesNotExist AWS API Documentation
|
422
|
+
#
|
423
|
+
class AssociationExecutionDoesNotExist < Struct.new(
|
424
|
+
:message)
|
425
|
+
include Aws::Structure
|
426
|
+
end
|
427
|
+
|
389
428
|
# Filters used in the request.
|
390
429
|
#
|
391
430
|
# @note When making an API call, you may pass AssociationExecutionFilter
|
@@ -690,6 +729,19 @@ module Aws::SSM
|
|
690
729
|
include Aws::Structure
|
691
730
|
end
|
692
731
|
|
732
|
+
# You have reached the maximum number versions allowed for an
|
733
|
+
# association. Each association has a limit of 1,000 versions.
|
734
|
+
#
|
735
|
+
# @!attribute [rw] message
|
736
|
+
# @return [String]
|
737
|
+
#
|
738
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationVersionLimitExceeded AWS API Documentation
|
739
|
+
#
|
740
|
+
class AssociationVersionLimitExceeded < Struct.new(
|
741
|
+
:message)
|
742
|
+
include Aws::Structure
|
743
|
+
end
|
744
|
+
|
693
745
|
# A structure that includes attributes that describe a document
|
694
746
|
# attachment.
|
695
747
|
#
|
@@ -766,6 +818,31 @@ module Aws::SSM
|
|
766
818
|
include Aws::Structure
|
767
819
|
end
|
768
820
|
|
821
|
+
# An Automation document with the specified name could not be found.
|
822
|
+
#
|
823
|
+
# @!attribute [rw] message
|
824
|
+
# @return [String]
|
825
|
+
#
|
826
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationDefinitionNotFoundException AWS API Documentation
|
827
|
+
#
|
828
|
+
class AutomationDefinitionNotFoundException < Struct.new(
|
829
|
+
:message)
|
830
|
+
include Aws::Structure
|
831
|
+
end
|
832
|
+
|
833
|
+
# An Automation document with the specified name and version could not
|
834
|
+
# be found.
|
835
|
+
#
|
836
|
+
# @!attribute [rw] message
|
837
|
+
# @return [String]
|
838
|
+
#
|
839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationDefinitionVersionNotFoundException AWS API Documentation
|
840
|
+
#
|
841
|
+
class AutomationDefinitionVersionNotFoundException < Struct.new(
|
842
|
+
:message)
|
843
|
+
include Aws::Structure
|
844
|
+
end
|
845
|
+
|
769
846
|
# Detailed information about the current state of an individual
|
770
847
|
# Automation execution.
|
771
848
|
#
|
@@ -942,6 +1019,19 @@ module Aws::SSM
|
|
942
1019
|
include Aws::Structure
|
943
1020
|
end
|
944
1021
|
|
1022
|
+
# The number of simultaneously running Automation executions exceeded
|
1023
|
+
# the allowable limit.
|
1024
|
+
#
|
1025
|
+
# @!attribute [rw] message
|
1026
|
+
# @return [String]
|
1027
|
+
#
|
1028
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationExecutionLimitExceededException AWS API Documentation
|
1029
|
+
#
|
1030
|
+
class AutomationExecutionLimitExceededException < Struct.new(
|
1031
|
+
:message)
|
1032
|
+
include Aws::Structure
|
1033
|
+
end
|
1034
|
+
|
945
1035
|
# Details about a specific Automation execution.
|
946
1036
|
#
|
947
1037
|
# @!attribute [rw] automation_execution_id
|
@@ -1073,6 +1163,32 @@ module Aws::SSM
|
|
1073
1163
|
include Aws::Structure
|
1074
1164
|
end
|
1075
1165
|
|
1166
|
+
# There is no automation execution information for the requested
|
1167
|
+
# automation execution ID.
|
1168
|
+
#
|
1169
|
+
# @!attribute [rw] message
|
1170
|
+
# @return [String]
|
1171
|
+
#
|
1172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationExecutionNotFoundException AWS API Documentation
|
1173
|
+
#
|
1174
|
+
class AutomationExecutionNotFoundException < Struct.new(
|
1175
|
+
:message)
|
1176
|
+
include Aws::Structure
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
# The specified step name and execution ID don't exist. Verify the
|
1180
|
+
# information and try again.
|
1181
|
+
#
|
1182
|
+
# @!attribute [rw] message
|
1183
|
+
# @return [String]
|
1184
|
+
#
|
1185
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationStepNotFoundException AWS API Documentation
|
1186
|
+
#
|
1187
|
+
class AutomationStepNotFoundException < Struct.new(
|
1188
|
+
:message)
|
1189
|
+
include Aws::Structure
|
1190
|
+
end
|
1191
|
+
|
1076
1192
|
# @note When making an API call, you may pass CancelCommandRequest
|
1077
1193
|
# data as a hash:
|
1078
1194
|
#
|
@@ -1957,6 +2073,19 @@ module Aws::SSM
|
|
1957
2073
|
include Aws::Structure
|
1958
2074
|
end
|
1959
2075
|
|
2076
|
+
# You specified too many custom compliance types. You can specify a
|
2077
|
+
# maximum of 10 different types.
|
2078
|
+
#
|
2079
|
+
# @!attribute [rw] message
|
2080
|
+
# @return [String]
|
2081
|
+
#
|
2082
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ComplianceTypeCountLimitExceededException AWS API Documentation
|
2083
|
+
#
|
2084
|
+
class ComplianceTypeCountLimitExceededException < Struct.new(
|
2085
|
+
:message)
|
2086
|
+
include Aws::Structure
|
2087
|
+
end
|
2088
|
+
|
1960
2089
|
# A summary of resources that are compliant. The summary is organized
|
1961
2090
|
# according to the resource count for each compliance type.
|
1962
2091
|
#
|
@@ -2924,6 +3053,19 @@ module Aws::SSM
|
|
2924
3053
|
#
|
2925
3054
|
class CreateResourceDataSyncResult < Aws::EmptyStructure; end
|
2926
3055
|
|
3056
|
+
# You have exceeded the limit for custom schemas. Delete one or more
|
3057
|
+
# custom schemas and try again.
|
3058
|
+
#
|
3059
|
+
# @!attribute [rw] message
|
3060
|
+
# @return [String]
|
3061
|
+
#
|
3062
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CustomSchemaCountLimitExceededException AWS API Documentation
|
3063
|
+
#
|
3064
|
+
class CustomSchemaCountLimitExceededException < Struct.new(
|
3065
|
+
:message)
|
3066
|
+
include Aws::Structure
|
3067
|
+
end
|
3068
|
+
|
2927
3069
|
# @note When making an API call, you may pass DeleteActivationRequest
|
2928
3070
|
# data as a hash:
|
2929
3071
|
#
|
@@ -5308,6 +5450,18 @@ module Aws::SSM
|
|
5308
5450
|
include Aws::Structure
|
5309
5451
|
end
|
5310
5452
|
|
5453
|
+
# The specified document already exists.
|
5454
|
+
#
|
5455
|
+
# @!attribute [rw] message
|
5456
|
+
# @return [String]
|
5457
|
+
#
|
5458
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DocumentAlreadyExists AWS API Documentation
|
5459
|
+
#
|
5460
|
+
class DocumentAlreadyExists < Struct.new(
|
5461
|
+
:message)
|
5462
|
+
include Aws::Structure
|
5463
|
+
end
|
5464
|
+
|
5311
5465
|
# A default version of a document.
|
5312
5466
|
#
|
5313
5467
|
# @!attribute [rw] name
|
@@ -5615,6 +5769,18 @@ module Aws::SSM
|
|
5615
5769
|
include Aws::Structure
|
5616
5770
|
end
|
5617
5771
|
|
5772
|
+
# You can have at most 200 active Systems Manager documents.
|
5773
|
+
#
|
5774
|
+
# @!attribute [rw] message
|
5775
|
+
# @return [String]
|
5776
|
+
#
|
5777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DocumentLimitExceeded AWS API Documentation
|
5778
|
+
#
|
5779
|
+
class DocumentLimitExceeded < Struct.new(
|
5780
|
+
:message)
|
5781
|
+
include Aws::Structure
|
5782
|
+
end
|
5783
|
+
|
5618
5784
|
# Parameters specified in a System Manager document that run on the
|
5619
5785
|
# server when the command is run.
|
5620
5786
|
#
|
@@ -5647,6 +5813,21 @@ module Aws::SSM
|
|
5647
5813
|
include Aws::Structure
|
5648
5814
|
end
|
5649
5815
|
|
5816
|
+
# The document cannot be shared with more AWS user accounts. You can
|
5817
|
+
# share a document with a maximum of 20 accounts. You can publicly share
|
5818
|
+
# up to five documents. If you need to increase this limit, contact AWS
|
5819
|
+
# Support.
|
5820
|
+
#
|
5821
|
+
# @!attribute [rw] message
|
5822
|
+
# @return [String]
|
5823
|
+
#
|
5824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DocumentPermissionLimit AWS API Documentation
|
5825
|
+
#
|
5826
|
+
class DocumentPermissionLimit < Struct.new(
|
5827
|
+
:message)
|
5828
|
+
include Aws::Structure
|
5829
|
+
end
|
5830
|
+
|
5650
5831
|
# Version information about the document.
|
5651
5832
|
#
|
5652
5833
|
# @!attribute [rw] name
|
@@ -5701,6 +5882,65 @@ module Aws::SSM
|
|
5701
5882
|
include Aws::Structure
|
5702
5883
|
end
|
5703
5884
|
|
5885
|
+
# The document has too many versions. Delete one or more document
|
5886
|
+
# versions and try again.
|
5887
|
+
#
|
5888
|
+
# @!attribute [rw] message
|
5889
|
+
# @return [String]
|
5890
|
+
#
|
5891
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DocumentVersionLimitExceeded AWS API Documentation
|
5892
|
+
#
|
5893
|
+
class DocumentVersionLimitExceeded < Struct.new(
|
5894
|
+
:message)
|
5895
|
+
include Aws::Structure
|
5896
|
+
end
|
5897
|
+
|
5898
|
+
# Error returned when the ID specified for a resource, such as a
|
5899
|
+
# Maintenance Window or Patch baseline, doesn't exist.
|
5900
|
+
#
|
5901
|
+
# For information about resource limits in Systems Manager, see [AWS
|
5902
|
+
# Systems Manager Limits][1].
|
5903
|
+
#
|
5904
|
+
#
|
5905
|
+
#
|
5906
|
+
# [1]: http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_ssm
|
5907
|
+
#
|
5908
|
+
# @!attribute [rw] message
|
5909
|
+
# @return [String]
|
5910
|
+
#
|
5911
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DoesNotExistException AWS API Documentation
|
5912
|
+
#
|
5913
|
+
class DoesNotExistException < Struct.new(
|
5914
|
+
:message)
|
5915
|
+
include Aws::Structure
|
5916
|
+
end
|
5917
|
+
|
5918
|
+
# The content of the association document matches another document.
|
5919
|
+
# Change the content of the document and try again.
|
5920
|
+
#
|
5921
|
+
# @!attribute [rw] message
|
5922
|
+
# @return [String]
|
5923
|
+
#
|
5924
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DuplicateDocumentContent AWS API Documentation
|
5925
|
+
#
|
5926
|
+
class DuplicateDocumentContent < Struct.new(
|
5927
|
+
:message)
|
5928
|
+
include Aws::Structure
|
5929
|
+
end
|
5930
|
+
|
5931
|
+
# The version name has already been used in this document. Specify a
|
5932
|
+
# different version name, and then try again.
|
5933
|
+
#
|
5934
|
+
# @!attribute [rw] message
|
5935
|
+
# @return [String]
|
5936
|
+
#
|
5937
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DuplicateDocumentVersionName AWS API Documentation
|
5938
|
+
#
|
5939
|
+
class DuplicateDocumentVersionName < Struct.new(
|
5940
|
+
:message)
|
5941
|
+
include Aws::Structure
|
5942
|
+
end
|
5943
|
+
|
5704
5944
|
# The EffectivePatch structure defines metadata about a patch along with
|
5705
5945
|
# the approval state of the patch in a particular patch baseline. The
|
5706
5946
|
# approval state includes information about whether the patch is
|
@@ -5777,6 +6017,19 @@ module Aws::SSM
|
|
5777
6017
|
include Aws::Structure
|
5778
6018
|
end
|
5779
6019
|
|
6020
|
+
# You attempted to register a LAMBDA or STEP\_FUNCTION task in a region
|
6021
|
+
# where the corresponding service is not available.
|
6022
|
+
#
|
6023
|
+
# @!attribute [rw] message
|
6024
|
+
# @return [String]
|
6025
|
+
#
|
6026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/FeatureNotAvailableException AWS API Documentation
|
6027
|
+
#
|
6028
|
+
class FeatureNotAvailableException < Struct.new(
|
6029
|
+
:message)
|
6030
|
+
include Aws::Structure
|
6031
|
+
end
|
6032
|
+
|
5780
6033
|
# @note When making an API call, you may pass GetAutomationExecutionRequest
|
5781
6034
|
# data as a hash:
|
5782
6035
|
#
|
@@ -7320,6 +7573,77 @@ module Aws::SSM
|
|
7320
7573
|
include Aws::Structure
|
7321
7574
|
end
|
7322
7575
|
|
7576
|
+
# A hierarchy can have a maximum of 15 levels. For more information, see
|
7577
|
+
# [Requirements and Constraints for Parameter Names][1] in the *AWS
|
7578
|
+
# Systems Manager User Guide*.
|
7579
|
+
#
|
7580
|
+
#
|
7581
|
+
#
|
7582
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-parameter-name-constraints.html
|
7583
|
+
#
|
7584
|
+
# @!attribute [rw] message
|
7585
|
+
# A hierarchy can have a maximum of 15 levels. For more information,
|
7586
|
+
# see [Requirements and Constraints for Parameter Names][1] in the
|
7587
|
+
# *AWS Systems Manager User Guide*.
|
7588
|
+
#
|
7589
|
+
#
|
7590
|
+
#
|
7591
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-parameter-name-constraints.html
|
7592
|
+
# @return [String]
|
7593
|
+
#
|
7594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/HierarchyLevelLimitExceededException AWS API Documentation
|
7595
|
+
#
|
7596
|
+
class HierarchyLevelLimitExceededException < Struct.new(
|
7597
|
+
:message)
|
7598
|
+
include Aws::Structure
|
7599
|
+
end
|
7600
|
+
|
7601
|
+
# Parameter Store does not support changing a parameter type in a
|
7602
|
+
# hierarchy. For example, you can't change a parameter from a String
|
7603
|
+
# type to a SecureString type. You must create a new, unique parameter.
|
7604
|
+
#
|
7605
|
+
# @!attribute [rw] message
|
7606
|
+
# Parameter Store does not support changing a parameter type in a
|
7607
|
+
# hierarchy. For example, you can't change a parameter from a String
|
7608
|
+
# type to a SecureString type. You must create a new, unique
|
7609
|
+
# parameter.
|
7610
|
+
# @return [String]
|
7611
|
+
#
|
7612
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/HierarchyTypeMismatchException AWS API Documentation
|
7613
|
+
#
|
7614
|
+
class HierarchyTypeMismatchException < Struct.new(
|
7615
|
+
:message)
|
7616
|
+
include Aws::Structure
|
7617
|
+
end
|
7618
|
+
|
7619
|
+
# Error returned when an idempotent operation is retried and the
|
7620
|
+
# parameters don't match the original call to the API with the same
|
7621
|
+
# idempotency token.
|
7622
|
+
#
|
7623
|
+
# @!attribute [rw] message
|
7624
|
+
# @return [String]
|
7625
|
+
#
|
7626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/IdempotentParameterMismatch AWS API Documentation
|
7627
|
+
#
|
7628
|
+
class IdempotentParameterMismatch < Struct.new(
|
7629
|
+
:message)
|
7630
|
+
include Aws::Structure
|
7631
|
+
end
|
7632
|
+
|
7633
|
+
# There is a conflict in the policies specified for this parameter. You
|
7634
|
+
# can't, for example, specify two Expiration policies for a parameter.
|
7635
|
+
# Review your policies, and try again.
|
7636
|
+
#
|
7637
|
+
# @!attribute [rw] message
|
7638
|
+
# @return [String]
|
7639
|
+
#
|
7640
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/IncompatiblePolicyException AWS API Documentation
|
7641
|
+
#
|
7642
|
+
class IncompatiblePolicyException < Struct.new(
|
7643
|
+
:message)
|
7644
|
+
include Aws::Structure
|
7645
|
+
end
|
7646
|
+
|
7323
7647
|
# Status information about the aggregated associations.
|
7324
7648
|
#
|
7325
7649
|
# @!attribute [rw] detailed_status
|
@@ -7817,41 +8141,581 @@ module Aws::SSM
|
|
7817
8141
|
include Aws::Structure
|
7818
8142
|
end
|
7819
8143
|
|
7820
|
-
#
|
7821
|
-
# execution.
|
8144
|
+
# An error occurred on the server side.
|
7822
8145
|
#
|
7823
|
-
#
|
7824
|
-
#
|
8146
|
+
# @!attribute [rw] message
|
8147
|
+
# @return [String]
|
7825
8148
|
#
|
7826
|
-
#
|
7827
|
-
#
|
7828
|
-
|
7829
|
-
|
7830
|
-
|
7831
|
-
|
7832
|
-
|
7833
|
-
#
|
7834
|
-
#
|
7835
|
-
#
|
7836
|
-
#
|
7837
|
-
#
|
7838
|
-
#
|
7839
|
-
#
|
7840
|
-
#
|
7841
|
-
|
7842
|
-
|
7843
|
-
|
7844
|
-
|
7845
|
-
|
7846
|
-
#
|
7847
|
-
#
|
7848
|
-
#
|
7849
|
-
#
|
7850
|
-
#
|
7851
|
-
#
|
7852
|
-
#
|
7853
|
-
#
|
7854
|
-
|
8149
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InternalServerError AWS API Documentation
|
8150
|
+
#
|
8151
|
+
class InternalServerError < Struct.new(
|
8152
|
+
:message)
|
8153
|
+
include Aws::Structure
|
8154
|
+
end
|
8155
|
+
|
8156
|
+
# The activation is not valid. The activation might have been deleted,
|
8157
|
+
# or the ActivationId and the ActivationCode do not match.
|
8158
|
+
#
|
8159
|
+
# @!attribute [rw] message
|
8160
|
+
# @return [String]
|
8161
|
+
#
|
8162
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidActivation AWS API Documentation
|
8163
|
+
#
|
8164
|
+
class InvalidActivation < Struct.new(
|
8165
|
+
:message)
|
8166
|
+
include Aws::Structure
|
8167
|
+
end
|
8168
|
+
|
8169
|
+
# The activation ID is not valid. Verify the you entered the correct
|
8170
|
+
# ActivationId or ActivationCode and try again.
|
8171
|
+
#
|
8172
|
+
# @!attribute [rw] message
|
8173
|
+
# @return [String]
|
8174
|
+
#
|
8175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidActivationId AWS API Documentation
|
8176
|
+
#
|
8177
|
+
class InvalidActivationId < Struct.new(
|
8178
|
+
:message)
|
8179
|
+
include Aws::Structure
|
8180
|
+
end
|
8181
|
+
|
8182
|
+
# The specified aggregator is not valid for inventory groups. Verify
|
8183
|
+
# that the aggregator uses a valid inventory type such as
|
8184
|
+
# `AWS:Application` or `AWS:InstanceInformation`.
|
8185
|
+
#
|
8186
|
+
# @!attribute [rw] message
|
8187
|
+
# @return [String]
|
8188
|
+
#
|
8189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidAggregatorException AWS API Documentation
|
8190
|
+
#
|
8191
|
+
class InvalidAggregatorException < Struct.new(
|
8192
|
+
:message)
|
8193
|
+
include Aws::Structure
|
8194
|
+
end
|
8195
|
+
|
8196
|
+
# The request does not meet the regular expression requirement.
|
8197
|
+
#
|
8198
|
+
# @!attribute [rw] message
|
8199
|
+
# The request does not meet the regular expression requirement.
|
8200
|
+
# @return [String]
|
8201
|
+
#
|
8202
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidAllowedPatternException AWS API Documentation
|
8203
|
+
#
|
8204
|
+
class InvalidAllowedPatternException < Struct.new(
|
8205
|
+
:message)
|
8206
|
+
include Aws::Structure
|
8207
|
+
end
|
8208
|
+
|
8209
|
+
# The association is not valid or does not exist.
|
8210
|
+
#
|
8211
|
+
# @!attribute [rw] message
|
8212
|
+
# @return [String]
|
8213
|
+
#
|
8214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidAssociation AWS API Documentation
|
8215
|
+
#
|
8216
|
+
class InvalidAssociation < Struct.new(
|
8217
|
+
:message)
|
8218
|
+
include Aws::Structure
|
8219
|
+
end
|
8220
|
+
|
8221
|
+
# The version you specified is not valid. Use ListAssociationVersions to
|
8222
|
+
# view all versions of an association according to the association ID.
|
8223
|
+
# Or, use the `$LATEST` parameter to view the latest version of the
|
8224
|
+
# association.
|
8225
|
+
#
|
8226
|
+
# @!attribute [rw] message
|
8227
|
+
# @return [String]
|
8228
|
+
#
|
8229
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidAssociationVersion AWS API Documentation
|
8230
|
+
#
|
8231
|
+
class InvalidAssociationVersion < Struct.new(
|
8232
|
+
:message)
|
8233
|
+
include Aws::Structure
|
8234
|
+
end
|
8235
|
+
|
8236
|
+
# The supplied parameters for invoking the specified Automation document
|
8237
|
+
# are incorrect. For example, they may not match the set of parameters
|
8238
|
+
# permitted for the specified Automation document.
|
8239
|
+
#
|
8240
|
+
# @!attribute [rw] message
|
8241
|
+
# @return [String]
|
8242
|
+
#
|
8243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidAutomationExecutionParametersException AWS API Documentation
|
8244
|
+
#
|
8245
|
+
class InvalidAutomationExecutionParametersException < Struct.new(
|
8246
|
+
:message)
|
8247
|
+
include Aws::Structure
|
8248
|
+
end
|
8249
|
+
|
8250
|
+
# The signal is not valid for the current Automation execution.
|
8251
|
+
#
|
8252
|
+
# @!attribute [rw] message
|
8253
|
+
# @return [String]
|
8254
|
+
#
|
8255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidAutomationSignalException AWS API Documentation
|
8256
|
+
#
|
8257
|
+
class InvalidAutomationSignalException < Struct.new(
|
8258
|
+
:message)
|
8259
|
+
include Aws::Structure
|
8260
|
+
end
|
8261
|
+
|
8262
|
+
# The specified update status operation is not valid.
|
8263
|
+
#
|
8264
|
+
# @!attribute [rw] message
|
8265
|
+
# @return [String]
|
8266
|
+
#
|
8267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidAutomationStatusUpdateException AWS API Documentation
|
8268
|
+
#
|
8269
|
+
class InvalidAutomationStatusUpdateException < Struct.new(
|
8270
|
+
:message)
|
8271
|
+
include Aws::Structure
|
8272
|
+
end
|
8273
|
+
|
8274
|
+
# One or more of the parameters specified for the delete operation is
|
8275
|
+
# not valid. Verify all parameters and try again.
|
8276
|
+
#
|
8277
|
+
# @!attribute [rw] message
|
8278
|
+
# @return [String]
|
8279
|
+
#
|
8280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidDeleteInventoryParametersException AWS API Documentation
|
8281
|
+
#
|
8282
|
+
class InvalidDeleteInventoryParametersException < Struct.new(
|
8283
|
+
:message)
|
8284
|
+
include Aws::Structure
|
8285
|
+
end
|
8286
|
+
|
8287
|
+
# The ID specified for the delete operation does not exist or is not
|
8288
|
+
# valide. Verify the ID and try again.
|
8289
|
+
#
|
8290
|
+
# @!attribute [rw] message
|
8291
|
+
# @return [String]
|
8292
|
+
#
|
8293
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidDeletionIdException AWS API Documentation
|
8294
|
+
#
|
8295
|
+
class InvalidDeletionIdException < Struct.new(
|
8296
|
+
:message)
|
8297
|
+
include Aws::Structure
|
8298
|
+
end
|
8299
|
+
|
8300
|
+
# The specified document does not exist.
|
8301
|
+
#
|
8302
|
+
# @!attribute [rw] message
|
8303
|
+
# The document does not exist or the document is not available to the
|
8304
|
+
# user. This exception can be issued by CreateAssociation,
|
8305
|
+
# CreateAssociationBatch, DeleteAssociation, DeleteDocument,
|
8306
|
+
# DescribeAssociation, DescribeDocument, GetDocument, SendCommand, or
|
8307
|
+
# UpdateAssociationStatus.
|
8308
|
+
# @return [String]
|
8309
|
+
#
|
8310
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidDocument AWS API Documentation
|
8311
|
+
#
|
8312
|
+
class InvalidDocument < Struct.new(
|
8313
|
+
:message)
|
8314
|
+
include Aws::Structure
|
8315
|
+
end
|
8316
|
+
|
8317
|
+
# The content for the document is not valid.
|
8318
|
+
#
|
8319
|
+
# @!attribute [rw] message
|
8320
|
+
# A description of the validation error.
|
8321
|
+
# @return [String]
|
8322
|
+
#
|
8323
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidDocumentContent AWS API Documentation
|
8324
|
+
#
|
8325
|
+
class InvalidDocumentContent < Struct.new(
|
8326
|
+
:message)
|
8327
|
+
include Aws::Structure
|
8328
|
+
end
|
8329
|
+
|
8330
|
+
# You attempted to delete a document while it is still shared. You must
|
8331
|
+
# stop sharing the document before you can delete it.
|
8332
|
+
#
|
8333
|
+
# @!attribute [rw] message
|
8334
|
+
# @return [String]
|
8335
|
+
#
|
8336
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidDocumentOperation AWS API Documentation
|
8337
|
+
#
|
8338
|
+
class InvalidDocumentOperation < Struct.new(
|
8339
|
+
:message)
|
8340
|
+
include Aws::Structure
|
8341
|
+
end
|
8342
|
+
|
8343
|
+
# The version of the document schema is not supported.
|
8344
|
+
#
|
8345
|
+
# @!attribute [rw] message
|
8346
|
+
# @return [String]
|
8347
|
+
#
|
8348
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidDocumentSchemaVersion AWS API Documentation
|
8349
|
+
#
|
8350
|
+
class InvalidDocumentSchemaVersion < Struct.new(
|
8351
|
+
:message)
|
8352
|
+
include Aws::Structure
|
8353
|
+
end
|
8354
|
+
|
8355
|
+
# The document version is not valid or does not exist.
|
8356
|
+
#
|
8357
|
+
# @!attribute [rw] message
|
8358
|
+
# @return [String]
|
8359
|
+
#
|
8360
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidDocumentVersion AWS API Documentation
|
8361
|
+
#
|
8362
|
+
class InvalidDocumentVersion < Struct.new(
|
8363
|
+
:message)
|
8364
|
+
include Aws::Structure
|
8365
|
+
end
|
8366
|
+
|
8367
|
+
# The filter name is not valid. Verify the you entered the correct name
|
8368
|
+
# and try again.
|
8369
|
+
#
|
8370
|
+
# @!attribute [rw] message
|
8371
|
+
# @return [String]
|
8372
|
+
#
|
8373
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidFilter AWS API Documentation
|
8374
|
+
#
|
8375
|
+
class InvalidFilter < Struct.new(
|
8376
|
+
:message)
|
8377
|
+
include Aws::Structure
|
8378
|
+
end
|
8379
|
+
|
8380
|
+
# The specified filter option is not valid. Valid options are Equals and
|
8381
|
+
# BeginsWith. For Path filter, valid options are Recursive and OneLevel.
|
8382
|
+
#
|
8383
|
+
# @!attribute [rw] message
|
8384
|
+
# The specified filter option is not valid. Valid options are Equals
|
8385
|
+
# and BeginsWith. For Path filter, valid options are Recursive and
|
8386
|
+
# OneLevel.
|
8387
|
+
# @return [String]
|
8388
|
+
#
|
8389
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidFilterOption AWS API Documentation
|
8390
|
+
#
|
8391
|
+
class InvalidFilterOption < Struct.new(
|
8392
|
+
:message)
|
8393
|
+
include Aws::Structure
|
8394
|
+
end
|
8395
|
+
|
8396
|
+
# The filter value is not valid. Verify the value and try again.
|
8397
|
+
#
|
8398
|
+
# @!attribute [rw] message
|
8399
|
+
# @return [String]
|
8400
|
+
#
|
8401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidFilterValue AWS API Documentation
|
8402
|
+
#
|
8403
|
+
class InvalidFilterValue < Struct.new(
|
8404
|
+
:message)
|
8405
|
+
include Aws::Structure
|
8406
|
+
end
|
8407
|
+
|
8408
|
+
# The following problems can cause this exception:
|
8409
|
+
#
|
8410
|
+
# You do not have permission to access the instance.
|
8411
|
+
#
|
8412
|
+
# SSM Agent is not running. On managed instances and Linux instances,
|
8413
|
+
# verify that the SSM Agent is running. On EC2 Windows instances, verify
|
8414
|
+
# that the EC2Config service is running.
|
8415
|
+
#
|
8416
|
+
# SSM Agent or EC2Config service is not registered to the SSM endpoint.
|
8417
|
+
# Try reinstalling SSM Agent or EC2Config service.
|
8418
|
+
#
|
8419
|
+
# The instance is not in valid state. Valid states are: Running,
|
8420
|
+
# Pending, Stopped, Stopping. Invalid states are: Shutting-down and
|
8421
|
+
# Terminated.
|
8422
|
+
#
|
8423
|
+
# @!attribute [rw] message
|
8424
|
+
# @return [String]
|
8425
|
+
#
|
8426
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidInstanceId AWS API Documentation
|
8427
|
+
#
|
8428
|
+
class InvalidInstanceId < Struct.new(
|
8429
|
+
:message)
|
8430
|
+
include Aws::Structure
|
8431
|
+
end
|
8432
|
+
|
8433
|
+
# The specified filter value is not valid.
|
8434
|
+
#
|
8435
|
+
# @!attribute [rw] message
|
8436
|
+
# @return [String]
|
8437
|
+
#
|
8438
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidInstanceInformationFilterValue AWS API Documentation
|
8439
|
+
#
|
8440
|
+
class InvalidInstanceInformationFilterValue < Struct.new(
|
8441
|
+
:message)
|
8442
|
+
include Aws::Structure
|
8443
|
+
end
|
8444
|
+
|
8445
|
+
# The specified inventory group is not valid.
|
8446
|
+
#
|
8447
|
+
# @!attribute [rw] message
|
8448
|
+
# @return [String]
|
8449
|
+
#
|
8450
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidInventoryGroupException AWS API Documentation
|
8451
|
+
#
|
8452
|
+
class InvalidInventoryGroupException < Struct.new(
|
8453
|
+
:message)
|
8454
|
+
include Aws::Structure
|
8455
|
+
end
|
8456
|
+
|
8457
|
+
# You specified invalid keys or values in the `Context` attribute for
|
8458
|
+
# `InventoryItem`. Verify the keys and values, and try again.
|
8459
|
+
#
|
8460
|
+
# @!attribute [rw] message
|
8461
|
+
# @return [String]
|
8462
|
+
#
|
8463
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidInventoryItemContextException AWS API Documentation
|
8464
|
+
#
|
8465
|
+
class InvalidInventoryItemContextException < Struct.new(
|
8466
|
+
:message)
|
8467
|
+
include Aws::Structure
|
8468
|
+
end
|
8469
|
+
|
8470
|
+
# The request is not valid.
|
8471
|
+
#
|
8472
|
+
# @!attribute [rw] message
|
8473
|
+
# @return [String]
|
8474
|
+
#
|
8475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidInventoryRequestException AWS API Documentation
|
8476
|
+
#
|
8477
|
+
class InvalidInventoryRequestException < Struct.new(
|
8478
|
+
:message)
|
8479
|
+
include Aws::Structure
|
8480
|
+
end
|
8481
|
+
|
8482
|
+
# One or more content items is not valid.
|
8483
|
+
#
|
8484
|
+
# @!attribute [rw] type_name
|
8485
|
+
# @return [String]
|
8486
|
+
#
|
8487
|
+
# @!attribute [rw] message
|
8488
|
+
# @return [String]
|
8489
|
+
#
|
8490
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidItemContentException AWS API Documentation
|
8491
|
+
#
|
8492
|
+
class InvalidItemContentException < Struct.new(
|
8493
|
+
:type_name,
|
8494
|
+
:message)
|
8495
|
+
include Aws::Structure
|
8496
|
+
end
|
8497
|
+
|
8498
|
+
# The query key ID is not valid.
|
8499
|
+
#
|
8500
|
+
# @!attribute [rw] message
|
8501
|
+
# @return [String]
|
8502
|
+
#
|
8503
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidKeyId AWS API Documentation
|
8504
|
+
#
|
8505
|
+
class InvalidKeyId < Struct.new(
|
8506
|
+
:message)
|
8507
|
+
include Aws::Structure
|
8508
|
+
end
|
8509
|
+
|
8510
|
+
# The specified token is not valid.
|
8511
|
+
#
|
8512
|
+
# @!attribute [rw] message
|
8513
|
+
# @return [String]
|
8514
|
+
#
|
8515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidNextToken AWS API Documentation
|
8516
|
+
#
|
8517
|
+
class InvalidNextToken < Struct.new(
|
8518
|
+
:message)
|
8519
|
+
include Aws::Structure
|
8520
|
+
end
|
8521
|
+
|
8522
|
+
# One or more configuration items is not valid. Verify that a valid
|
8523
|
+
# Amazon Resource Name (ARN) was provided for an Amazon SNS topic.
|
8524
|
+
#
|
8525
|
+
# @!attribute [rw] message
|
8526
|
+
# @return [String]
|
8527
|
+
#
|
8528
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidNotificationConfig AWS API Documentation
|
8529
|
+
#
|
8530
|
+
class InvalidNotificationConfig < Struct.new(
|
8531
|
+
:message)
|
8532
|
+
include Aws::Structure
|
8533
|
+
end
|
8534
|
+
|
8535
|
+
# The delete inventory option specified is not valid. Verify the option
|
8536
|
+
# and try again.
|
8537
|
+
#
|
8538
|
+
# @!attribute [rw] message
|
8539
|
+
# @return [String]
|
8540
|
+
#
|
8541
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidOptionException AWS API Documentation
|
8542
|
+
#
|
8543
|
+
class InvalidOptionException < Struct.new(
|
8544
|
+
:message)
|
8545
|
+
include Aws::Structure
|
8546
|
+
end
|
8547
|
+
|
8548
|
+
# You must specify values for all required parameters in the Systems
|
8549
|
+
# Manager document. You can only supply values to parameters defined in
|
8550
|
+
# the Systems Manager document.
|
8551
|
+
#
|
8552
|
+
# @!attribute [rw] message
|
8553
|
+
# @return [String]
|
8554
|
+
#
|
8555
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidParameters AWS API Documentation
|
8556
|
+
#
|
8557
|
+
class InvalidParameters < Struct.new(
|
8558
|
+
:message)
|
8559
|
+
include Aws::Structure
|
8560
|
+
end
|
8561
|
+
|
8562
|
+
# The permission type is not supported. *Share* is the only supported
|
8563
|
+
# permission type.
|
8564
|
+
#
|
8565
|
+
# @!attribute [rw] message
|
8566
|
+
# @return [String]
|
8567
|
+
#
|
8568
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidPermissionType AWS API Documentation
|
8569
|
+
#
|
8570
|
+
class InvalidPermissionType < Struct.new(
|
8571
|
+
:message)
|
8572
|
+
include Aws::Structure
|
8573
|
+
end
|
8574
|
+
|
8575
|
+
# A policy attribute or its value is invalid.
|
8576
|
+
#
|
8577
|
+
# @!attribute [rw] message
|
8578
|
+
# @return [String]
|
8579
|
+
#
|
8580
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidPolicyAttributeException AWS API Documentation
|
8581
|
+
#
|
8582
|
+
class InvalidPolicyAttributeException < Struct.new(
|
8583
|
+
:message)
|
8584
|
+
include Aws::Structure
|
8585
|
+
end
|
8586
|
+
|
8587
|
+
# The policy type is not supported. Parameter Store supports the
|
8588
|
+
# following policy types: Expiration, ExpirationNotification, and
|
8589
|
+
# NoChangeNotification.
|
8590
|
+
#
|
8591
|
+
# @!attribute [rw] message
|
8592
|
+
# @return [String]
|
8593
|
+
#
|
8594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidPolicyTypeException AWS API Documentation
|
8595
|
+
#
|
8596
|
+
class InvalidPolicyTypeException < Struct.new(
|
8597
|
+
:message)
|
8598
|
+
include Aws::Structure
|
8599
|
+
end
|
8600
|
+
|
8601
|
+
# The specified inventory item result attribute is not valid.
|
8602
|
+
#
|
8603
|
+
# @!attribute [rw] message
|
8604
|
+
# @return [String]
|
8605
|
+
#
|
8606
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidResultAttributeException AWS API Documentation
|
8607
|
+
#
|
8608
|
+
class InvalidResultAttributeException < Struct.new(
|
8609
|
+
:message)
|
8610
|
+
include Aws::Structure
|
8611
|
+
end
|
8612
|
+
|
8613
|
+
# The role name can't contain invalid characters. Also verify that you
|
8614
|
+
# specified an IAM role for notifications that includes the required
|
8615
|
+
# trust policy. For information about configuring the IAM role for Run
|
8616
|
+
# Command notifications, see [Configuring Amazon SNS Notifications for
|
8617
|
+
# Run Command][1] in the *AWS Systems Manager User Guide*.
|
8618
|
+
#
|
8619
|
+
#
|
8620
|
+
#
|
8621
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/rc-sns-notifications.html
|
8622
|
+
#
|
8623
|
+
# @!attribute [rw] message
|
8624
|
+
# @return [String]
|
8625
|
+
#
|
8626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidRole AWS API Documentation
|
8627
|
+
#
|
8628
|
+
class InvalidRole < Struct.new(
|
8629
|
+
:message)
|
8630
|
+
include Aws::Structure
|
8631
|
+
end
|
8632
|
+
|
8633
|
+
# The schedule is invalid. Verify your cron or rate expression and try
|
8634
|
+
# again.
|
8635
|
+
#
|
8636
|
+
# @!attribute [rw] message
|
8637
|
+
# @return [String]
|
8638
|
+
#
|
8639
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidSchedule AWS API Documentation
|
8640
|
+
#
|
8641
|
+
class InvalidSchedule < Struct.new(
|
8642
|
+
:message)
|
8643
|
+
include Aws::Structure
|
8644
|
+
end
|
8645
|
+
|
8646
|
+
# The target is not valid or does not exist. It might not be configured
|
8647
|
+
# for EC2 Systems Manager or you might not have permission to perform
|
8648
|
+
# the operation.
|
8649
|
+
#
|
8650
|
+
# @!attribute [rw] message
|
8651
|
+
# @return [String]
|
8652
|
+
#
|
8653
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidTarget AWS API Documentation
|
8654
|
+
#
|
8655
|
+
class InvalidTarget < Struct.new(
|
8656
|
+
:message)
|
8657
|
+
include Aws::Structure
|
8658
|
+
end
|
8659
|
+
|
8660
|
+
# The parameter type name is not valid.
|
8661
|
+
#
|
8662
|
+
# @!attribute [rw] message
|
8663
|
+
# @return [String]
|
8664
|
+
#
|
8665
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidTypeNameException AWS API Documentation
|
8666
|
+
#
|
8667
|
+
class InvalidTypeNameException < Struct.new(
|
8668
|
+
:message)
|
8669
|
+
include Aws::Structure
|
8670
|
+
end
|
8671
|
+
|
8672
|
+
# The update is not valid.
|
8673
|
+
#
|
8674
|
+
# @!attribute [rw] message
|
8675
|
+
# @return [String]
|
8676
|
+
#
|
8677
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidUpdate AWS API Documentation
|
8678
|
+
#
|
8679
|
+
class InvalidUpdate < Struct.new(
|
8680
|
+
:message)
|
8681
|
+
include Aws::Structure
|
8682
|
+
end
|
8683
|
+
|
8684
|
+
# Specifies the inventory type and attribute for the aggregation
|
8685
|
+
# execution.
|
8686
|
+
#
|
8687
|
+
# @note When making an API call, you may pass InventoryAggregator
|
8688
|
+
# data as a hash:
|
8689
|
+
#
|
8690
|
+
# {
|
8691
|
+
# expression: "InventoryAggregatorExpression",
|
8692
|
+
# aggregators: [
|
8693
|
+
# {
|
8694
|
+
# expression: "InventoryAggregatorExpression",
|
8695
|
+
# aggregators: {
|
8696
|
+
# # recursive InventoryAggregatorList
|
8697
|
+
# },
|
8698
|
+
# groups: [
|
8699
|
+
# {
|
8700
|
+
# name: "InventoryGroupName", # required
|
8701
|
+
# filters: [ # required
|
8702
|
+
# {
|
8703
|
+
# key: "InventoryFilterKey", # required
|
8704
|
+
# values: ["InventoryFilterValue"], # required
|
8705
|
+
# type: "Equal", # accepts Equal, NotEqual, BeginWith, LessThan, GreaterThan, Exists
|
8706
|
+
# },
|
8707
|
+
# ],
|
8708
|
+
# },
|
8709
|
+
# ],
|
8710
|
+
# },
|
8711
|
+
# ],
|
8712
|
+
# groups: [
|
8713
|
+
# {
|
8714
|
+
# name: "InventoryGroupName", # required
|
8715
|
+
# filters: [ # required
|
8716
|
+
# {
|
8717
|
+
# key: "InventoryFilterKey", # required
|
8718
|
+
# values: ["InventoryFilterValue"], # required
|
7855
8719
|
# type: "Equal", # accepts Equal, NotEqual, BeginWith, LessThan, GreaterThan, Exists
|
7856
8720
|
# },
|
7857
8721
|
# ],
|
@@ -8233,6 +9097,38 @@ module Aws::SSM
|
|
8233
9097
|
include Aws::Structure
|
8234
9098
|
end
|
8235
9099
|
|
9100
|
+
# The inventory item has invalid content.
|
9101
|
+
#
|
9102
|
+
# @!attribute [rw] type_name
|
9103
|
+
# @return [String]
|
9104
|
+
#
|
9105
|
+
# @!attribute [rw] message
|
9106
|
+
# @return [String]
|
9107
|
+
#
|
9108
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ItemContentMismatchException AWS API Documentation
|
9109
|
+
#
|
9110
|
+
class ItemContentMismatchException < Struct.new(
|
9111
|
+
:type_name,
|
9112
|
+
:message)
|
9113
|
+
include Aws::Structure
|
9114
|
+
end
|
9115
|
+
|
9116
|
+
# The inventory item size has exceeded the size limit.
|
9117
|
+
#
|
9118
|
+
# @!attribute [rw] type_name
|
9119
|
+
# @return [String]
|
9120
|
+
#
|
9121
|
+
# @!attribute [rw] message
|
9122
|
+
# @return [String]
|
9123
|
+
#
|
9124
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ItemSizeLimitExceededException AWS API Documentation
|
9125
|
+
#
|
9126
|
+
class ItemSizeLimitExceededException < Struct.new(
|
9127
|
+
:type_name,
|
9128
|
+
:message)
|
9129
|
+
include Aws::Structure
|
9130
|
+
end
|
9131
|
+
|
8236
9132
|
# @note When making an API call, you may pass LabelParameterVersionRequest
|
8237
9133
|
# data as a hash:
|
8238
9134
|
#
|
@@ -9831,6 +10727,18 @@ module Aws::SSM
|
|
9831
10727
|
include Aws::Structure
|
9832
10728
|
end
|
9833
10729
|
|
10730
|
+
# The size limit of a document is 64 KB.
|
10731
|
+
#
|
10732
|
+
# @!attribute [rw] message
|
10733
|
+
# @return [String]
|
10734
|
+
#
|
10735
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/MaxDocumentSizeExceeded AWS API Documentation
|
10736
|
+
#
|
10737
|
+
class MaxDocumentSizeExceeded < Struct.new(
|
10738
|
+
:message)
|
10739
|
+
include Aws::Structure
|
10740
|
+
end
|
10741
|
+
|
9834
10742
|
# @note When making an API call, you may pass ModifyDocumentPermissionRequest
|
9835
10743
|
# data as a hash:
|
9836
10744
|
#
|
@@ -10020,6 +10928,18 @@ module Aws::SSM
|
|
10020
10928
|
include Aws::Structure
|
10021
10929
|
end
|
10022
10930
|
|
10931
|
+
# The parameter already exists. You can't create duplicate parameters.
|
10932
|
+
#
|
10933
|
+
# @!attribute [rw] message
|
10934
|
+
# @return [String]
|
10935
|
+
#
|
10936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParameterAlreadyExists AWS API Documentation
|
10937
|
+
#
|
10938
|
+
class ParameterAlreadyExists < Struct.new(
|
10939
|
+
:message)
|
10940
|
+
include Aws::Structure
|
10941
|
+
end
|
10942
|
+
|
10023
10943
|
# Information about parameter usage.
|
10024
10944
|
#
|
10025
10945
|
# @!attribute [rw] name
|
@@ -10118,6 +11038,31 @@ module Aws::SSM
|
|
10118
11038
|
include Aws::Structure
|
10119
11039
|
end
|
10120
11040
|
|
11041
|
+
# You have exceeded the number of parameters for this AWS account.
|
11042
|
+
# Delete one or more parameters and try again.
|
11043
|
+
#
|
11044
|
+
# @!attribute [rw] message
|
11045
|
+
# @return [String]
|
11046
|
+
#
|
11047
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParameterLimitExceeded AWS API Documentation
|
11048
|
+
#
|
11049
|
+
class ParameterLimitExceeded < Struct.new(
|
11050
|
+
:message)
|
11051
|
+
include Aws::Structure
|
11052
|
+
end
|
11053
|
+
|
11054
|
+
# The parameter exceeded the maximum number of allowed versions.
|
11055
|
+
#
|
11056
|
+
# @!attribute [rw] message
|
11057
|
+
# @return [String]
|
11058
|
+
#
|
11059
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParameterMaxVersionLimitExceeded AWS API Documentation
|
11060
|
+
#
|
11061
|
+
class ParameterMaxVersionLimitExceeded < Struct.new(
|
11062
|
+
:message)
|
11063
|
+
include Aws::Structure
|
11064
|
+
end
|
11065
|
+
|
10121
11066
|
# Metada includes information like the ARN of the last user and the
|
10122
11067
|
# date/time the parameter was last used.
|
10123
11068
|
#
|
@@ -10181,6 +11126,31 @@ module Aws::SSM
|
|
10181
11126
|
include Aws::Structure
|
10182
11127
|
end
|
10183
11128
|
|
11129
|
+
# The parameter could not be found. Verify the name and try again.
|
11130
|
+
#
|
11131
|
+
# @!attribute [rw] message
|
11132
|
+
# @return [String]
|
11133
|
+
#
|
11134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParameterNotFound AWS API Documentation
|
11135
|
+
#
|
11136
|
+
class ParameterNotFound < Struct.new(
|
11137
|
+
:message)
|
11138
|
+
include Aws::Structure
|
11139
|
+
end
|
11140
|
+
|
11141
|
+
# The parameter name is not valid.
|
11142
|
+
#
|
11143
|
+
# @!attribute [rw] message
|
11144
|
+
# The parameter name is not valid.
|
11145
|
+
# @return [String]
|
11146
|
+
#
|
11147
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParameterPatternMismatchException AWS API Documentation
|
11148
|
+
#
|
11149
|
+
class ParameterPatternMismatchException < Struct.new(
|
11150
|
+
:message)
|
11151
|
+
include Aws::Structure
|
11152
|
+
end
|
11153
|
+
|
10184
11154
|
# One or more filters. Use a filter to return a more specific list of
|
10185
11155
|
# results.
|
10186
11156
|
#
|
@@ -10221,6 +11191,31 @@ module Aws::SSM
|
|
10221
11191
|
include Aws::Structure
|
10222
11192
|
end
|
10223
11193
|
|
11194
|
+
# A parameter version can have a maximum of ten labels.
|
11195
|
+
#
|
11196
|
+
# @!attribute [rw] message
|
11197
|
+
# @return [String]
|
11198
|
+
#
|
11199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParameterVersionLabelLimitExceeded AWS API Documentation
|
11200
|
+
#
|
11201
|
+
class ParameterVersionLabelLimitExceeded < Struct.new(
|
11202
|
+
:message)
|
11203
|
+
include Aws::Structure
|
11204
|
+
end
|
11205
|
+
|
11206
|
+
# The specified parameter version was not found. Verify the parameter
|
11207
|
+
# name and version, and try again.
|
11208
|
+
#
|
11209
|
+
# @!attribute [rw] message
|
11210
|
+
# @return [String]
|
11211
|
+
#
|
11212
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParameterVersionNotFound AWS API Documentation
|
11213
|
+
#
|
11214
|
+
class ParameterVersionNotFound < Struct.new(
|
11215
|
+
:message)
|
11216
|
+
include Aws::Structure
|
11217
|
+
end
|
11218
|
+
|
10224
11219
|
# This data type is deprecated. Instead, use ParameterStringFilter.
|
10225
11220
|
#
|
10226
11221
|
# @note When making an API call, you may pass ParametersFilter
|
@@ -10685,6 +11680,19 @@ module Aws::SSM
|
|
10685
11680
|
include Aws::Structure
|
10686
11681
|
end
|
10687
11682
|
|
11683
|
+
# You specified more than the maximum number of allowed policies for the
|
11684
|
+
# parameter. The maximum is 10.
|
11685
|
+
#
|
11686
|
+
# @!attribute [rw] message
|
11687
|
+
# @return [String]
|
11688
|
+
#
|
11689
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PoliciesLimitExceededException AWS API Documentation
|
11690
|
+
#
|
11691
|
+
class PoliciesLimitExceededException < Struct.new(
|
11692
|
+
:message)
|
11693
|
+
include Aws::Structure
|
11694
|
+
end
|
11695
|
+
|
10688
11696
|
# An aggregate of step execution statuses displayed in the AWS Console
|
10689
11697
|
# for a multi-Region and multi-account Automation execution.
|
10690
11698
|
#
|
@@ -11609,6 +12617,42 @@ module Aws::SSM
|
|
11609
12617
|
include Aws::Structure
|
11610
12618
|
end
|
11611
12619
|
|
12620
|
+
# A sync configuration with the same name already exists.
|
12621
|
+
#
|
12622
|
+
# @!attribute [rw] sync_name
|
12623
|
+
# @return [String]
|
12624
|
+
#
|
12625
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceDataSyncAlreadyExistsException AWS API Documentation
|
12626
|
+
#
|
12627
|
+
class ResourceDataSyncAlreadyExistsException < Struct.new(
|
12628
|
+
:sync_name)
|
12629
|
+
include Aws::Structure
|
12630
|
+
end
|
12631
|
+
|
12632
|
+
# You have exceeded the allowed maximum sync configurations.
|
12633
|
+
#
|
12634
|
+
# @!attribute [rw] message
|
12635
|
+
# @return [String]
|
12636
|
+
#
|
12637
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceDataSyncCountExceededException AWS API Documentation
|
12638
|
+
#
|
12639
|
+
class ResourceDataSyncCountExceededException < Struct.new(
|
12640
|
+
:message)
|
12641
|
+
include Aws::Structure
|
12642
|
+
end
|
12643
|
+
|
12644
|
+
# The specified sync configuration is invalid.
|
12645
|
+
#
|
12646
|
+
# @!attribute [rw] message
|
12647
|
+
# @return [String]
|
12648
|
+
#
|
12649
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceDataSyncInvalidConfigurationException AWS API Documentation
|
12650
|
+
#
|
12651
|
+
class ResourceDataSyncInvalidConfigurationException < Struct.new(
|
12652
|
+
:message)
|
12653
|
+
include Aws::Structure
|
12654
|
+
end
|
12655
|
+
|
11612
12656
|
# Information about a Resource Data Sync configuration, including its
|
11613
12657
|
# current status and last successful sync.
|
11614
12658
|
#
|
@@ -11654,6 +12698,18 @@ module Aws::SSM
|
|
11654
12698
|
include Aws::Structure
|
11655
12699
|
end
|
11656
12700
|
|
12701
|
+
# The specified sync name was not found.
|
12702
|
+
#
|
12703
|
+
# @!attribute [rw] sync_name
|
12704
|
+
# @return [String]
|
12705
|
+
#
|
12706
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceDataSyncNotFoundException AWS API Documentation
|
12707
|
+
#
|
12708
|
+
class ResourceDataSyncNotFoundException < Struct.new(
|
12709
|
+
:sync_name)
|
12710
|
+
include Aws::Structure
|
12711
|
+
end
|
12712
|
+
|
11657
12713
|
# Information about the target Amazon S3 bucket for the Resource Data
|
11658
12714
|
# Sync.
|
11659
12715
|
#
|
@@ -11703,6 +12759,40 @@ module Aws::SSM
|
|
11703
12759
|
include Aws::Structure
|
11704
12760
|
end
|
11705
12761
|
|
12762
|
+
# Error returned if an attempt is made to delete a patch baseline that
|
12763
|
+
# is registered for a patch group.
|
12764
|
+
#
|
12765
|
+
# @!attribute [rw] message
|
12766
|
+
# @return [String]
|
12767
|
+
#
|
12768
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceInUseException AWS API Documentation
|
12769
|
+
#
|
12770
|
+
class ResourceInUseException < Struct.new(
|
12771
|
+
:message)
|
12772
|
+
include Aws::Structure
|
12773
|
+
end
|
12774
|
+
|
12775
|
+
# Error returned when the caller has exceeded the default resource
|
12776
|
+
# limits. For example, too many Maintenance Windows or Patch baselines
|
12777
|
+
# have been created.
|
12778
|
+
#
|
12779
|
+
# For information about resource limits in Systems Manager, see [AWS
|
12780
|
+
# Systems Manager Limits][1].
|
12781
|
+
#
|
12782
|
+
#
|
12783
|
+
#
|
12784
|
+
# [1]: http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_ssm
|
12785
|
+
#
|
12786
|
+
# @!attribute [rw] message
|
12787
|
+
# @return [String]
|
12788
|
+
#
|
12789
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceLimitExceededException AWS API Documentation
|
12790
|
+
#
|
12791
|
+
class ResourceLimitExceededException < Struct.new(
|
12792
|
+
:message)
|
12793
|
+
include Aws::Structure
|
12794
|
+
end
|
12795
|
+
|
11706
12796
|
# The inventory item result attribute.
|
11707
12797
|
#
|
11708
12798
|
# @note When making an API call, you may pass ResultAttribute
|
@@ -12160,6 +13250,19 @@ module Aws::SSM
|
|
12160
13250
|
include Aws::Structure
|
12161
13251
|
end
|
12162
13252
|
|
13253
|
+
# The specified service setting was not found. Either the service name
|
13254
|
+
# or the setting has not been provisioned by the AWS service team.
|
13255
|
+
#
|
13256
|
+
# @!attribute [rw] message
|
13257
|
+
# @return [String]
|
13258
|
+
#
|
13259
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ServiceSettingNotFound AWS API Documentation
|
13260
|
+
#
|
13261
|
+
class ServiceSettingNotFound < Struct.new(
|
13262
|
+
:message)
|
13263
|
+
include Aws::Structure
|
13264
|
+
end
|
13265
|
+
|
12163
13266
|
# Information about a Session Manager connection to an instance.
|
12164
13267
|
#
|
12165
13268
|
# @!attribute [rw] session_id
|
@@ -12768,6 +13871,18 @@ module Aws::SSM
|
|
12768
13871
|
#
|
12769
13872
|
class StopAutomationExecutionResult < Aws::EmptyStructure; end
|
12770
13873
|
|
13874
|
+
# The sub-type count exceeded the limit for the inventory type.
|
13875
|
+
#
|
13876
|
+
# @!attribute [rw] message
|
13877
|
+
# @return [String]
|
13878
|
+
#
|
13879
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/SubTypeCountLimitExceededException AWS API Documentation
|
13880
|
+
#
|
13881
|
+
class SubTypeCountLimitExceededException < Struct.new(
|
13882
|
+
:message)
|
13883
|
+
include Aws::Structure
|
13884
|
+
end
|
13885
|
+
|
12771
13886
|
# Metadata that you assign to your AWS resources. Tags enable you to
|
12772
13887
|
# categorize your resources in different ways, for example, by purpose,
|
12773
13888
|
# owner, or environment. In Systems Manager, you can apply tags to
|
@@ -12845,6 +13960,20 @@ module Aws::SSM
|
|
12845
13960
|
include Aws::Structure
|
12846
13961
|
end
|
12847
13962
|
|
13963
|
+
# You specified the `Safe` option for the
|
13964
|
+
# DeregisterTargetFromMaintenanceWindow operation, but the target is
|
13965
|
+
# still referenced in a task.
|
13966
|
+
#
|
13967
|
+
# @!attribute [rw] message
|
13968
|
+
# @return [String]
|
13969
|
+
#
|
13970
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/TargetInUseException AWS API Documentation
|
13971
|
+
#
|
13972
|
+
class TargetInUseException < Struct.new(
|
13973
|
+
:message)
|
13974
|
+
include Aws::Structure
|
13975
|
+
end
|
13976
|
+
|
12848
13977
|
# The combination of AWS Regions and accounts targeted by the current
|
12849
13978
|
# Automation execution.
|
12850
13979
|
#
|
@@ -12894,6 +14023,25 @@ module Aws::SSM
|
|
12894
14023
|
include Aws::Structure
|
12895
14024
|
end
|
12896
14025
|
|
14026
|
+
# The specified target instance for the session is not fully configured
|
14027
|
+
# for use with Session Manager. For more information, see [Getting
|
14028
|
+
# Started with Session Manager][1] in the *AWS Systems Manager User
|
14029
|
+
# Guide*.
|
14030
|
+
#
|
14031
|
+
#
|
14032
|
+
#
|
14033
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-getting-started.html
|
14034
|
+
#
|
14035
|
+
# @!attribute [rw] message
|
14036
|
+
# @return [String]
|
14037
|
+
#
|
14038
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/TargetNotConnected AWS API Documentation
|
14039
|
+
#
|
14040
|
+
class TargetNotConnected < Struct.new(
|
14041
|
+
:message)
|
14042
|
+
include Aws::Structure
|
14043
|
+
end
|
14044
|
+
|
12897
14045
|
# @note When making an API call, you may pass TerminateSessionRequest
|
12898
14046
|
# data as a hash:
|
12899
14047
|
#
|
@@ -12923,6 +14071,114 @@ module Aws::SSM
|
|
12923
14071
|
include Aws::Structure
|
12924
14072
|
end
|
12925
14073
|
|
14074
|
+
# There are concurrent updates for a resource that supports one update
|
14075
|
+
# at a time.
|
14076
|
+
#
|
14077
|
+
# @!attribute [rw] message
|
14078
|
+
# @return [String]
|
14079
|
+
#
|
14080
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/TooManyUpdates AWS API Documentation
|
14081
|
+
#
|
14082
|
+
class TooManyUpdates < Struct.new(
|
14083
|
+
:message)
|
14084
|
+
include Aws::Structure
|
14085
|
+
end
|
14086
|
+
|
14087
|
+
# The size of inventory data has exceeded the total size limit for the
|
14088
|
+
# resource.
|
14089
|
+
#
|
14090
|
+
# @!attribute [rw] message
|
14091
|
+
# @return [String]
|
14092
|
+
#
|
14093
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/TotalSizeLimitExceededException AWS API Documentation
|
14094
|
+
#
|
14095
|
+
class TotalSizeLimitExceededException < Struct.new(
|
14096
|
+
:message)
|
14097
|
+
include Aws::Structure
|
14098
|
+
end
|
14099
|
+
|
14100
|
+
# @!attribute [rw] message
|
14101
|
+
# @return [String]
|
14102
|
+
#
|
14103
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UnsupportedFeatureRequiredException AWS API Documentation
|
14104
|
+
#
|
14105
|
+
class UnsupportedFeatureRequiredException < Struct.new(
|
14106
|
+
:message)
|
14107
|
+
include Aws::Structure
|
14108
|
+
end
|
14109
|
+
|
14110
|
+
# The `Context` attribute that you specified for the `InventoryItem` is
|
14111
|
+
# not allowed for this inventory type. You can only use the `Context`
|
14112
|
+
# attribute with inventory types like `AWS:ComplianceItem`.
|
14113
|
+
#
|
14114
|
+
# @!attribute [rw] type_name
|
14115
|
+
# @return [String]
|
14116
|
+
#
|
14117
|
+
# @!attribute [rw] message
|
14118
|
+
# @return [String]
|
14119
|
+
#
|
14120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UnsupportedInventoryItemContextException AWS API Documentation
|
14121
|
+
#
|
14122
|
+
class UnsupportedInventoryItemContextException < Struct.new(
|
14123
|
+
:type_name,
|
14124
|
+
:message)
|
14125
|
+
include Aws::Structure
|
14126
|
+
end
|
14127
|
+
|
14128
|
+
# Inventory item type schema version has to match supported versions in
|
14129
|
+
# the service. Check output of GetInventorySchema to see the available
|
14130
|
+
# schema version for each type.
|
14131
|
+
#
|
14132
|
+
# @!attribute [rw] message
|
14133
|
+
# @return [String]
|
14134
|
+
#
|
14135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UnsupportedInventorySchemaVersionException AWS API Documentation
|
14136
|
+
#
|
14137
|
+
class UnsupportedInventorySchemaVersionException < Struct.new(
|
14138
|
+
:message)
|
14139
|
+
include Aws::Structure
|
14140
|
+
end
|
14141
|
+
|
14142
|
+
# The operating systems you specified is not supported, or the operation
|
14143
|
+
# is not supported for the operating system. Valid operating systems
|
14144
|
+
# include: Windows, AmazonLinux, RedhatEnterpriseLinux, and Ubuntu.
|
14145
|
+
#
|
14146
|
+
# @!attribute [rw] message
|
14147
|
+
# @return [String]
|
14148
|
+
#
|
14149
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UnsupportedOperatingSystem AWS API Documentation
|
14150
|
+
#
|
14151
|
+
class UnsupportedOperatingSystem < Struct.new(
|
14152
|
+
:message)
|
14153
|
+
include Aws::Structure
|
14154
|
+
end
|
14155
|
+
|
14156
|
+
# The parameter type is not supported.
|
14157
|
+
#
|
14158
|
+
# @!attribute [rw] message
|
14159
|
+
# @return [String]
|
14160
|
+
#
|
14161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UnsupportedParameterType AWS API Documentation
|
14162
|
+
#
|
14163
|
+
class UnsupportedParameterType < Struct.new(
|
14164
|
+
:message)
|
14165
|
+
include Aws::Structure
|
14166
|
+
end
|
14167
|
+
|
14168
|
+
# The document does not support the platform type of the given instance
|
14169
|
+
# ID(s). For example, you sent an document for a Windows instance to a
|
14170
|
+
# Linux instance.
|
14171
|
+
#
|
14172
|
+
# @!attribute [rw] message
|
14173
|
+
# @return [String]
|
14174
|
+
#
|
14175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UnsupportedPlatformType AWS API Documentation
|
14176
|
+
#
|
14177
|
+
class UnsupportedPlatformType < Struct.new(
|
14178
|
+
:message)
|
14179
|
+
include Aws::Structure
|
14180
|
+
end
|
14181
|
+
|
12926
14182
|
# @note When making an API call, you may pass UpdateAssociationRequest
|
12927
14183
|
# data as a hash:
|
12928
14184
|
#
|