@aws-sdk/client-ssm-quicksetup 3.622.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.
- package/LICENSE +201 -0
- package/README.md +303 -0
- package/dist-cjs/SSMQuickSetup.js +35 -0
- package/dist-cjs/SSMQuickSetupClient.js +50 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateConfigurationManagerCommand.js +29 -0
- package/dist-cjs/commands/DeleteConfigurationManagerCommand.js +28 -0
- package/dist-cjs/commands/GetConfigurationManagerCommand.js +29 -0
- package/dist-cjs/commands/GetServiceSettingsCommand.js +28 -0
- package/dist-cjs/commands/ListConfigurationManagersCommand.js +28 -0
- package/dist-cjs/commands/ListQuickSetupTypesCommand.js +28 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +29 -0
- package/dist-cjs/commands/TagResourceCommand.js +29 -0
- package/dist-cjs/commands/UntagResourceCommand.js +28 -0
- package/dist-cjs/commands/UpdateConfigurationDefinitionCommand.js +28 -0
- package/dist-cjs/commands/UpdateConfigurationManagerCommand.js +28 -0
- package/dist-cjs/commands/UpdateServiceSettingsCommand.js +28 -0
- package/dist-cjs/commands/index.js +15 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/SSMQuickSetupServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +131 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListConfigurationManagersPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +5 -0
- package/dist-cjs/protocols/Aws_restJson1.js +494 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/SSMQuickSetup.js +31 -0
- package/dist-es/SSMQuickSetupClient.js +46 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateConfigurationManagerCommand.js +25 -0
- package/dist-es/commands/DeleteConfigurationManagerCommand.js +24 -0
- package/dist-es/commands/GetConfigurationManagerCommand.js +25 -0
- package/dist-es/commands/GetServiceSettingsCommand.js +24 -0
- package/dist-es/commands/ListConfigurationManagersCommand.js +24 -0
- package/dist-es/commands/ListQuickSetupTypesCommand.js +24 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +25 -0
- package/dist-es/commands/TagResourceCommand.js +25 -0
- package/dist-es/commands/UntagResourceCommand.js +24 -0
- package/dist-es/commands/UpdateConfigurationDefinitionCommand.js +24 -0
- package/dist-es/commands/UpdateConfigurationManagerCommand.js +24 -0
- package/dist-es/commands/UpdateServiceSettingsCommand.js +24 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/SSMQuickSetupServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +117 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListConfigurationManagersPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +467 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/SSMQuickSetup.d.ts +100 -0
- package/dist-types/SSMQuickSetupClient.d.ts +183 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateConfigurationManagerCommand.d.ts +93 -0
- package/dist-types/commands/DeleteConfigurationManagerCommand.d.ts +77 -0
- package/dist-types/commands/GetConfigurationManagerCommand.d.ts +109 -0
- package/dist-types/commands/GetServiceSettingsCommand.d.ts +72 -0
- package/dist-types/commands/ListConfigurationManagersCommand.d.ts +113 -0
- package/dist-types/commands/ListQuickSetupTypesCommand.d.ts +75 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +84 -0
- package/dist-types/commands/TagResourceCommand.d.ts +80 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +80 -0
- package/dist-types/commands/UpdateConfigurationDefinitionCommand.d.ts +84 -0
- package/dist-types/commands/UpdateConfigurationManagerCommand.d.ts +79 -0
- package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +74 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/SSMQuickSetupServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2014 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListConfigurationManagersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +110 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/SSMQuickSetup.d.ts +215 -0
- package/dist-types/ts3.4/SSMQuickSetupClient.d.ts +191 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateConfigurationManagerCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteConfigurationManagerCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetConfigurationManagerCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetServiceSettingsCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListConfigurationManagersCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListQuickSetupTypesCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationDefinitionCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationManagerCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/UpdateServiceSettingsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/SSMQuickSetupServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +201 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListConfigurationManagersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +101 -0
|
@@ -0,0 +1,2014 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { SSMQuickSetupServiceException as __BaseException } from "./SSMQuickSetupServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The requester has insufficient permissions to perform the operation.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>The definition of a Quick Setup configuration.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export interface ConfigurationDefinition {
|
|
21
|
+
/**
|
|
22
|
+
* <p>The type of the Quick Setup configuration.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
Type: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>A list of key-value pairs containing the required parameters for the configuration
|
|
28
|
+
* type.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
Parameters: Record<string, string> | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* <p>The version of the Quick Setup type used.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
TypeVersion?: string;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The name of the IAM role used to deploy local
|
|
39
|
+
* configurations.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
LocalDeploymentExecutionRoleName?: string;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The ARN of the IAM role used to administrate local configuration
|
|
45
|
+
* deployments.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
LocalDeploymentAdministrationRoleArn?: string;
|
|
49
|
+
/**
|
|
50
|
+
* <p>The ID of the configuration definition.</p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
Id?: string;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* <p>Defines the preferences and options for a configuration definition.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export interface ConfigurationDefinitionInput {
|
|
60
|
+
/**
|
|
61
|
+
* <p>The type of the Quick Setup configuration.</p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
Type: string | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* <p>The parameters for the configuration definition type. Parameters for configuration
|
|
67
|
+
* definitions vary based the configuration type. The following tables outline the
|
|
68
|
+
* parameters for each configuration type.</p>
|
|
69
|
+
* <dl>
|
|
70
|
+
* <dt>OpsCenter (Type: Amazon Web ServicesQuickSetupType-SSMOpsCenter)</dt>
|
|
71
|
+
* <dd>
|
|
72
|
+
* <ul>
|
|
73
|
+
* <li>
|
|
74
|
+
* <p>
|
|
75
|
+
* <code>DelegatedAccountId</code>
|
|
76
|
+
* </p>
|
|
77
|
+
* <ul>
|
|
78
|
+
* <li>
|
|
79
|
+
* <p>Description: (Required) The ID of the
|
|
80
|
+
* delegated administrator account.</p>
|
|
81
|
+
* </li>
|
|
82
|
+
* </ul>
|
|
83
|
+
* </li>
|
|
84
|
+
* <li>
|
|
85
|
+
* <p>
|
|
86
|
+
* <code>TargetOrganizationalUnits</code>
|
|
87
|
+
* </p>
|
|
88
|
+
* <ul>
|
|
89
|
+
* <li>
|
|
90
|
+
* <p>Description: (Required) A comma separated
|
|
91
|
+
* list of organizational units (OUs) you want to
|
|
92
|
+
* deploy the configuration to.</p>
|
|
93
|
+
* </li>
|
|
94
|
+
* </ul>
|
|
95
|
+
* </li>
|
|
96
|
+
* <li>
|
|
97
|
+
* <p>
|
|
98
|
+
* <code>TargetRegions</code>
|
|
99
|
+
* </p>
|
|
100
|
+
* <ul>
|
|
101
|
+
* <li>
|
|
102
|
+
* <p>Description: (Required) A comma separated
|
|
103
|
+
* list of Amazon Web Services Regions you want to
|
|
104
|
+
* deploy the configuration to.</p>
|
|
105
|
+
* </li>
|
|
106
|
+
* </ul>
|
|
107
|
+
* </li>
|
|
108
|
+
* </ul>
|
|
109
|
+
* </dd>
|
|
110
|
+
* <dt>Resource Scheduler (Type: Amazon Web ServicesQuickSetupType-Scheduler)</dt>
|
|
111
|
+
* <dd>
|
|
112
|
+
* <ul>
|
|
113
|
+
* <li>
|
|
114
|
+
* <p>
|
|
115
|
+
* <code>TargetTagKey</code>
|
|
116
|
+
* </p>
|
|
117
|
+
* <ul>
|
|
118
|
+
* <li>
|
|
119
|
+
* <p>Description: (Required) The tag key assigned
|
|
120
|
+
* to the instances you want to target.</p>
|
|
121
|
+
* </li>
|
|
122
|
+
* </ul>
|
|
123
|
+
* </li>
|
|
124
|
+
* <li>
|
|
125
|
+
* <p>
|
|
126
|
+
* <code>TargetTagValue</code>
|
|
127
|
+
* </p>
|
|
128
|
+
* <ul>
|
|
129
|
+
* <li>
|
|
130
|
+
* <p>Description: (Required) The value of the tag
|
|
131
|
+
* key assigned to the instances you want to
|
|
132
|
+
* target.</p>
|
|
133
|
+
* </li>
|
|
134
|
+
* </ul>
|
|
135
|
+
* </li>
|
|
136
|
+
* <li>
|
|
137
|
+
* <p>
|
|
138
|
+
* <code>ICalendarString</code>
|
|
139
|
+
* </p>
|
|
140
|
+
* <ul>
|
|
141
|
+
* <li>
|
|
142
|
+
* <p>Description: (Required) An iCalendar
|
|
143
|
+
* formatted string containing the schedule you want
|
|
144
|
+
* Change Manager to use.</p>
|
|
145
|
+
* </li>
|
|
146
|
+
* </ul>
|
|
147
|
+
* </li>
|
|
148
|
+
* <li>
|
|
149
|
+
* <p>
|
|
150
|
+
* <code>TargetAccounts</code>
|
|
151
|
+
* </p>
|
|
152
|
+
* <ul>
|
|
153
|
+
* <li>
|
|
154
|
+
* <p>Description: (Optional) The ID of the
|
|
155
|
+
* Amazon Web Services account initiating the
|
|
156
|
+
* configuration deployment. You only need to provide
|
|
157
|
+
* a value for this parameter if you want to deploy
|
|
158
|
+
* the configuration locally. A value must be
|
|
159
|
+
* provided for either <code>TargetAccounts</code> or
|
|
160
|
+
* <code>TargetOrganizationalUnits</code>.</p>
|
|
161
|
+
* </li>
|
|
162
|
+
* </ul>
|
|
163
|
+
* </li>
|
|
164
|
+
* <li>
|
|
165
|
+
* <p>
|
|
166
|
+
* <code>TargetOrganizationalUnits</code>
|
|
167
|
+
* </p>
|
|
168
|
+
* <ul>
|
|
169
|
+
* <li>
|
|
170
|
+
* <p>Description: (Optional) A comma separated
|
|
171
|
+
* list of organizational units (OUs) you want to
|
|
172
|
+
* deploy the configuration to.</p>
|
|
173
|
+
* </li>
|
|
174
|
+
* </ul>
|
|
175
|
+
* </li>
|
|
176
|
+
* <li>
|
|
177
|
+
* <p>
|
|
178
|
+
* <code>TargetRegions</code>
|
|
179
|
+
* </p>
|
|
180
|
+
* <ul>
|
|
181
|
+
* <li>
|
|
182
|
+
* <p>Description: (Required) A comma separated
|
|
183
|
+
* list of Amazon Web Services Regions you want to
|
|
184
|
+
* deploy the configuration to.</p>
|
|
185
|
+
* </li>
|
|
186
|
+
* </ul>
|
|
187
|
+
* </li>
|
|
188
|
+
* </ul>
|
|
189
|
+
* </dd>
|
|
190
|
+
* <dt>Default Host Management Configuration (Type: Amazon Web ServicesQuickSetupType-DHMC)</dt>
|
|
191
|
+
* <dd>
|
|
192
|
+
* <ul>
|
|
193
|
+
* <li>
|
|
194
|
+
* <p>
|
|
195
|
+
* <code>UpdateSSMAgent</code>
|
|
196
|
+
* </p>
|
|
197
|
+
* <ul>
|
|
198
|
+
* <li>
|
|
199
|
+
* <p>Description: (Optional) A boolean value that
|
|
200
|
+
* determines whether the SSM Agent is updated on the
|
|
201
|
+
* target instances every 2 weeks. The default value
|
|
202
|
+
* is "<code>true</code>".</p>
|
|
203
|
+
* </li>
|
|
204
|
+
* </ul>
|
|
205
|
+
* </li>
|
|
206
|
+
* <li>
|
|
207
|
+
* <p>
|
|
208
|
+
* <code>TargetOrganizationalUnits</code>
|
|
209
|
+
* </p>
|
|
210
|
+
* <ul>
|
|
211
|
+
* <li>
|
|
212
|
+
* <p>Description: (Required) A comma separated
|
|
213
|
+
* list of organizational units (OUs) you want to
|
|
214
|
+
* deploy the configuration to.</p>
|
|
215
|
+
* </li>
|
|
216
|
+
* </ul>
|
|
217
|
+
* </li>
|
|
218
|
+
* <li>
|
|
219
|
+
* <p>
|
|
220
|
+
* <code>TargetRegions</code>
|
|
221
|
+
* </p>
|
|
222
|
+
* <ul>
|
|
223
|
+
* <li>
|
|
224
|
+
* <p>Description: (Required) A comma separated
|
|
225
|
+
* list of Amazon Web Services Regions you want to
|
|
226
|
+
* deploy the configuration to.</p>
|
|
227
|
+
* </li>
|
|
228
|
+
* </ul>
|
|
229
|
+
* </li>
|
|
230
|
+
* </ul>
|
|
231
|
+
* </dd>
|
|
232
|
+
* <dt>Resource Explorer (Type: Amazon Web ServicesQuickSetupType-ResourceExplorer)</dt>
|
|
233
|
+
* <dd>
|
|
234
|
+
* <ul>
|
|
235
|
+
* <li>
|
|
236
|
+
* <p>
|
|
237
|
+
* <code>SelectedAggregatorRegion</code>
|
|
238
|
+
* </p>
|
|
239
|
+
* <ul>
|
|
240
|
+
* <li>
|
|
241
|
+
* <p>Description: (Required) The Amazon Web Services Region where you want to create the
|
|
242
|
+
* aggregator index.</p>
|
|
243
|
+
* </li>
|
|
244
|
+
* </ul>
|
|
245
|
+
* </li>
|
|
246
|
+
* <li>
|
|
247
|
+
* <p>
|
|
248
|
+
* <code>ReplaceExistingAggregator</code>
|
|
249
|
+
* </p>
|
|
250
|
+
* <ul>
|
|
251
|
+
* <li>
|
|
252
|
+
* <p>Description: (Required) A boolean value that
|
|
253
|
+
* determines whether to demote an existing
|
|
254
|
+
* aggregator if it is in a Region that differs from
|
|
255
|
+
* the value you specify for the
|
|
256
|
+
* <code>SelectedAggregatorRegion</code>.</p>
|
|
257
|
+
* </li>
|
|
258
|
+
* </ul>
|
|
259
|
+
* </li>
|
|
260
|
+
* <li>
|
|
261
|
+
* <p>
|
|
262
|
+
* <code>TargetOrganizationalUnits</code>
|
|
263
|
+
* </p>
|
|
264
|
+
* <ul>
|
|
265
|
+
* <li>
|
|
266
|
+
* <p>Description: (Required) A comma separated
|
|
267
|
+
* list of organizational units (OUs) you want to
|
|
268
|
+
* deploy the configuration to.</p>
|
|
269
|
+
* </li>
|
|
270
|
+
* </ul>
|
|
271
|
+
* </li>
|
|
272
|
+
* <li>
|
|
273
|
+
* <p>
|
|
274
|
+
* <code>TargetRegions</code>
|
|
275
|
+
* </p>
|
|
276
|
+
* <ul>
|
|
277
|
+
* <li>
|
|
278
|
+
* <p>Description: (Required) A comma separated
|
|
279
|
+
* list of Amazon Web Services Regions you want to
|
|
280
|
+
* deploy the configuration to.</p>
|
|
281
|
+
* </li>
|
|
282
|
+
* </ul>
|
|
283
|
+
* </li>
|
|
284
|
+
* </ul>
|
|
285
|
+
* </dd>
|
|
286
|
+
* <dt>Change Manager (Type: Amazon Web ServicesQuickSetupType-SSMChangeMgr)</dt>
|
|
287
|
+
* <dd>
|
|
288
|
+
* <ul>
|
|
289
|
+
* <li>
|
|
290
|
+
* <p>
|
|
291
|
+
* <code>DelegatedAccountId</code>
|
|
292
|
+
* </p>
|
|
293
|
+
* <ul>
|
|
294
|
+
* <li>
|
|
295
|
+
* <p>Description: (Required) The ID of the
|
|
296
|
+
* delegated administrator account.</p>
|
|
297
|
+
* </li>
|
|
298
|
+
* </ul>
|
|
299
|
+
* </li>
|
|
300
|
+
* <li>
|
|
301
|
+
* <p>
|
|
302
|
+
* <code>JobFunction</code>
|
|
303
|
+
* </p>
|
|
304
|
+
* <ul>
|
|
305
|
+
* <li>
|
|
306
|
+
* <p>Description: (Required) The name for the
|
|
307
|
+
* Change Manager job function.</p>
|
|
308
|
+
* </li>
|
|
309
|
+
* </ul>
|
|
310
|
+
* </li>
|
|
311
|
+
* <li>
|
|
312
|
+
* <p>
|
|
313
|
+
* <code>PermissionType</code>
|
|
314
|
+
* </p>
|
|
315
|
+
* <ul>
|
|
316
|
+
* <li>
|
|
317
|
+
* <p>Description: (Optional) Specifies whether
|
|
318
|
+
* you want to use default administrator permissions
|
|
319
|
+
* for the job function role, or provide a custom
|
|
320
|
+
* IAM policy. The valid values are
|
|
321
|
+
* <code>CustomPermissions</code> and
|
|
322
|
+
* <code>AdminPermissions</code>. The default value
|
|
323
|
+
* for the parameter is
|
|
324
|
+
* <code>CustomerPermissions</code>.</p>
|
|
325
|
+
* </li>
|
|
326
|
+
* </ul>
|
|
327
|
+
* </li>
|
|
328
|
+
* <li>
|
|
329
|
+
* <p>
|
|
330
|
+
* <code>CustomPermissions</code>
|
|
331
|
+
* </p>
|
|
332
|
+
* <ul>
|
|
333
|
+
* <li>
|
|
334
|
+
* <p>Description: (Optional) A JSON string
|
|
335
|
+
* containing the IAM policy you want
|
|
336
|
+
* your job function to use. You must provide a value
|
|
337
|
+
* for this parameter if you specify
|
|
338
|
+
* <code>CustomPermissions</code> for the
|
|
339
|
+
* <code>PermissionType</code> parameter.</p>
|
|
340
|
+
* </li>
|
|
341
|
+
* </ul>
|
|
342
|
+
* </li>
|
|
343
|
+
* <li>
|
|
344
|
+
* <p>
|
|
345
|
+
* <code>TargetOrganizationalUnits</code>
|
|
346
|
+
* </p>
|
|
347
|
+
* <ul>
|
|
348
|
+
* <li>
|
|
349
|
+
* <p>Description: (Required) A comma separated
|
|
350
|
+
* list of organizational units (OUs) you want to
|
|
351
|
+
* deploy the configuration to.</p>
|
|
352
|
+
* </li>
|
|
353
|
+
* </ul>
|
|
354
|
+
* </li>
|
|
355
|
+
* <li>
|
|
356
|
+
* <p>
|
|
357
|
+
* <code>TargetRegions</code>
|
|
358
|
+
* </p>
|
|
359
|
+
* <ul>
|
|
360
|
+
* <li>
|
|
361
|
+
* <p>Description: (Required) A comma separated
|
|
362
|
+
* list of Amazon Web Services Regions you want to
|
|
363
|
+
* deploy the configuration to.</p>
|
|
364
|
+
* </li>
|
|
365
|
+
* </ul>
|
|
366
|
+
* </li>
|
|
367
|
+
* </ul>
|
|
368
|
+
* </dd>
|
|
369
|
+
* <dt>DevOps Guru (Type: Amazon Web ServicesQuickSetupType-DevOpsGuru)</dt>
|
|
370
|
+
* <dd>
|
|
371
|
+
* <ul>
|
|
372
|
+
* <li>
|
|
373
|
+
* <p>
|
|
374
|
+
* <code>AnalyseAllResources</code>
|
|
375
|
+
* </p>
|
|
376
|
+
* <ul>
|
|
377
|
+
* <li>
|
|
378
|
+
* <p>Description: (Optional) A boolean value that
|
|
379
|
+
* determines whether DevOps Guru analyzes all
|
|
380
|
+
* CloudFormation stacks in the account. The
|
|
381
|
+
* default value is "<code>false</code>".</p>
|
|
382
|
+
* </li>
|
|
383
|
+
* </ul>
|
|
384
|
+
* </li>
|
|
385
|
+
* <li>
|
|
386
|
+
* <p>
|
|
387
|
+
* <code>EnableSnsNotifications</code>
|
|
388
|
+
* </p>
|
|
389
|
+
* <ul>
|
|
390
|
+
* <li>
|
|
391
|
+
* <p>Description: (Optional) A boolean value that
|
|
392
|
+
* determines whether DevOps Guru sends
|
|
393
|
+
* notifications when an insight is created. The
|
|
394
|
+
* default value is "<code>true</code>".</p>
|
|
395
|
+
* </li>
|
|
396
|
+
* </ul>
|
|
397
|
+
* </li>
|
|
398
|
+
* <li>
|
|
399
|
+
* <p>
|
|
400
|
+
* <code>EnableSsmOpsItems</code>
|
|
401
|
+
* </p>
|
|
402
|
+
* <ul>
|
|
403
|
+
* <li>
|
|
404
|
+
* <p>Description: (Optional) A boolean value that
|
|
405
|
+
* determines whether DevOps Guru creates an
|
|
406
|
+
* OpsCenter OpsItem when an insight is created. The
|
|
407
|
+
* default value is "<code>true</code>".</p>
|
|
408
|
+
* </li>
|
|
409
|
+
* </ul>
|
|
410
|
+
* </li>
|
|
411
|
+
* <li>
|
|
412
|
+
* <p>
|
|
413
|
+
* <code>EnableDriftRemediation</code>
|
|
414
|
+
* </p>
|
|
415
|
+
* <ul>
|
|
416
|
+
* <li>
|
|
417
|
+
* <p>Description: (Optional) A boolean value that
|
|
418
|
+
* determines whether a drift remediation schedule is
|
|
419
|
+
* used. The default value is
|
|
420
|
+
* "<code>false</code>".</p>
|
|
421
|
+
* </li>
|
|
422
|
+
* </ul>
|
|
423
|
+
* </li>
|
|
424
|
+
* <li>
|
|
425
|
+
* <p>
|
|
426
|
+
* <code>RemediationSchedule</code>
|
|
427
|
+
* </p>
|
|
428
|
+
* <ul>
|
|
429
|
+
* <li>
|
|
430
|
+
* <p>Description: (Optional) A rate expression
|
|
431
|
+
* that defines the schedule for drift remediation.
|
|
432
|
+
* The valid values are <code>rate(30 days)</code>,
|
|
433
|
+
* <code>rate(14 days)</code>, <code>rate(1
|
|
434
|
+
* days)</code>, and <code>none</code>. The default
|
|
435
|
+
* value is "<code>none</code>".</p>
|
|
436
|
+
* </li>
|
|
437
|
+
* </ul>
|
|
438
|
+
* </li>
|
|
439
|
+
* <li>
|
|
440
|
+
* <p>
|
|
441
|
+
* <code>TargetAccounts</code>
|
|
442
|
+
* </p>
|
|
443
|
+
* <ul>
|
|
444
|
+
* <li>
|
|
445
|
+
* <p>Description: (Optional) The ID of the
|
|
446
|
+
* Amazon Web Services account initiating the
|
|
447
|
+
* configuration deployment. You only need to provide
|
|
448
|
+
* a value for this parameter if you want to deploy
|
|
449
|
+
* the configuration locally. A value must be
|
|
450
|
+
* provided for either <code>TargetAccounts</code> or
|
|
451
|
+
* <code>TargetOrganizationalUnits</code>.</p>
|
|
452
|
+
* </li>
|
|
453
|
+
* </ul>
|
|
454
|
+
* </li>
|
|
455
|
+
* <li>
|
|
456
|
+
* <p>
|
|
457
|
+
* <code>TargetOrganizationalUnits</code>
|
|
458
|
+
* </p>
|
|
459
|
+
* <ul>
|
|
460
|
+
* <li>
|
|
461
|
+
* <p>Description: (Optional) A comma separated
|
|
462
|
+
* list of organizational units (OUs) you want to
|
|
463
|
+
* deploy the configuration to.</p>
|
|
464
|
+
* </li>
|
|
465
|
+
* </ul>
|
|
466
|
+
* </li>
|
|
467
|
+
* <li>
|
|
468
|
+
* <p>
|
|
469
|
+
* <code>TargetRegions</code>
|
|
470
|
+
* </p>
|
|
471
|
+
* <ul>
|
|
472
|
+
* <li>
|
|
473
|
+
* <p>Description: (Required) A comma separated
|
|
474
|
+
* list of Amazon Web Services Regions you want to
|
|
475
|
+
* deploy the configuration to.</p>
|
|
476
|
+
* </li>
|
|
477
|
+
* </ul>
|
|
478
|
+
* </li>
|
|
479
|
+
* </ul>
|
|
480
|
+
* </dd>
|
|
481
|
+
* <dt>Conformance Packs (Type: Amazon Web ServicesQuickSetupType-CFGCPacks)</dt>
|
|
482
|
+
* <dd>
|
|
483
|
+
* <ul>
|
|
484
|
+
* <li>
|
|
485
|
+
* <p>
|
|
486
|
+
* <code>DelegatedAccountId</code>
|
|
487
|
+
* </p>
|
|
488
|
+
* <ul>
|
|
489
|
+
* <li>
|
|
490
|
+
* <p>Description: (Optional) The ID of the
|
|
491
|
+
* delegated administrator account. This parameter is
|
|
492
|
+
* required for Organization deployments.</p>
|
|
493
|
+
* </li>
|
|
494
|
+
* </ul>
|
|
495
|
+
* </li>
|
|
496
|
+
* <li>
|
|
497
|
+
* <p>
|
|
498
|
+
* <code>RemediationSchedule</code>
|
|
499
|
+
* </p>
|
|
500
|
+
* <ul>
|
|
501
|
+
* <li>
|
|
502
|
+
* <p>Description: (Optional) A rate expression
|
|
503
|
+
* that defines the schedule for drift remediation.
|
|
504
|
+
* The valid values are <code>rate(30 days)</code>,
|
|
505
|
+
* <code>rate(14 days)</code>, <code>rate(2
|
|
506
|
+
* days)</code>, and <code>none</code>. The default
|
|
507
|
+
* value is "<code>none</code>".</p>
|
|
508
|
+
* </li>
|
|
509
|
+
* </ul>
|
|
510
|
+
* </li>
|
|
511
|
+
* <li>
|
|
512
|
+
* <p>
|
|
513
|
+
* <code>CPackNames</code>
|
|
514
|
+
* </p>
|
|
515
|
+
* <ul>
|
|
516
|
+
* <li>
|
|
517
|
+
* <p>Description: (Required) A comma separated
|
|
518
|
+
* list of Config conformance
|
|
519
|
+
* packs.</p>
|
|
520
|
+
* </li>
|
|
521
|
+
* </ul>
|
|
522
|
+
* </li>
|
|
523
|
+
* <li>
|
|
524
|
+
* <p>
|
|
525
|
+
* <code>TargetAccounts</code>
|
|
526
|
+
* </p>
|
|
527
|
+
* <ul>
|
|
528
|
+
* <li>
|
|
529
|
+
* <p>Description: (Optional) The ID of the
|
|
530
|
+
* Amazon Web Services account initiating the
|
|
531
|
+
* configuration deployment. You only need to provide
|
|
532
|
+
* a value for this parameter if you want to deploy
|
|
533
|
+
* the configuration locally. A value must be
|
|
534
|
+
* provided for either <code>TargetAccounts</code> or
|
|
535
|
+
* <code>TargetOrganizationalUnits</code>.</p>
|
|
536
|
+
* </li>
|
|
537
|
+
* </ul>
|
|
538
|
+
* </li>
|
|
539
|
+
* <li>
|
|
540
|
+
* <p>
|
|
541
|
+
* <code>TargetOrganizationalUnits</code>
|
|
542
|
+
* </p>
|
|
543
|
+
* <ul>
|
|
544
|
+
* <li>
|
|
545
|
+
* <p>Description: (Optional) The ID of the root
|
|
546
|
+
* of your Organization. This configuration type
|
|
547
|
+
* doesn't currently support choosing specific OUs.
|
|
548
|
+
* The configuration will be deployed to all the OUs
|
|
549
|
+
* in the Organization.</p>
|
|
550
|
+
* </li>
|
|
551
|
+
* </ul>
|
|
552
|
+
* </li>
|
|
553
|
+
* <li>
|
|
554
|
+
* <p>
|
|
555
|
+
* <code>TargetRegions</code>
|
|
556
|
+
* </p>
|
|
557
|
+
* <ul>
|
|
558
|
+
* <li>
|
|
559
|
+
* <p>Description: (Required) A comma separated
|
|
560
|
+
* list of Amazon Web Services Regions you want to
|
|
561
|
+
* deploy the configuration to.</p>
|
|
562
|
+
* </li>
|
|
563
|
+
* </ul>
|
|
564
|
+
* </li>
|
|
565
|
+
* </ul>
|
|
566
|
+
* </dd>
|
|
567
|
+
* <dt>Config Recording (Type: Amazon Web ServicesQuickSetupType-CFGRecording)</dt>
|
|
568
|
+
* <dd>
|
|
569
|
+
* <ul>
|
|
570
|
+
* <li>
|
|
571
|
+
* <p>
|
|
572
|
+
* <code>RecordAllResources</code>
|
|
573
|
+
* </p>
|
|
574
|
+
* <ul>
|
|
575
|
+
* <li>
|
|
576
|
+
* <p>Description: (Optional) A boolean value that
|
|
577
|
+
* determines whether all supported resources are
|
|
578
|
+
* recorded. The default value is
|
|
579
|
+
* "<code>true</code>".</p>
|
|
580
|
+
* </li>
|
|
581
|
+
* </ul>
|
|
582
|
+
* </li>
|
|
583
|
+
* <li>
|
|
584
|
+
* <p>
|
|
585
|
+
* <code>ResourceTypesToRecord</code>
|
|
586
|
+
* </p>
|
|
587
|
+
* <ul>
|
|
588
|
+
* <li>
|
|
589
|
+
* <p>Description: (Optional) A comma separated
|
|
590
|
+
* list of resource types you want to record.</p>
|
|
591
|
+
* </li>
|
|
592
|
+
* </ul>
|
|
593
|
+
* </li>
|
|
594
|
+
* <li>
|
|
595
|
+
* <p>
|
|
596
|
+
* <code>RecordGlobalResourceTypes</code>
|
|
597
|
+
* </p>
|
|
598
|
+
* <ul>
|
|
599
|
+
* <li>
|
|
600
|
+
* <p>Description: (Optional) A boolean value that
|
|
601
|
+
* determines whether global resources are recorded
|
|
602
|
+
* with all resource configurations. The default
|
|
603
|
+
* value is "<code>false</code>".</p>
|
|
604
|
+
* </li>
|
|
605
|
+
* </ul>
|
|
606
|
+
* </li>
|
|
607
|
+
* <li>
|
|
608
|
+
* <p>
|
|
609
|
+
* <code>GlobalResourceTypesRegion</code>
|
|
610
|
+
* </p>
|
|
611
|
+
* <ul>
|
|
612
|
+
* <li>
|
|
613
|
+
* <p>Description: (Optional) Determines the
|
|
614
|
+
* Amazon Web Services Region where global resources
|
|
615
|
+
* are recorded.</p>
|
|
616
|
+
* </li>
|
|
617
|
+
* </ul>
|
|
618
|
+
* </li>
|
|
619
|
+
* <li>
|
|
620
|
+
* <p>
|
|
621
|
+
* <code>UseCustomBucket</code>
|
|
622
|
+
* </p>
|
|
623
|
+
* <ul>
|
|
624
|
+
* <li>
|
|
625
|
+
* <p>Description: (Optional) A boolean value that
|
|
626
|
+
* determines whether a custom Amazon S3
|
|
627
|
+
* bucket is used for delivery. The default value is
|
|
628
|
+
* "<code>false</code>".</p>
|
|
629
|
+
* </li>
|
|
630
|
+
* </ul>
|
|
631
|
+
* </li>
|
|
632
|
+
* <li>
|
|
633
|
+
* <p>
|
|
634
|
+
* <code>DeliveryBucketName</code>
|
|
635
|
+
* </p>
|
|
636
|
+
* <ul>
|
|
637
|
+
* <li>
|
|
638
|
+
* <p>Description: (Optional) The name of the
|
|
639
|
+
* Amazon S3 bucket you want Config to deliver configuration snapshots and
|
|
640
|
+
* configuration history files to.</p>
|
|
641
|
+
* </li>
|
|
642
|
+
* </ul>
|
|
643
|
+
* </li>
|
|
644
|
+
* <li>
|
|
645
|
+
* <p>
|
|
646
|
+
* <code>DeliveryBucketPrefix</code>
|
|
647
|
+
* </p>
|
|
648
|
+
* <ul>
|
|
649
|
+
* <li>
|
|
650
|
+
* <p>Description: (Optional) The key prefix you
|
|
651
|
+
* want to use in the custom Amazon S3
|
|
652
|
+
* bucket.</p>
|
|
653
|
+
* </li>
|
|
654
|
+
* </ul>
|
|
655
|
+
* </li>
|
|
656
|
+
* <li>
|
|
657
|
+
* <p>
|
|
658
|
+
* <code>NotificationOptions</code>
|
|
659
|
+
* </p>
|
|
660
|
+
* <ul>
|
|
661
|
+
* <li>
|
|
662
|
+
* <p>Description: (Optional) Determines the
|
|
663
|
+
* notification configuration for the recorder. The
|
|
664
|
+
* valid values are <code>NoStreaming</code>,
|
|
665
|
+
* <code>UseExistingTopic</code>, and
|
|
666
|
+
* <code>CreateTopic</code>. The default value is
|
|
667
|
+
* <code>NoStreaming</code>.</p>
|
|
668
|
+
* </li>
|
|
669
|
+
* </ul>
|
|
670
|
+
* </li>
|
|
671
|
+
* <li>
|
|
672
|
+
* <p>
|
|
673
|
+
* <code>CustomDeliveryTopicAccountId</code>
|
|
674
|
+
* </p>
|
|
675
|
+
* <ul>
|
|
676
|
+
* <li>
|
|
677
|
+
* <p>Description: (Optional) The ID of the
|
|
678
|
+
* Amazon Web Services account where the Amazon SNS topic you want to use for notifications
|
|
679
|
+
* resides. You must specify a value for this
|
|
680
|
+
* parameter if you use the
|
|
681
|
+
* <code>UseExistingTopic</code> notification
|
|
682
|
+
* option.</p>
|
|
683
|
+
* </li>
|
|
684
|
+
* </ul>
|
|
685
|
+
* </li>
|
|
686
|
+
* <li>
|
|
687
|
+
* <p>
|
|
688
|
+
* <code>CustomDeliveryTopicName</code>
|
|
689
|
+
* </p>
|
|
690
|
+
* <ul>
|
|
691
|
+
* <li>
|
|
692
|
+
* <p>Description: (Optional) The name of the
|
|
693
|
+
* Amazon SNS topic you want to use for
|
|
694
|
+
* notifications. You must specify a value for this
|
|
695
|
+
* parameter if you use the
|
|
696
|
+
* <code>UseExistingTopic</code> notification
|
|
697
|
+
* option.</p>
|
|
698
|
+
* </li>
|
|
699
|
+
* </ul>
|
|
700
|
+
* </li>
|
|
701
|
+
* <li>
|
|
702
|
+
* <p>
|
|
703
|
+
* <code>RemediationSchedule</code>
|
|
704
|
+
* </p>
|
|
705
|
+
* <ul>
|
|
706
|
+
* <li>
|
|
707
|
+
* <p>Description: (Optional) A rate expression
|
|
708
|
+
* that defines the schedule for drift remediation.
|
|
709
|
+
* The valid values are <code>rate(30 days)</code>,
|
|
710
|
+
* <code>rate(7 days)</code>, <code>rate(1
|
|
711
|
+
* days)</code>, and <code>none</code>. The default
|
|
712
|
+
* value is "<code>none</code>".</p>
|
|
713
|
+
* </li>
|
|
714
|
+
* </ul>
|
|
715
|
+
* </li>
|
|
716
|
+
* <li>
|
|
717
|
+
* <p>
|
|
718
|
+
* <code>TargetAccounts</code>
|
|
719
|
+
* </p>
|
|
720
|
+
* <ul>
|
|
721
|
+
* <li>
|
|
722
|
+
* <p>Description: (Optional) The ID of the
|
|
723
|
+
* Amazon Web Services account initiating the
|
|
724
|
+
* configuration deployment. You only need to provide
|
|
725
|
+
* a value for this parameter if you want to deploy
|
|
726
|
+
* the configuration locally. A value must be
|
|
727
|
+
* provided for either <code>TargetAccounts</code> or
|
|
728
|
+
* <code>TargetOrganizationalUnits</code>.</p>
|
|
729
|
+
* </li>
|
|
730
|
+
* </ul>
|
|
731
|
+
* </li>
|
|
732
|
+
* <li>
|
|
733
|
+
* <p>
|
|
734
|
+
* <code>TargetOrganizationalUnits</code>
|
|
735
|
+
* </p>
|
|
736
|
+
* <ul>
|
|
737
|
+
* <li>
|
|
738
|
+
* <p>Description: (Optional) The ID of the root
|
|
739
|
+
* of your Organization. This configuration type
|
|
740
|
+
* doesn't currently support choosing specific OUs.
|
|
741
|
+
* The configuration will be deployed to all the OUs
|
|
742
|
+
* in the Organization.</p>
|
|
743
|
+
* </li>
|
|
744
|
+
* </ul>
|
|
745
|
+
* </li>
|
|
746
|
+
* <li>
|
|
747
|
+
* <p>
|
|
748
|
+
* <code>TargetRegions</code>
|
|
749
|
+
* </p>
|
|
750
|
+
* <ul>
|
|
751
|
+
* <li>
|
|
752
|
+
* <p>Description: (Required) A comma separated
|
|
753
|
+
* list of Amazon Web Services Regions you want to
|
|
754
|
+
* deploy the configuration to.</p>
|
|
755
|
+
* </li>
|
|
756
|
+
* </ul>
|
|
757
|
+
* </li>
|
|
758
|
+
* </ul>
|
|
759
|
+
* </dd>
|
|
760
|
+
* <dt>Host Management (Type: Amazon Web ServicesQuickSetupType-SSMHostMgmt)</dt>
|
|
761
|
+
* <dd>
|
|
762
|
+
* <ul>
|
|
763
|
+
* <li>
|
|
764
|
+
* <p>
|
|
765
|
+
* <code>UpdateSSMAgent</code>
|
|
766
|
+
* </p>
|
|
767
|
+
* <ul>
|
|
768
|
+
* <li>
|
|
769
|
+
* <p>Description: (Optional) A boolean value that
|
|
770
|
+
* determines whether the SSM Agent is updated on the
|
|
771
|
+
* target instances every 2 weeks. The default value
|
|
772
|
+
* is "<code>true</code>".</p>
|
|
773
|
+
* </li>
|
|
774
|
+
* </ul>
|
|
775
|
+
* </li>
|
|
776
|
+
* <li>
|
|
777
|
+
* <p>
|
|
778
|
+
* <code>UpdateEc2LaunchAgent</code>
|
|
779
|
+
* </p>
|
|
780
|
+
* <ul>
|
|
781
|
+
* <li>
|
|
782
|
+
* <p>Description: (Optional) A boolean value that
|
|
783
|
+
* determines whether the EC2 Launch agent is updated
|
|
784
|
+
* on the target instances every month. The default
|
|
785
|
+
* value is "<code>false</code>".</p>
|
|
786
|
+
* </li>
|
|
787
|
+
* </ul>
|
|
788
|
+
* </li>
|
|
789
|
+
* <li>
|
|
790
|
+
* <p>
|
|
791
|
+
* <code>CollectInventory</code>
|
|
792
|
+
* </p>
|
|
793
|
+
* <ul>
|
|
794
|
+
* <li>
|
|
795
|
+
* <p>Description: (Optional) A boolean value that
|
|
796
|
+
* determines whether the EC2 Launch agent is updated
|
|
797
|
+
* on the target instances every month. The default
|
|
798
|
+
* value is "<code>true</code>".</p>
|
|
799
|
+
* </li>
|
|
800
|
+
* </ul>
|
|
801
|
+
* </li>
|
|
802
|
+
* <li>
|
|
803
|
+
* <p>
|
|
804
|
+
* <code>ScanInstances</code>
|
|
805
|
+
* </p>
|
|
806
|
+
* <ul>
|
|
807
|
+
* <li>
|
|
808
|
+
* <p>Description: (Optional) A boolean value that
|
|
809
|
+
* determines whether the target instances are
|
|
810
|
+
* scanned daily for available patches. The default
|
|
811
|
+
* value is "<code>true</code>".</p>
|
|
812
|
+
* </li>
|
|
813
|
+
* </ul>
|
|
814
|
+
* </li>
|
|
815
|
+
* <li>
|
|
816
|
+
* <p>
|
|
817
|
+
* <code>InstallCloudWatchAgent</code>
|
|
818
|
+
* </p>
|
|
819
|
+
* <ul>
|
|
820
|
+
* <li>
|
|
821
|
+
* <p>Description: (Optional) A boolean value that
|
|
822
|
+
* determines whether the Amazon CloudWatch agent
|
|
823
|
+
* is installed on the target instances. The default
|
|
824
|
+
* value is "<code>false</code>".</p>
|
|
825
|
+
* </li>
|
|
826
|
+
* </ul>
|
|
827
|
+
* </li>
|
|
828
|
+
* <li>
|
|
829
|
+
* <p>
|
|
830
|
+
* <code>UpdateCloudWatchAgent</code>
|
|
831
|
+
* </p>
|
|
832
|
+
* <ul>
|
|
833
|
+
* <li>
|
|
834
|
+
* <p>Description: (Optional) A boolean value that
|
|
835
|
+
* determines whether the Amazon CloudWatch agent
|
|
836
|
+
* is updated on the target instances every month.
|
|
837
|
+
* The default value is "<code>false</code>".</p>
|
|
838
|
+
* </li>
|
|
839
|
+
* </ul>
|
|
840
|
+
* </li>
|
|
841
|
+
* <li>
|
|
842
|
+
* <p>
|
|
843
|
+
* <code>IsPolicyAttachAllowed</code>
|
|
844
|
+
* </p>
|
|
845
|
+
* <ul>
|
|
846
|
+
* <li>
|
|
847
|
+
* <p>Description: (Optional) A boolean value that
|
|
848
|
+
* determines whether Quick Setup attaches policies
|
|
849
|
+
* to instances profiles already associated with the
|
|
850
|
+
* target instances. The default value is
|
|
851
|
+
* "<code>false</code>".</p>
|
|
852
|
+
* </li>
|
|
853
|
+
* </ul>
|
|
854
|
+
* </li>
|
|
855
|
+
* <li>
|
|
856
|
+
* <p>
|
|
857
|
+
* <code>TargetType</code>
|
|
858
|
+
* </p>
|
|
859
|
+
* <ul>
|
|
860
|
+
* <li>
|
|
861
|
+
* <p>Description: (Optional) Determines how
|
|
862
|
+
* instances are targeted for local account
|
|
863
|
+
* deployments. Don't specify a value for this
|
|
864
|
+
* parameter if you're deploying to OUs. The valid
|
|
865
|
+
* values are <code>*</code>,
|
|
866
|
+
* <code>InstanceIds</code>,
|
|
867
|
+
* <code>ResourceGroups</code>, and
|
|
868
|
+
* <code>Tags</code>. Use <code>*</code> to target
|
|
869
|
+
* all instances in the account.</p>
|
|
870
|
+
* </li>
|
|
871
|
+
* </ul>
|
|
872
|
+
* </li>
|
|
873
|
+
* <li>
|
|
874
|
+
* <p>
|
|
875
|
+
* <code>TargetInstances</code>
|
|
876
|
+
* </p>
|
|
877
|
+
* <ul>
|
|
878
|
+
* <li>
|
|
879
|
+
* <p>Description: (Optional) A comma separated
|
|
880
|
+
* list of instance IDs. You must provide a value for
|
|
881
|
+
* this parameter if you specify
|
|
882
|
+
* <code>InstanceIds</code> for the
|
|
883
|
+
* <code>TargetType</code> parameter.</p>
|
|
884
|
+
* </li>
|
|
885
|
+
* </ul>
|
|
886
|
+
* </li>
|
|
887
|
+
* <li>
|
|
888
|
+
* <p>
|
|
889
|
+
* <code>TargetTagKey</code>
|
|
890
|
+
* </p>
|
|
891
|
+
* <ul>
|
|
892
|
+
* <li>
|
|
893
|
+
* <p>Description: (Optional) The tag key assigned
|
|
894
|
+
* to the instances you want to target. You must
|
|
895
|
+
* provide a value for this parameter if you specify
|
|
896
|
+
* <code>Tags</code> for the <code>TargetType</code>
|
|
897
|
+
* parameter.</p>
|
|
898
|
+
* </li>
|
|
899
|
+
* </ul>
|
|
900
|
+
* </li>
|
|
901
|
+
* <li>
|
|
902
|
+
* <p>
|
|
903
|
+
* <code>TargetTagValue</code>
|
|
904
|
+
* </p>
|
|
905
|
+
* <ul>
|
|
906
|
+
* <li>
|
|
907
|
+
* <p>Description: (Optional) The value of the tag
|
|
908
|
+
* key assigned to the instances you want to target.
|
|
909
|
+
* You must provide a value for this parameter if you
|
|
910
|
+
* specify <code>Tags</code> for the
|
|
911
|
+
* <code>TargetType</code> parameter.</p>
|
|
912
|
+
* </li>
|
|
913
|
+
* </ul>
|
|
914
|
+
* </li>
|
|
915
|
+
* <li>
|
|
916
|
+
* <p>
|
|
917
|
+
* <code>ResourceGroupName</code>
|
|
918
|
+
* </p>
|
|
919
|
+
* <ul>
|
|
920
|
+
* <li>
|
|
921
|
+
* <p>Description: (Optional) The name of the
|
|
922
|
+
* resource group associated with the instances you
|
|
923
|
+
* want to target. You must provide a value for this
|
|
924
|
+
* parameter if you specify
|
|
925
|
+
* <code>ResourceGroups</code> for the
|
|
926
|
+
* <code>TargetType</code> parameter.</p>
|
|
927
|
+
* </li>
|
|
928
|
+
* </ul>
|
|
929
|
+
* </li>
|
|
930
|
+
* <li>
|
|
931
|
+
* <p>
|
|
932
|
+
* <code>TargetAccounts</code>
|
|
933
|
+
* </p>
|
|
934
|
+
* <ul>
|
|
935
|
+
* <li>
|
|
936
|
+
* <p>Description: (Optional) The ID of the
|
|
937
|
+
* Amazon Web Services account initiating the
|
|
938
|
+
* configuration deployment. You only need to provide
|
|
939
|
+
* a value for this parameter if you want to deploy
|
|
940
|
+
* the configuration locally. A value must be
|
|
941
|
+
* provided for either <code>TargetAccounts</code> or
|
|
942
|
+
* <code>TargetOrganizationalUnits</code>.</p>
|
|
943
|
+
* </li>
|
|
944
|
+
* </ul>
|
|
945
|
+
* </li>
|
|
946
|
+
* <li>
|
|
947
|
+
* <p>
|
|
948
|
+
* <code>TargetOrganizationalUnits</code>
|
|
949
|
+
* </p>
|
|
950
|
+
* <ul>
|
|
951
|
+
* <li>
|
|
952
|
+
* <p>Description: (Optional) A comma separated
|
|
953
|
+
* list of organizational units (OUs) you want to
|
|
954
|
+
* deploy the configuration to.</p>
|
|
955
|
+
* </li>
|
|
956
|
+
* </ul>
|
|
957
|
+
* </li>
|
|
958
|
+
* <li>
|
|
959
|
+
* <p>
|
|
960
|
+
* <code>TargetRegions</code>
|
|
961
|
+
* </p>
|
|
962
|
+
* <ul>
|
|
963
|
+
* <li>
|
|
964
|
+
* <p>Description: (Required) A comma separated
|
|
965
|
+
* list of Amazon Web Services Regions you want to
|
|
966
|
+
* deploy the configuration to.</p>
|
|
967
|
+
* </li>
|
|
968
|
+
* </ul>
|
|
969
|
+
* </li>
|
|
970
|
+
* </ul>
|
|
971
|
+
* </dd>
|
|
972
|
+
* <dt>Distributor (Type: Amazon Web ServicesQuickSetupType-Distributor)</dt>
|
|
973
|
+
* <dd>
|
|
974
|
+
* <ul>
|
|
975
|
+
* <li>
|
|
976
|
+
* <p>
|
|
977
|
+
* <code>PackagesToInstall</code>
|
|
978
|
+
* </p>
|
|
979
|
+
* <ul>
|
|
980
|
+
* <li>
|
|
981
|
+
* <p>Description: (Required) A comma separated
|
|
982
|
+
* list of packages you want to install on the target
|
|
983
|
+
* instances. The valid values are
|
|
984
|
+
* <code>AWSEFSTools</code>, <code>AWSCWAgent</code>,
|
|
985
|
+
* and <code>AWSEC2LaunchAgent</code>.</p>
|
|
986
|
+
* </li>
|
|
987
|
+
* </ul>
|
|
988
|
+
* </li>
|
|
989
|
+
* <li>
|
|
990
|
+
* <p>
|
|
991
|
+
* <code>RemediationSchedule</code>
|
|
992
|
+
* </p>
|
|
993
|
+
* <ul>
|
|
994
|
+
* <li>
|
|
995
|
+
* <p>Description: (Optional) A rate expression
|
|
996
|
+
* that defines the schedule for drift remediation.
|
|
997
|
+
* The valid values are <code>rate(30 days)</code>,
|
|
998
|
+
* <code>rate(14 days)</code>, <code>rate(2
|
|
999
|
+
* days)</code>, and <code>none</code>. The default
|
|
1000
|
+
* value is "<code>rate(30 days)</code>".</p>
|
|
1001
|
+
* </li>
|
|
1002
|
+
* </ul>
|
|
1003
|
+
* </li>
|
|
1004
|
+
* <li>
|
|
1005
|
+
* <p>
|
|
1006
|
+
* <code>IsPolicyAttachAllowed</code>
|
|
1007
|
+
* </p>
|
|
1008
|
+
* <ul>
|
|
1009
|
+
* <li>
|
|
1010
|
+
* <p>Description: (Optional) A boolean value that
|
|
1011
|
+
* determines whether Quick Setup attaches policies
|
|
1012
|
+
* to instances profiles already associated with the
|
|
1013
|
+
* target instances. The default value is
|
|
1014
|
+
* "<code>false</code>".</p>
|
|
1015
|
+
* </li>
|
|
1016
|
+
* </ul>
|
|
1017
|
+
* </li>
|
|
1018
|
+
* <li>
|
|
1019
|
+
* <p>
|
|
1020
|
+
* <code>TargetType</code>
|
|
1021
|
+
* </p>
|
|
1022
|
+
* <ul>
|
|
1023
|
+
* <li>
|
|
1024
|
+
* <p>Description: (Optional) Determines how
|
|
1025
|
+
* instances are targeted for local account
|
|
1026
|
+
* deployments. Don't specify a value for this
|
|
1027
|
+
* parameter if you're deploying to OUs. The valid
|
|
1028
|
+
* values are <code>*</code>,
|
|
1029
|
+
* <code>InstanceIds</code>,
|
|
1030
|
+
* <code>ResourceGroups</code>, and
|
|
1031
|
+
* <code>Tags</code>. Use <code>*</code> to target
|
|
1032
|
+
* all instances in the account.</p>
|
|
1033
|
+
* </li>
|
|
1034
|
+
* </ul>
|
|
1035
|
+
* </li>
|
|
1036
|
+
* <li>
|
|
1037
|
+
* <p>
|
|
1038
|
+
* <code>TargetInstances</code>
|
|
1039
|
+
* </p>
|
|
1040
|
+
* <ul>
|
|
1041
|
+
* <li>
|
|
1042
|
+
* <p>Description: (Optional) A comma separated
|
|
1043
|
+
* list of instance IDs. You must provide a value for
|
|
1044
|
+
* this parameter if you specify
|
|
1045
|
+
* <code>InstanceIds</code> for the
|
|
1046
|
+
* <code>TargetType</code> parameter.</p>
|
|
1047
|
+
* </li>
|
|
1048
|
+
* </ul>
|
|
1049
|
+
* </li>
|
|
1050
|
+
* <li>
|
|
1051
|
+
* <p>
|
|
1052
|
+
* <code>TargetTagKey</code>
|
|
1053
|
+
* </p>
|
|
1054
|
+
* <ul>
|
|
1055
|
+
* <li>
|
|
1056
|
+
* <p>Description: (Required) The tag key assigned
|
|
1057
|
+
* to the instances you want to target. You must
|
|
1058
|
+
* provide a value for this parameter if you specify
|
|
1059
|
+
* <code>Tags</code> for the <code>TargetType</code>
|
|
1060
|
+
* parameter.</p>
|
|
1061
|
+
* </li>
|
|
1062
|
+
* </ul>
|
|
1063
|
+
* </li>
|
|
1064
|
+
* <li>
|
|
1065
|
+
* <p>
|
|
1066
|
+
* <code>TargetTagValue</code>
|
|
1067
|
+
* </p>
|
|
1068
|
+
* <ul>
|
|
1069
|
+
* <li>
|
|
1070
|
+
* <p>Description: (Required) The value of the tag
|
|
1071
|
+
* key assigned to the instances you want to target.
|
|
1072
|
+
* You must provide a value for this parameter if you
|
|
1073
|
+
* specify <code>Tags</code> for the
|
|
1074
|
+
* <code>TargetType</code> parameter.</p>
|
|
1075
|
+
* </li>
|
|
1076
|
+
* </ul>
|
|
1077
|
+
* </li>
|
|
1078
|
+
* <li>
|
|
1079
|
+
* <p>
|
|
1080
|
+
* <code>ResourceGroupName</code>
|
|
1081
|
+
* </p>
|
|
1082
|
+
* <ul>
|
|
1083
|
+
* <li>
|
|
1084
|
+
* <p>Description: (Required) The name of the
|
|
1085
|
+
* resource group associated with the instances you
|
|
1086
|
+
* want to target. You must provide a value for this
|
|
1087
|
+
* parameter if you specify
|
|
1088
|
+
* <code>ResourceGroups</code> for the
|
|
1089
|
+
* <code>TargetType</code> parameter.</p>
|
|
1090
|
+
* </li>
|
|
1091
|
+
* </ul>
|
|
1092
|
+
* </li>
|
|
1093
|
+
* <li>
|
|
1094
|
+
* <p>
|
|
1095
|
+
* <code>TargetAccounts</code>
|
|
1096
|
+
* </p>
|
|
1097
|
+
* <ul>
|
|
1098
|
+
* <li>
|
|
1099
|
+
* <p>Description: (Optional) The ID of the
|
|
1100
|
+
* Amazon Web Services account initiating the
|
|
1101
|
+
* configuration deployment. You only need to provide
|
|
1102
|
+
* a value for this parameter if you want to deploy
|
|
1103
|
+
* the configuration locally. A value must be
|
|
1104
|
+
* provided for either <code>TargetAccounts</code> or
|
|
1105
|
+
* <code>TargetOrganizationalUnits</code>.</p>
|
|
1106
|
+
* </li>
|
|
1107
|
+
* </ul>
|
|
1108
|
+
* </li>
|
|
1109
|
+
* <li>
|
|
1110
|
+
* <p>
|
|
1111
|
+
* <code>TargetOrganizationalUnits</code>
|
|
1112
|
+
* </p>
|
|
1113
|
+
* <ul>
|
|
1114
|
+
* <li>
|
|
1115
|
+
* <p>Description: (Optional) A comma separated
|
|
1116
|
+
* list of organizational units (OUs) you want to
|
|
1117
|
+
* deploy the configuration to.</p>
|
|
1118
|
+
* </li>
|
|
1119
|
+
* </ul>
|
|
1120
|
+
* </li>
|
|
1121
|
+
* <li>
|
|
1122
|
+
* <p>
|
|
1123
|
+
* <code>TargetRegions</code>
|
|
1124
|
+
* </p>
|
|
1125
|
+
* <ul>
|
|
1126
|
+
* <li>
|
|
1127
|
+
* <p>Description: (Required) A comma separated
|
|
1128
|
+
* list of Amazon Web Services Regions you want to
|
|
1129
|
+
* deploy the configuration to.</p>
|
|
1130
|
+
* </li>
|
|
1131
|
+
* </ul>
|
|
1132
|
+
* </li>
|
|
1133
|
+
* </ul>
|
|
1134
|
+
* </dd>
|
|
1135
|
+
* <dt>Patch Policy (Type: Amazon Web ServicesQuickSetupType-PatchPolicy)</dt>
|
|
1136
|
+
* <dd>
|
|
1137
|
+
* <ul>
|
|
1138
|
+
* <li>
|
|
1139
|
+
* <p>
|
|
1140
|
+
* <code>PatchPolicyName</code>
|
|
1141
|
+
* </p>
|
|
1142
|
+
* <ul>
|
|
1143
|
+
* <li>
|
|
1144
|
+
* <p>Description: (Required) A name for the patch
|
|
1145
|
+
* policy. The value you provide is applied to target
|
|
1146
|
+
* Amazon EC2 instances as a tag.</p>
|
|
1147
|
+
* </li>
|
|
1148
|
+
* </ul>
|
|
1149
|
+
* </li>
|
|
1150
|
+
* <li>
|
|
1151
|
+
* <p>
|
|
1152
|
+
* <code>SelectedPatchBaselines</code>
|
|
1153
|
+
* </p>
|
|
1154
|
+
* <ul>
|
|
1155
|
+
* <li>
|
|
1156
|
+
* <p>Description: (Required) An array of JSON
|
|
1157
|
+
* objects containing the information for the patch
|
|
1158
|
+
* baselines to include in your patch policy.</p>
|
|
1159
|
+
* </li>
|
|
1160
|
+
* </ul>
|
|
1161
|
+
* </li>
|
|
1162
|
+
* <li>
|
|
1163
|
+
* <p>
|
|
1164
|
+
* <code>PatchBaselineUseDefault</code>
|
|
1165
|
+
* </p>
|
|
1166
|
+
* <ul>
|
|
1167
|
+
* <li>
|
|
1168
|
+
* <p>Description: (Optional) A boolean value that
|
|
1169
|
+
* determines whether the selected patch baselines
|
|
1170
|
+
* are all Amazon Web Services provided.</p>
|
|
1171
|
+
* </li>
|
|
1172
|
+
* </ul>
|
|
1173
|
+
* </li>
|
|
1174
|
+
* <li>
|
|
1175
|
+
* <p>
|
|
1176
|
+
* <code>ConfigurationOptionsPatchOperation</code>
|
|
1177
|
+
* </p>
|
|
1178
|
+
* <ul>
|
|
1179
|
+
* <li>
|
|
1180
|
+
* <p>Description: (Optional) Determines whether
|
|
1181
|
+
* target instances scan for available patches, or
|
|
1182
|
+
* scan and install available patches. The valid
|
|
1183
|
+
* values are <code>Scan</code> and
|
|
1184
|
+
* <code>ScanAndInstall</code>. The default value for
|
|
1185
|
+
* the parameter is <code>Scan</code>.</p>
|
|
1186
|
+
* </li>
|
|
1187
|
+
* </ul>
|
|
1188
|
+
* </li>
|
|
1189
|
+
* <li>
|
|
1190
|
+
* <p>
|
|
1191
|
+
* <code>ConfigurationOptionsScanValue</code>
|
|
1192
|
+
* </p>
|
|
1193
|
+
* <ul>
|
|
1194
|
+
* <li>
|
|
1195
|
+
* <p>Description: (Optional) A cron expression
|
|
1196
|
+
* that is used as the schedule for when instances
|
|
1197
|
+
* scan for available patches.</p>
|
|
1198
|
+
* </li>
|
|
1199
|
+
* </ul>
|
|
1200
|
+
* </li>
|
|
1201
|
+
* <li>
|
|
1202
|
+
* <p>
|
|
1203
|
+
* <code>ConfigurationOptionsInstallValue</code>
|
|
1204
|
+
* </p>
|
|
1205
|
+
* <ul>
|
|
1206
|
+
* <li>
|
|
1207
|
+
* <p>Description: (Optional) A cron expression
|
|
1208
|
+
* that is used as the schedule for when instances
|
|
1209
|
+
* install available patches.</p>
|
|
1210
|
+
* </li>
|
|
1211
|
+
* </ul>
|
|
1212
|
+
* </li>
|
|
1213
|
+
* <li>
|
|
1214
|
+
* <p>
|
|
1215
|
+
* <code>ConfigurationOptionsScanNextInterval</code>
|
|
1216
|
+
* </p>
|
|
1217
|
+
* <ul>
|
|
1218
|
+
* <li>
|
|
1219
|
+
* <p>Description: (Optional) A boolean value that
|
|
1220
|
+
* determines whether instances should scan for
|
|
1221
|
+
* available patches at the next cron interval. The
|
|
1222
|
+
* default value is "<code>false</code>".</p>
|
|
1223
|
+
* </li>
|
|
1224
|
+
* </ul>
|
|
1225
|
+
* </li>
|
|
1226
|
+
* <li>
|
|
1227
|
+
* <p>
|
|
1228
|
+
* <code>ConfigurationOptionsInstallNextInterval</code>
|
|
1229
|
+
* </p>
|
|
1230
|
+
* <ul>
|
|
1231
|
+
* <li>
|
|
1232
|
+
* <p>Description: (Optional) A boolean value that
|
|
1233
|
+
* determines whether instances should scan for
|
|
1234
|
+
* available patches at the next cron interval. The
|
|
1235
|
+
* default value is "<code>false</code>".</p>
|
|
1236
|
+
* </li>
|
|
1237
|
+
* </ul>
|
|
1238
|
+
* </li>
|
|
1239
|
+
* <li>
|
|
1240
|
+
* <p>
|
|
1241
|
+
* <code>RebootOption</code>
|
|
1242
|
+
* </p>
|
|
1243
|
+
* <ul>
|
|
1244
|
+
* <li>
|
|
1245
|
+
* <p>Description: (Optional) A boolean value that
|
|
1246
|
+
* determines whether instances are rebooted after
|
|
1247
|
+
* patches are installed. The default value is
|
|
1248
|
+
* "<code>false</code>".</p>
|
|
1249
|
+
* </li>
|
|
1250
|
+
* </ul>
|
|
1251
|
+
* </li>
|
|
1252
|
+
* <li>
|
|
1253
|
+
* <p>
|
|
1254
|
+
* <code>IsPolicyAttachAllowed</code>
|
|
1255
|
+
* </p>
|
|
1256
|
+
* <ul>
|
|
1257
|
+
* <li>
|
|
1258
|
+
* <p>Description: (Optional) A boolean value that
|
|
1259
|
+
* determines whether Quick Setup attaches policies
|
|
1260
|
+
* to instances profiles already associated with the
|
|
1261
|
+
* target instances. The default value is
|
|
1262
|
+
* "<code>false</code>".</p>
|
|
1263
|
+
* </li>
|
|
1264
|
+
* </ul>
|
|
1265
|
+
* </li>
|
|
1266
|
+
* <li>
|
|
1267
|
+
* <p>
|
|
1268
|
+
* <code>OutputLogEnableS3</code>
|
|
1269
|
+
* </p>
|
|
1270
|
+
* <ul>
|
|
1271
|
+
* <li>
|
|
1272
|
+
* <p>Description: (Optional) A boolean value that
|
|
1273
|
+
* determines whether command output logs are sent to
|
|
1274
|
+
* Amazon S3.</p>
|
|
1275
|
+
* </li>
|
|
1276
|
+
* </ul>
|
|
1277
|
+
* </li>
|
|
1278
|
+
* <li>
|
|
1279
|
+
* <p>
|
|
1280
|
+
* <code>OutputS3Location</code>
|
|
1281
|
+
* </p>
|
|
1282
|
+
* <ul>
|
|
1283
|
+
* <li>
|
|
1284
|
+
* <p>Description: (Optional) A JSON string
|
|
1285
|
+
* containing information about the Amazon S3
|
|
1286
|
+
* bucket where you want to store the output details
|
|
1287
|
+
* of the request.</p>
|
|
1288
|
+
* <ul>
|
|
1289
|
+
* <li>
|
|
1290
|
+
* <p>
|
|
1291
|
+
* <code>OutputS3BucketRegion</code>
|
|
1292
|
+
* </p>
|
|
1293
|
+
* <ul>
|
|
1294
|
+
* <li>
|
|
1295
|
+
* <p>Description: (Optional) The Amazon Web Services Region where the Amazon S3
|
|
1296
|
+
* bucket you want Config to deliver
|
|
1297
|
+
* command output to is located.</p>
|
|
1298
|
+
* </li>
|
|
1299
|
+
* </ul>
|
|
1300
|
+
* </li>
|
|
1301
|
+
* <li>
|
|
1302
|
+
* <p>
|
|
1303
|
+
* <code>OutputS3BucketName</code>
|
|
1304
|
+
* </p>
|
|
1305
|
+
* <ul>
|
|
1306
|
+
* <li>
|
|
1307
|
+
* <p>Description: (Optional) The name of the
|
|
1308
|
+
* Amazon S3 bucket you want Config to deliver command output to.</p>
|
|
1309
|
+
* </li>
|
|
1310
|
+
* </ul>
|
|
1311
|
+
* </li>
|
|
1312
|
+
* <li>
|
|
1313
|
+
* <p>
|
|
1314
|
+
* <code>OutputS3KeyPrefix</code>
|
|
1315
|
+
* </p>
|
|
1316
|
+
* <ul>
|
|
1317
|
+
* <li>
|
|
1318
|
+
* <p>Description: (Optional) The key prefix you
|
|
1319
|
+
* want to use in the custom Amazon S3
|
|
1320
|
+
* bucket.</p>
|
|
1321
|
+
* </li>
|
|
1322
|
+
* </ul>
|
|
1323
|
+
* </li>
|
|
1324
|
+
* </ul>
|
|
1325
|
+
* </li>
|
|
1326
|
+
* </ul>
|
|
1327
|
+
* </li>
|
|
1328
|
+
* <li>
|
|
1329
|
+
* <p>
|
|
1330
|
+
* <code>TargetType</code>
|
|
1331
|
+
* </p>
|
|
1332
|
+
* <ul>
|
|
1333
|
+
* <li>
|
|
1334
|
+
* <p>Description: (Optional) Determines how
|
|
1335
|
+
* instances are targeted for local account
|
|
1336
|
+
* deployments. Don't specify a value for this
|
|
1337
|
+
* parameter if you're deploying to OUs. The valid
|
|
1338
|
+
* values are <code>*</code>,
|
|
1339
|
+
* <code>InstanceIds</code>,
|
|
1340
|
+
* <code>ResourceGroups</code>, and
|
|
1341
|
+
* <code>Tags</code>. Use <code>*</code> to target
|
|
1342
|
+
* all instances in the account.</p>
|
|
1343
|
+
* </li>
|
|
1344
|
+
* </ul>
|
|
1345
|
+
* </li>
|
|
1346
|
+
* <li>
|
|
1347
|
+
* <p>
|
|
1348
|
+
* <code>TargetInstances</code>
|
|
1349
|
+
* </p>
|
|
1350
|
+
* <ul>
|
|
1351
|
+
* <li>
|
|
1352
|
+
* <p>Description: (Optional) A comma separated
|
|
1353
|
+
* list of instance IDs. You must provide a value for
|
|
1354
|
+
* this parameter if you specify
|
|
1355
|
+
* <code>InstanceIds</code> for the
|
|
1356
|
+
* <code>TargetType</code> parameter.</p>
|
|
1357
|
+
* </li>
|
|
1358
|
+
* </ul>
|
|
1359
|
+
* </li>
|
|
1360
|
+
* <li>
|
|
1361
|
+
* <p>
|
|
1362
|
+
* <code>TargetTagKey</code>
|
|
1363
|
+
* </p>
|
|
1364
|
+
* <ul>
|
|
1365
|
+
* <li>
|
|
1366
|
+
* <p>Description: (Required) The tag key assigned
|
|
1367
|
+
* to the instances you want to target. You must
|
|
1368
|
+
* provide a value for this parameter if you specify
|
|
1369
|
+
* <code>Tags</code> for the <code>TargetType</code>
|
|
1370
|
+
* parameter.</p>
|
|
1371
|
+
* </li>
|
|
1372
|
+
* </ul>
|
|
1373
|
+
* </li>
|
|
1374
|
+
* <li>
|
|
1375
|
+
* <p>
|
|
1376
|
+
* <code>TargetTagValue</code>
|
|
1377
|
+
* </p>
|
|
1378
|
+
* <ul>
|
|
1379
|
+
* <li>
|
|
1380
|
+
* <p>Description: (Required) The value of the tag
|
|
1381
|
+
* key assigned to the instances you want to target.
|
|
1382
|
+
* You must provide a value for this parameter if you
|
|
1383
|
+
* specify <code>Tags</code> for the
|
|
1384
|
+
* <code>TargetType</code> parameter.</p>
|
|
1385
|
+
* </li>
|
|
1386
|
+
* </ul>
|
|
1387
|
+
* </li>
|
|
1388
|
+
* <li>
|
|
1389
|
+
* <p>
|
|
1390
|
+
* <code>ResourceGroupName</code>
|
|
1391
|
+
* </p>
|
|
1392
|
+
* <ul>
|
|
1393
|
+
* <li>
|
|
1394
|
+
* <p>Description: (Required) The name of the
|
|
1395
|
+
* resource group associated with the instances you
|
|
1396
|
+
* want to target. You must provide a value for this
|
|
1397
|
+
* parameter if you specify
|
|
1398
|
+
* <code>ResourceGroups</code> for the
|
|
1399
|
+
* <code>TargetType</code> parameter.</p>
|
|
1400
|
+
* </li>
|
|
1401
|
+
* </ul>
|
|
1402
|
+
* </li>
|
|
1403
|
+
* <li>
|
|
1404
|
+
* <p>
|
|
1405
|
+
* <code>TargetAccounts</code>
|
|
1406
|
+
* </p>
|
|
1407
|
+
* <ul>
|
|
1408
|
+
* <li>
|
|
1409
|
+
* <p>Description: (Optional) The ID of the
|
|
1410
|
+
* Amazon Web Services account initiating the
|
|
1411
|
+
* configuration deployment. You only need to provide
|
|
1412
|
+
* a value for this parameter if you want to deploy
|
|
1413
|
+
* the configuration locally. A value must be
|
|
1414
|
+
* provided for either <code>TargetAccounts</code> or
|
|
1415
|
+
* <code>TargetOrganizationalUnits</code>.</p>
|
|
1416
|
+
* </li>
|
|
1417
|
+
* </ul>
|
|
1418
|
+
* </li>
|
|
1419
|
+
* <li>
|
|
1420
|
+
* <p>
|
|
1421
|
+
* <code>TargetOrganizationalUnits</code>
|
|
1422
|
+
* </p>
|
|
1423
|
+
* <ul>
|
|
1424
|
+
* <li>
|
|
1425
|
+
* <p>Description: (Optional) A comma separated
|
|
1426
|
+
* list of organizational units (OUs) you want to
|
|
1427
|
+
* deploy the configuration to.</p>
|
|
1428
|
+
* </li>
|
|
1429
|
+
* </ul>
|
|
1430
|
+
* </li>
|
|
1431
|
+
* <li>
|
|
1432
|
+
* <p>
|
|
1433
|
+
* <code>TargetRegions</code>
|
|
1434
|
+
* </p>
|
|
1435
|
+
* <ul>
|
|
1436
|
+
* <li>
|
|
1437
|
+
* <p>Description: (Required) A comma separated
|
|
1438
|
+
* list of Amazon Web Services Regions you want to
|
|
1439
|
+
* deploy the configuration to.</p>
|
|
1440
|
+
* </li>
|
|
1441
|
+
* </ul>
|
|
1442
|
+
* </li>
|
|
1443
|
+
* </ul>
|
|
1444
|
+
* </dd>
|
|
1445
|
+
* </dl>
|
|
1446
|
+
* @public
|
|
1447
|
+
*/
|
|
1448
|
+
Parameters: Record<string, string> | undefined;
|
|
1449
|
+
/**
|
|
1450
|
+
* <p>The version of the Quick Setup type to use.</p>
|
|
1451
|
+
* @public
|
|
1452
|
+
*/
|
|
1453
|
+
TypeVersion?: string;
|
|
1454
|
+
/**
|
|
1455
|
+
* <p>The name of the IAM role used to deploy local
|
|
1456
|
+
* configurations.</p>
|
|
1457
|
+
* @public
|
|
1458
|
+
*/
|
|
1459
|
+
LocalDeploymentExecutionRoleName?: string;
|
|
1460
|
+
/**
|
|
1461
|
+
* <p>The ARN of the IAM role used to administrate local configuration
|
|
1462
|
+
* deployments.</p>
|
|
1463
|
+
* @public
|
|
1464
|
+
*/
|
|
1465
|
+
LocalDeploymentAdministrationRoleArn?: string;
|
|
1466
|
+
}
|
|
1467
|
+
/**
|
|
1468
|
+
* <p>A summarized definition of a Quick Setup configuration definition.</p>
|
|
1469
|
+
* @public
|
|
1470
|
+
*/
|
|
1471
|
+
export interface ConfigurationDefinitionSummary {
|
|
1472
|
+
/**
|
|
1473
|
+
* <p>The ID of the configuration definition.</p>
|
|
1474
|
+
* @public
|
|
1475
|
+
*/
|
|
1476
|
+
Id?: string;
|
|
1477
|
+
/**
|
|
1478
|
+
* <p>The type of the Quick Setup configuration used by the configuration
|
|
1479
|
+
* definition.</p>
|
|
1480
|
+
* @public
|
|
1481
|
+
*/
|
|
1482
|
+
Type?: string;
|
|
1483
|
+
/**
|
|
1484
|
+
* <p>The version of the Quick Setup type used by the configuration definition.</p>
|
|
1485
|
+
* @public
|
|
1486
|
+
*/
|
|
1487
|
+
TypeVersion?: string;
|
|
1488
|
+
/**
|
|
1489
|
+
* <p>The common parameters and values for the configuration definition.</p>
|
|
1490
|
+
* @public
|
|
1491
|
+
*/
|
|
1492
|
+
FirstClassParameters?: Record<string, string>;
|
|
1493
|
+
}
|
|
1494
|
+
/**
|
|
1495
|
+
* @public
|
|
1496
|
+
* @enum
|
|
1497
|
+
*/
|
|
1498
|
+
export declare const Status: {
|
|
1499
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1500
|
+
readonly DELETING: "DELETING";
|
|
1501
|
+
readonly DEPLOYING: "DEPLOYING";
|
|
1502
|
+
readonly FAILED: "FAILED";
|
|
1503
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
1504
|
+
readonly NONE: "NONE";
|
|
1505
|
+
readonly STOPPED: "STOPPED";
|
|
1506
|
+
readonly STOPPING: "STOPPING";
|
|
1507
|
+
readonly STOP_FAILED: "STOP_FAILED";
|
|
1508
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
1509
|
+
};
|
|
1510
|
+
/**
|
|
1511
|
+
* @public
|
|
1512
|
+
*/
|
|
1513
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
1514
|
+
/**
|
|
1515
|
+
* @public
|
|
1516
|
+
* @enum
|
|
1517
|
+
*/
|
|
1518
|
+
export declare const StatusType: {
|
|
1519
|
+
readonly ASYNC_EXECUTIONS: "AsyncExecutions";
|
|
1520
|
+
readonly DEPLOYMENT: "Deployment";
|
|
1521
|
+
};
|
|
1522
|
+
/**
|
|
1523
|
+
* @public
|
|
1524
|
+
*/
|
|
1525
|
+
export type StatusType = (typeof StatusType)[keyof typeof StatusType];
|
|
1526
|
+
/**
|
|
1527
|
+
* <p>A summarized description of the status.</p>
|
|
1528
|
+
* @public
|
|
1529
|
+
*/
|
|
1530
|
+
export interface StatusSummary {
|
|
1531
|
+
/**
|
|
1532
|
+
* <p>The type of a status summary.</p>
|
|
1533
|
+
* @public
|
|
1534
|
+
*/
|
|
1535
|
+
StatusType: StatusType | undefined;
|
|
1536
|
+
/**
|
|
1537
|
+
* <p>The current status.</p>
|
|
1538
|
+
* @public
|
|
1539
|
+
*/
|
|
1540
|
+
Status?: Status;
|
|
1541
|
+
/**
|
|
1542
|
+
* <p>When applicable, returns an informational message relevant to the current status and status type of the status summary object. We don't recommend implementing parsing logic around this value since the messages returned can vary in format.</p>
|
|
1543
|
+
* @public
|
|
1544
|
+
*/
|
|
1545
|
+
StatusMessage?: string;
|
|
1546
|
+
/**
|
|
1547
|
+
* <p>The datetime stamp when the status was last updated.</p>
|
|
1548
|
+
* @public
|
|
1549
|
+
*/
|
|
1550
|
+
LastUpdatedAt: Date | undefined;
|
|
1551
|
+
/**
|
|
1552
|
+
* <p>Details about the status.</p>
|
|
1553
|
+
* @public
|
|
1554
|
+
*/
|
|
1555
|
+
StatusDetails?: Record<string, string>;
|
|
1556
|
+
}
|
|
1557
|
+
/**
|
|
1558
|
+
* <p>A summary of a Quick Setup configuration manager.</p>
|
|
1559
|
+
* @public
|
|
1560
|
+
*/
|
|
1561
|
+
export interface ConfigurationManagerSummary {
|
|
1562
|
+
/**
|
|
1563
|
+
* <p>The ARN of the Quick Setup configuration.</p>
|
|
1564
|
+
* @public
|
|
1565
|
+
*/
|
|
1566
|
+
ManagerArn: string | undefined;
|
|
1567
|
+
/**
|
|
1568
|
+
* <p>The description of the configuration.</p>
|
|
1569
|
+
* @public
|
|
1570
|
+
*/
|
|
1571
|
+
Description?: string;
|
|
1572
|
+
/**
|
|
1573
|
+
* <p>The name of the configuration</p>
|
|
1574
|
+
* @public
|
|
1575
|
+
*/
|
|
1576
|
+
Name?: string;
|
|
1577
|
+
/**
|
|
1578
|
+
* <p>Summaries of the state of the configuration manager. These summaries include an
|
|
1579
|
+
* aggregate of the statuses from the configuration definition associated with the
|
|
1580
|
+
* configuration manager. This includes deployment statuses, association statuses,
|
|
1581
|
+
* drift statuses, health checks, and more.</p>
|
|
1582
|
+
* @public
|
|
1583
|
+
*/
|
|
1584
|
+
StatusSummaries?: StatusSummary[];
|
|
1585
|
+
/**
|
|
1586
|
+
* <p>A summary of the Quick Setup configuration definition.</p>
|
|
1587
|
+
* @public
|
|
1588
|
+
*/
|
|
1589
|
+
ConfigurationDefinitionSummaries?: ConfigurationDefinitionSummary[];
|
|
1590
|
+
}
|
|
1591
|
+
/**
|
|
1592
|
+
* <p>Another request is being processed. Wait a few minutes and try again.</p>
|
|
1593
|
+
* @public
|
|
1594
|
+
*/
|
|
1595
|
+
export declare class ConflictException extends __BaseException {
|
|
1596
|
+
readonly name: "ConflictException";
|
|
1597
|
+
readonly $fault: "client";
|
|
1598
|
+
Message?: string;
|
|
1599
|
+
/**
|
|
1600
|
+
* @internal
|
|
1601
|
+
*/
|
|
1602
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
1603
|
+
}
|
|
1604
|
+
/**
|
|
1605
|
+
* @public
|
|
1606
|
+
*/
|
|
1607
|
+
export interface CreateConfigurationManagerInput {
|
|
1608
|
+
/**
|
|
1609
|
+
* <p>A name for the configuration manager.</p>
|
|
1610
|
+
* @public
|
|
1611
|
+
*/
|
|
1612
|
+
Name?: string;
|
|
1613
|
+
/**
|
|
1614
|
+
* <p>A description of the configuration manager.</p>
|
|
1615
|
+
* @public
|
|
1616
|
+
*/
|
|
1617
|
+
Description?: string;
|
|
1618
|
+
/**
|
|
1619
|
+
* <p>The definition of the Quick Setup configuration that the configuration manager
|
|
1620
|
+
* deploys.</p>
|
|
1621
|
+
* @public
|
|
1622
|
+
*/
|
|
1623
|
+
ConfigurationDefinitions: ConfigurationDefinitionInput[] | undefined;
|
|
1624
|
+
/**
|
|
1625
|
+
* <p>Key-value pairs of metadata to assign to the configuration manager.</p>
|
|
1626
|
+
* @public
|
|
1627
|
+
*/
|
|
1628
|
+
Tags?: Record<string, string>;
|
|
1629
|
+
}
|
|
1630
|
+
/**
|
|
1631
|
+
* @public
|
|
1632
|
+
*/
|
|
1633
|
+
export interface CreateConfigurationManagerOutput {
|
|
1634
|
+
/**
|
|
1635
|
+
* <p>The ARN for the newly created configuration manager.</p>
|
|
1636
|
+
* @public
|
|
1637
|
+
*/
|
|
1638
|
+
ManagerArn: string | undefined;
|
|
1639
|
+
}
|
|
1640
|
+
/**
|
|
1641
|
+
* <p>An error occurred on the server side.</p>
|
|
1642
|
+
* @public
|
|
1643
|
+
*/
|
|
1644
|
+
export declare class InternalServerException extends __BaseException {
|
|
1645
|
+
readonly name: "InternalServerException";
|
|
1646
|
+
readonly $fault: "server";
|
|
1647
|
+
$retryable: {};
|
|
1648
|
+
Message?: string;
|
|
1649
|
+
/**
|
|
1650
|
+
* @internal
|
|
1651
|
+
*/
|
|
1652
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
1653
|
+
}
|
|
1654
|
+
/**
|
|
1655
|
+
* <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
|
|
1656
|
+
* @public
|
|
1657
|
+
*/
|
|
1658
|
+
export declare class ThrottlingException extends __BaseException {
|
|
1659
|
+
readonly name: "ThrottlingException";
|
|
1660
|
+
readonly $fault: "client";
|
|
1661
|
+
$retryable: {};
|
|
1662
|
+
Message: string | undefined;
|
|
1663
|
+
/**
|
|
1664
|
+
* @internal
|
|
1665
|
+
*/
|
|
1666
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
1667
|
+
}
|
|
1668
|
+
/**
|
|
1669
|
+
* <p>The request is invalid. Verify the values provided for the request parameters are
|
|
1670
|
+
* accurate.</p>
|
|
1671
|
+
* @public
|
|
1672
|
+
*/
|
|
1673
|
+
export declare class ValidationException extends __BaseException {
|
|
1674
|
+
readonly name: "ValidationException";
|
|
1675
|
+
readonly $fault: "client";
|
|
1676
|
+
Message?: string;
|
|
1677
|
+
/**
|
|
1678
|
+
* @internal
|
|
1679
|
+
*/
|
|
1680
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
1681
|
+
}
|
|
1682
|
+
/**
|
|
1683
|
+
* @public
|
|
1684
|
+
*/
|
|
1685
|
+
export interface DeleteConfigurationManagerInput {
|
|
1686
|
+
/**
|
|
1687
|
+
* <p>The ID of the configuration manager.</p>
|
|
1688
|
+
* @public
|
|
1689
|
+
*/
|
|
1690
|
+
ManagerArn: string | undefined;
|
|
1691
|
+
}
|
|
1692
|
+
/**
|
|
1693
|
+
* <p>The resource couldn't be found. Check the ID or name and try again.</p>
|
|
1694
|
+
* @public
|
|
1695
|
+
*/
|
|
1696
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
1697
|
+
readonly name: "ResourceNotFoundException";
|
|
1698
|
+
readonly $fault: "client";
|
|
1699
|
+
Message?: string;
|
|
1700
|
+
/**
|
|
1701
|
+
* @internal
|
|
1702
|
+
*/
|
|
1703
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1704
|
+
}
|
|
1705
|
+
/**
|
|
1706
|
+
* <p>A key-value pair to filter results.</p>
|
|
1707
|
+
* @public
|
|
1708
|
+
*/
|
|
1709
|
+
export interface Filter {
|
|
1710
|
+
/**
|
|
1711
|
+
* <p>The key for the filter.</p>
|
|
1712
|
+
* @public
|
|
1713
|
+
*/
|
|
1714
|
+
Key: string | undefined;
|
|
1715
|
+
/**
|
|
1716
|
+
* <p>The values for the filter keys.</p>
|
|
1717
|
+
* @public
|
|
1718
|
+
*/
|
|
1719
|
+
Values: string[] | undefined;
|
|
1720
|
+
}
|
|
1721
|
+
/**
|
|
1722
|
+
* @public
|
|
1723
|
+
*/
|
|
1724
|
+
export interface GetConfigurationManagerInput {
|
|
1725
|
+
/**
|
|
1726
|
+
* <p>The ARN of the configuration manager.</p>
|
|
1727
|
+
* @public
|
|
1728
|
+
*/
|
|
1729
|
+
ManagerArn: string | undefined;
|
|
1730
|
+
}
|
|
1731
|
+
/**
|
|
1732
|
+
* @public
|
|
1733
|
+
*/
|
|
1734
|
+
export interface GetConfigurationManagerOutput {
|
|
1735
|
+
/**
|
|
1736
|
+
* <p>The ARN of the configuration manager.</p>
|
|
1737
|
+
* @public
|
|
1738
|
+
*/
|
|
1739
|
+
ManagerArn: string | undefined;
|
|
1740
|
+
/**
|
|
1741
|
+
* <p>The description of the configuration manager.</p>
|
|
1742
|
+
* @public
|
|
1743
|
+
*/
|
|
1744
|
+
Description?: string;
|
|
1745
|
+
/**
|
|
1746
|
+
* <p>The name of the configuration manager.</p>
|
|
1747
|
+
* @public
|
|
1748
|
+
*/
|
|
1749
|
+
Name?: string;
|
|
1750
|
+
/**
|
|
1751
|
+
* <p>The datetime stamp when the configuration manager was created.</p>
|
|
1752
|
+
* @public
|
|
1753
|
+
*/
|
|
1754
|
+
CreatedAt?: Date;
|
|
1755
|
+
/**
|
|
1756
|
+
* <p>The datetime stamp when the configuration manager was last updated.</p>
|
|
1757
|
+
* @public
|
|
1758
|
+
*/
|
|
1759
|
+
LastModifiedAt?: Date;
|
|
1760
|
+
/**
|
|
1761
|
+
* <p>A summary of the state of the configuration manager. This includes deployment
|
|
1762
|
+
* statuses, association statuses, drift statuses, health checks, and more.</p>
|
|
1763
|
+
* @public
|
|
1764
|
+
*/
|
|
1765
|
+
StatusSummaries?: StatusSummary[];
|
|
1766
|
+
/**
|
|
1767
|
+
* <p>The configuration definitions association with the configuration manager.</p>
|
|
1768
|
+
* @public
|
|
1769
|
+
*/
|
|
1770
|
+
ConfigurationDefinitions?: ConfigurationDefinition[];
|
|
1771
|
+
/**
|
|
1772
|
+
* <p>Key-value pairs of metadata to assign to the configuration manager.</p>
|
|
1773
|
+
* @public
|
|
1774
|
+
*/
|
|
1775
|
+
Tags?: Record<string, string>;
|
|
1776
|
+
}
|
|
1777
|
+
/**
|
|
1778
|
+
* <p>Settings configured for Quick Setup.</p>
|
|
1779
|
+
* @public
|
|
1780
|
+
*/
|
|
1781
|
+
export interface ServiceSettings {
|
|
1782
|
+
/**
|
|
1783
|
+
* <p>The IAM role used to enable Explorer.</p>
|
|
1784
|
+
* @public
|
|
1785
|
+
*/
|
|
1786
|
+
ExplorerEnablingRoleArn?: string;
|
|
1787
|
+
}
|
|
1788
|
+
/**
|
|
1789
|
+
* @public
|
|
1790
|
+
*/
|
|
1791
|
+
export interface GetServiceSettingsOutput {
|
|
1792
|
+
/**
|
|
1793
|
+
* <p>Returns details about the settings for Quick Setup in the requesting Amazon Web Services account and Amazon Web Services Region.</p>
|
|
1794
|
+
* @public
|
|
1795
|
+
*/
|
|
1796
|
+
ServiceSettings?: ServiceSettings;
|
|
1797
|
+
}
|
|
1798
|
+
/**
|
|
1799
|
+
* @public
|
|
1800
|
+
*/
|
|
1801
|
+
export interface ListConfigurationManagersInput {
|
|
1802
|
+
/**
|
|
1803
|
+
* <p>The token to use when requesting a specific set of items from a list.</p>
|
|
1804
|
+
* @public
|
|
1805
|
+
*/
|
|
1806
|
+
StartingToken?: string;
|
|
1807
|
+
/**
|
|
1808
|
+
* <p>Specifies the maximum number of configuration managers that are returned by the
|
|
1809
|
+
* request.</p>
|
|
1810
|
+
* @public
|
|
1811
|
+
*/
|
|
1812
|
+
MaxItems?: number;
|
|
1813
|
+
/**
|
|
1814
|
+
* <p>Filters the results returned by the request.</p>
|
|
1815
|
+
* @public
|
|
1816
|
+
*/
|
|
1817
|
+
Filters?: Filter[];
|
|
1818
|
+
}
|
|
1819
|
+
/**
|
|
1820
|
+
* @public
|
|
1821
|
+
*/
|
|
1822
|
+
export interface ListConfigurationManagersOutput {
|
|
1823
|
+
/**
|
|
1824
|
+
* <p>The configuration managers returned by the request.</p>
|
|
1825
|
+
* @public
|
|
1826
|
+
*/
|
|
1827
|
+
ConfigurationManagersList?: ConfigurationManagerSummary[];
|
|
1828
|
+
/**
|
|
1829
|
+
* <p>The token to use when requesting the next set of configuration managers. If there
|
|
1830
|
+
* are no additional operations to return, the string is empty.</p>
|
|
1831
|
+
* @public
|
|
1832
|
+
*/
|
|
1833
|
+
NextToken?: string;
|
|
1834
|
+
}
|
|
1835
|
+
/**
|
|
1836
|
+
* <p>Information about the Quick Setup type.</p>
|
|
1837
|
+
* @public
|
|
1838
|
+
*/
|
|
1839
|
+
export interface QuickSetupTypeOutput {
|
|
1840
|
+
/**
|
|
1841
|
+
* <p>The type of the Quick Setup configuration.</p>
|
|
1842
|
+
* @public
|
|
1843
|
+
*/
|
|
1844
|
+
Type?: string;
|
|
1845
|
+
/**
|
|
1846
|
+
* <p>The latest version number of the configuration.</p>
|
|
1847
|
+
* @public
|
|
1848
|
+
*/
|
|
1849
|
+
LatestVersion?: string;
|
|
1850
|
+
}
|
|
1851
|
+
/**
|
|
1852
|
+
* @public
|
|
1853
|
+
*/
|
|
1854
|
+
export interface ListQuickSetupTypesOutput {
|
|
1855
|
+
/**
|
|
1856
|
+
* <p>An array of Quick Setup types.</p>
|
|
1857
|
+
* @public
|
|
1858
|
+
*/
|
|
1859
|
+
QuickSetupTypeList?: QuickSetupTypeOutput[];
|
|
1860
|
+
}
|
|
1861
|
+
/**
|
|
1862
|
+
* @public
|
|
1863
|
+
*/
|
|
1864
|
+
export interface ListTagsForResourceRequest {
|
|
1865
|
+
/**
|
|
1866
|
+
* <p>The ARN of the resource the tag is assigned to.</p>
|
|
1867
|
+
* @public
|
|
1868
|
+
*/
|
|
1869
|
+
ResourceArn: string | undefined;
|
|
1870
|
+
}
|
|
1871
|
+
/**
|
|
1872
|
+
* <p>Key-value pairs of metadata.</p>
|
|
1873
|
+
* @public
|
|
1874
|
+
*/
|
|
1875
|
+
export interface TagEntry {
|
|
1876
|
+
/**
|
|
1877
|
+
* <p>The key for the tag.</p>
|
|
1878
|
+
* @public
|
|
1879
|
+
*/
|
|
1880
|
+
Key?: string;
|
|
1881
|
+
/**
|
|
1882
|
+
* <p>The value for the tag.</p>
|
|
1883
|
+
* @public
|
|
1884
|
+
*/
|
|
1885
|
+
Value?: string;
|
|
1886
|
+
}
|
|
1887
|
+
/**
|
|
1888
|
+
* @public
|
|
1889
|
+
*/
|
|
1890
|
+
export interface ListTagsForResourceResponse {
|
|
1891
|
+
/**
|
|
1892
|
+
* <p>Key-value pairs of metadata assigned to the resource.</p>
|
|
1893
|
+
* @public
|
|
1894
|
+
*/
|
|
1895
|
+
Tags?: TagEntry[];
|
|
1896
|
+
}
|
|
1897
|
+
/**
|
|
1898
|
+
* @public
|
|
1899
|
+
*/
|
|
1900
|
+
export interface TagResourceInput {
|
|
1901
|
+
/**
|
|
1902
|
+
* <p>The ARN of the resource to tag.</p>
|
|
1903
|
+
* @public
|
|
1904
|
+
*/
|
|
1905
|
+
ResourceArn: string | undefined;
|
|
1906
|
+
/**
|
|
1907
|
+
* <p>Key-value pairs of metadata to assign to the resource.</p>
|
|
1908
|
+
* @public
|
|
1909
|
+
*/
|
|
1910
|
+
Tags: Record<string, string> | undefined;
|
|
1911
|
+
}
|
|
1912
|
+
/**
|
|
1913
|
+
* @public
|
|
1914
|
+
*/
|
|
1915
|
+
export interface UntagResourceInput {
|
|
1916
|
+
/**
|
|
1917
|
+
* <p>The ARN of the resource to remove tags from.</p>
|
|
1918
|
+
* @public
|
|
1919
|
+
*/
|
|
1920
|
+
ResourceArn: string | undefined;
|
|
1921
|
+
/**
|
|
1922
|
+
* <p>The keys of the tags to remove from the resource.</p>
|
|
1923
|
+
* @public
|
|
1924
|
+
*/
|
|
1925
|
+
TagKeys: string[] | undefined;
|
|
1926
|
+
}
|
|
1927
|
+
/**
|
|
1928
|
+
* @public
|
|
1929
|
+
*/
|
|
1930
|
+
export interface UpdateConfigurationDefinitionInput {
|
|
1931
|
+
/**
|
|
1932
|
+
* <p>The ARN of the configuration manager associated with the definition to
|
|
1933
|
+
* update.</p>
|
|
1934
|
+
* @public
|
|
1935
|
+
*/
|
|
1936
|
+
ManagerArn: string | undefined;
|
|
1937
|
+
/**
|
|
1938
|
+
* <p>The ID of the configuration definition you want to update.</p>
|
|
1939
|
+
* @public
|
|
1940
|
+
*/
|
|
1941
|
+
Id: string | undefined;
|
|
1942
|
+
/**
|
|
1943
|
+
* <p>The version of the Quick Setup type to use.</p>
|
|
1944
|
+
* @public
|
|
1945
|
+
*/
|
|
1946
|
+
TypeVersion?: string;
|
|
1947
|
+
/**
|
|
1948
|
+
* <p>The parameters for the configuration definition type.</p>
|
|
1949
|
+
* @public
|
|
1950
|
+
*/
|
|
1951
|
+
Parameters?: Record<string, string>;
|
|
1952
|
+
/**
|
|
1953
|
+
* <p>The name of the IAM role used to deploy local
|
|
1954
|
+
* configurations.</p>
|
|
1955
|
+
* @public
|
|
1956
|
+
*/
|
|
1957
|
+
LocalDeploymentExecutionRoleName?: string;
|
|
1958
|
+
/**
|
|
1959
|
+
* <p>The ARN of the IAM role used to administrate local configuration
|
|
1960
|
+
* deployments.</p>
|
|
1961
|
+
* @public
|
|
1962
|
+
*/
|
|
1963
|
+
LocalDeploymentAdministrationRoleArn?: string;
|
|
1964
|
+
}
|
|
1965
|
+
/**
|
|
1966
|
+
* @public
|
|
1967
|
+
*/
|
|
1968
|
+
export interface UpdateConfigurationManagerInput {
|
|
1969
|
+
/**
|
|
1970
|
+
* <p>The ARN of the configuration manager.</p>
|
|
1971
|
+
* @public
|
|
1972
|
+
*/
|
|
1973
|
+
ManagerArn: string | undefined;
|
|
1974
|
+
/**
|
|
1975
|
+
* <p>A name for the configuration manager.</p>
|
|
1976
|
+
* @public
|
|
1977
|
+
*/
|
|
1978
|
+
Name?: string;
|
|
1979
|
+
/**
|
|
1980
|
+
* <p>A description of the configuration manager.</p>
|
|
1981
|
+
* @public
|
|
1982
|
+
*/
|
|
1983
|
+
Description?: string;
|
|
1984
|
+
}
|
|
1985
|
+
/**
|
|
1986
|
+
* @public
|
|
1987
|
+
*/
|
|
1988
|
+
export interface UpdateServiceSettingsInput {
|
|
1989
|
+
/**
|
|
1990
|
+
* <p>The IAM role used to enable Explorer.</p>
|
|
1991
|
+
* @public
|
|
1992
|
+
*/
|
|
1993
|
+
ExplorerEnablingRoleArn?: string;
|
|
1994
|
+
}
|
|
1995
|
+
/**
|
|
1996
|
+
* @internal
|
|
1997
|
+
*/
|
|
1998
|
+
export declare const CreateConfigurationManagerInputFilterSensitiveLog: (obj: CreateConfigurationManagerInput) => any;
|
|
1999
|
+
/**
|
|
2000
|
+
* @internal
|
|
2001
|
+
*/
|
|
2002
|
+
export declare const GetConfigurationManagerOutputFilterSensitiveLog: (obj: GetConfigurationManagerOutput) => any;
|
|
2003
|
+
/**
|
|
2004
|
+
* @internal
|
|
2005
|
+
*/
|
|
2006
|
+
export declare const TagEntryFilterSensitiveLog: (obj: TagEntry) => any;
|
|
2007
|
+
/**
|
|
2008
|
+
* @internal
|
|
2009
|
+
*/
|
|
2010
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2011
|
+
/**
|
|
2012
|
+
* @internal
|
|
2013
|
+
*/
|
|
2014
|
+
export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
|