@aws-sdk/client-ssm 3.554.0 → 3.562.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/README.md +8 -0
- package/dist-cjs/index.js +213 -73
- package/dist-es/SSM.js +2 -0
- package/dist-es/commands/DescribeInstancePropertiesCommand.js +24 -0
- package/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +1 -1
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +30 -9
- package/dist-es/models/models_1.js +9 -43
- package/dist-es/models/models_2.js +43 -0
- package/dist-es/pagination/DescribeInstancePropertiesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +78 -3
- package/dist-types/SSM.d.ts +8 -0
- package/dist-types/SSMClient.d.ts +3 -2
- package/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +151 -0
- package/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +2 -1
- package/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +1 -2
- package/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +1 -1
- package/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +1 -1
- package/dist-types/commands/StartSessionCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +334 -243
- package/dist-types/models/models_1.d.ts +219 -234
- package/dist-types/models/models_2.d.ts +246 -8
- package/dist-types/pagination/DescribeInstancePropertiesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/SSM.d.ts +18 -0
- package/dist-types/ts3.4/SSMClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeInstancePropertiesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +79 -49
- package/dist-types/ts3.4/models/models_1.d.ts +51 -60
- package/dist-types/ts3.4/models/models_2.d.ts +62 -1
- package/dist-types/ts3.4/pagination/DescribeInstancePropertiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/package.json +4 -4
|
@@ -1,6 +1,205 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { AlarmConfiguration, AlarmStateInformation, AssociationComplianceSeverity, AssociationOverview, AssociationSyncCompliance, AutomationExecutionStatus, AutomationSubtype, DocumentFormat, DocumentHashType, DocumentPermissionType, DocumentRequires, DocumentStatus, DocumentType, ExecutionMode, InstanceAssociationOutputLocation, MaintenanceWindowExecutionStatus, MaintenanceWindowResourceType, MaintenanceWindowTaskType, MetadataValue, OperatingSystem, OpsItemDataValue, OpsItemNotification, PatchAction, PatchComplianceLevel, PatchFilterGroup, PatchOrchestratorFilter, PatchRuleGroup, PatchSource, PlatformType, RelatedOpsItem, ResolvedTargets, ResourceDataSyncAwsOrganizationsSource, ResourceDataSyncS3Destination, ResourceTypeForTagging, ReviewStatus, Runbook, StepExecution, Tag, Target, TargetLocation } from "./models_0";
|
|
2
|
+
import { AlarmConfiguration, AlarmStateInformation, AssociationComplianceSeverity, AssociationOverview, AssociationSyncCompliance, AutomationExecutionStatus, AutomationSubtype, DocumentFormat, DocumentHashType, DocumentPermissionType, DocumentRequires, DocumentStatus, DocumentType, ExecutionMode, InstanceAssociationOutputLocation, MaintenanceWindowExecutionStatus, MaintenanceWindowFilter, MaintenanceWindowResourceType, MaintenanceWindowTaskType, MetadataValue, OperatingSystem, OpsItemDataValue, OpsItemNotification, PatchAction, PatchComplianceLevel, PatchFilterGroup, PatchOrchestratorFilter, PatchRuleGroup, PatchSource, PlatformType, RelatedOpsItem, ResolvedTargets, ResourceDataSyncAwsOrganizationsSource, ResourceDataSyncS3Destination, ResourceTypeForTagging, ReviewStatus, Runbook, ScheduledWindowExecution, StepExecution, Tag, Target, TargetLocation } from "./models_0";
|
|
3
3
|
import { SSMServiceException as __BaseException } from "./SSMServiceException";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface DescribeMaintenanceWindowScheduleResult {
|
|
8
|
+
/**
|
|
9
|
+
* <p>Information about maintenance window executions scheduled for the specified time
|
|
10
|
+
* range.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
ScheduledWindowExecutions?: ScheduledWindowExecution[];
|
|
14
|
+
/**
|
|
15
|
+
* <p>The token for the next set of items to return. (You use this token in the next call.)</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
NextToken?: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export interface DescribeMaintenanceWindowsForTargetRequest {
|
|
24
|
+
/**
|
|
25
|
+
* <p>The managed node ID or key-value pair to retrieve information about.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
Targets: Target[] | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The type of resource you want to retrieve information about. For example,
|
|
31
|
+
* <code>INSTANCE</code>.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
ResourceType: MaintenanceWindowResourceType | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* <p>The maximum number of items to return for this call. The call also returns a token that you
|
|
37
|
+
* can specify in a subsequent call to get the next set of results.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
MaxResults?: number;
|
|
41
|
+
/**
|
|
42
|
+
* <p>The token for the next set of items to return. (You received this token from a previous
|
|
43
|
+
* call.)</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
NextToken?: string;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* <p>The maintenance window to which the specified target belongs.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
export interface MaintenanceWindowIdentityForTarget {
|
|
53
|
+
/**
|
|
54
|
+
* <p>The ID of the maintenance window.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
WindowId?: string;
|
|
58
|
+
/**
|
|
59
|
+
* <p>The name of the maintenance window.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
Name?: string;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export interface DescribeMaintenanceWindowsForTargetResult {
|
|
68
|
+
/**
|
|
69
|
+
* <p>Information about the maintenance window targets and tasks a managed node is associated
|
|
70
|
+
* with.</p>
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
WindowIdentities?: MaintenanceWindowIdentityForTarget[];
|
|
74
|
+
/**
|
|
75
|
+
* <p>The token for the next set of items to return. (You use this token in the next call.)</p>
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
NextToken?: string;
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export interface DescribeMaintenanceWindowTargetsRequest {
|
|
84
|
+
/**
|
|
85
|
+
* <p>The ID of the maintenance window whose targets should be retrieved.</p>
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
WindowId: string | undefined;
|
|
89
|
+
/**
|
|
90
|
+
* <p>Optional filters that can be used to narrow down the scope of the returned window targets.
|
|
91
|
+
* The supported filter keys are <code>Type</code>, <code>WindowTargetId</code>, and
|
|
92
|
+
* <code>OwnerInformation</code>.</p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
Filters?: MaintenanceWindowFilter[];
|
|
96
|
+
/**
|
|
97
|
+
* <p>The maximum number of items to return for this call. The call also returns a token that you
|
|
98
|
+
* can specify in a subsequent call to get the next set of results.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
MaxResults?: number;
|
|
102
|
+
/**
|
|
103
|
+
* <p>The token for the next set of items to return. (You received this token from a previous
|
|
104
|
+
* call.)</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
NextToken?: string;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* <p>The target registered with the maintenance window.</p>
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
export interface MaintenanceWindowTarget {
|
|
114
|
+
/**
|
|
115
|
+
* <p>The ID of the maintenance window to register the target with.</p>
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
WindowId?: string;
|
|
119
|
+
/**
|
|
120
|
+
* <p>The ID of the target.</p>
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
WindowTargetId?: string;
|
|
124
|
+
/**
|
|
125
|
+
* <p>The type of target that is being registered with the maintenance window.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
ResourceType?: MaintenanceWindowResourceType;
|
|
129
|
+
/**
|
|
130
|
+
* <p>The targets, either managed nodes or tags.</p>
|
|
131
|
+
* <p>Specify managed nodes using the following format:</p>
|
|
132
|
+
* <p>
|
|
133
|
+
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code>
|
|
134
|
+
* </p>
|
|
135
|
+
* <p>Tags are specified using the following format:</p>
|
|
136
|
+
* <p>
|
|
137
|
+
* <code>Key=<tag name>,Values=<tag value></code>.</p>
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
Targets?: Target[];
|
|
141
|
+
/**
|
|
142
|
+
* <p>A user-provided value that will be included in any Amazon CloudWatch Events events that are
|
|
143
|
+
* raised while running tasks for these targets in this maintenance window.</p>
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
OwnerInformation?: string;
|
|
147
|
+
/**
|
|
148
|
+
* <p>The name for the maintenance window target.</p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
Name?: string;
|
|
152
|
+
/**
|
|
153
|
+
* <p>A description for the target.</p>
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
Description?: string;
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
export interface DescribeMaintenanceWindowTargetsResult {
|
|
162
|
+
/**
|
|
163
|
+
* <p>Information about the targets in the maintenance window.</p>
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
Targets?: MaintenanceWindowTarget[];
|
|
167
|
+
/**
|
|
168
|
+
* <p>The token to use when requesting the next set of items. If there are no additional items to
|
|
169
|
+
* return, the string is empty.</p>
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
NextToken?: string;
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* @public
|
|
176
|
+
*/
|
|
177
|
+
export interface DescribeMaintenanceWindowTasksRequest {
|
|
178
|
+
/**
|
|
179
|
+
* <p>The ID of the maintenance window whose tasks should be retrieved.</p>
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
182
|
+
WindowId: string | undefined;
|
|
183
|
+
/**
|
|
184
|
+
* <p>Optional filters used to narrow down the scope of the returned tasks. The supported filter
|
|
185
|
+
* keys are <code>WindowTaskId</code>, <code>TaskArn</code>, <code>Priority</code>, and
|
|
186
|
+
* <code>TaskType</code>.</p>
|
|
187
|
+
* @public
|
|
188
|
+
*/
|
|
189
|
+
Filters?: MaintenanceWindowFilter[];
|
|
190
|
+
/**
|
|
191
|
+
* <p>The maximum number of items to return for this call. The call also returns a token that you
|
|
192
|
+
* can specify in a subsequent call to get the next set of results.</p>
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
195
|
+
MaxResults?: number;
|
|
196
|
+
/**
|
|
197
|
+
* <p>The token for the next set of items to return. (You received this token from a previous
|
|
198
|
+
* call.)</p>
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
NextToken?: string;
|
|
202
|
+
}
|
|
4
203
|
/**
|
|
5
204
|
* @public
|
|
6
205
|
* @enum
|
|
@@ -3981,7 +4180,11 @@ export interface GetParametersRequest {
|
|
|
3981
4180
|
* parameters shared with you from another account, you must use the full ARNs.</p>
|
|
3982
4181
|
* <p>To query by parameter label, use <code>"Name": "name:label"</code>. To query by parameter
|
|
3983
4182
|
* version, use <code>"Name": "name:version"</code>.</p>
|
|
3984
|
-
* <
|
|
4183
|
+
* <note>
|
|
4184
|
+
* <p>The results for <code>GetParameters</code> requests are listed in alphabetical order in
|
|
4185
|
+
* query responses.</p>
|
|
4186
|
+
* </note>
|
|
4187
|
+
* <p>For information about shared parameters, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-shared-parameters.html">Working with
|
|
3985
4188
|
* shared parameters</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
3986
4189
|
* @public
|
|
3987
4190
|
*/
|
|
@@ -8403,12 +8606,16 @@ export interface RegisterTaskWithMaintenanceWindowRequest {
|
|
|
8403
8606
|
*/
|
|
8404
8607
|
TaskArn: string | undefined;
|
|
8405
8608
|
/**
|
|
8406
|
-
* <p>The Amazon Resource Name (ARN) of the IAM service role for
|
|
8407
|
-
*
|
|
8408
|
-
*
|
|
8409
|
-
*
|
|
8410
|
-
*
|
|
8411
|
-
*
|
|
8609
|
+
* <p>The Amazon Resource Name (ARN) of the IAM service role for
|
|
8610
|
+
* Amazon Web Services Systems Manager to assume when running a maintenance window task. If you do not specify a
|
|
8611
|
+
* service role ARN, Systems Manager uses a service-linked role in your account. If no
|
|
8612
|
+
* appropriate service-linked role for Systems Manager exists in your account, it is created when
|
|
8613
|
+
* you run <code>RegisterTaskWithMaintenanceWindow</code>.</p>
|
|
8614
|
+
* <p>However, for an improved security posture, we strongly recommend creating a custom
|
|
8615
|
+
* policy and custom service role for running your maintenance window tasks. The policy
|
|
8616
|
+
* can be crafted to provide only the permissions needed for your particular
|
|
8617
|
+
* maintenance window tasks. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-maintenance-permissions.html">Setting up maintenance windows</a> in the in the
|
|
8618
|
+
* <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
8412
8619
|
* @public
|
|
8413
8620
|
*/
|
|
8414
8621
|
ServiceRoleArn?: string;
|
|
@@ -9184,235 +9391,13 @@ export interface StartAutomationExecutionResult {
|
|
|
9184
9391
|
AutomationExecutionId?: string;
|
|
9185
9392
|
}
|
|
9186
9393
|
/**
|
|
9187
|
-
*
|
|
9188
|
-
* still in a pending state.</p>
|
|
9189
|
-
* @public
|
|
9190
|
-
*/
|
|
9191
|
-
export declare class AutomationDefinitionNotApprovedException extends __BaseException {
|
|
9192
|
-
readonly name: "AutomationDefinitionNotApprovedException";
|
|
9193
|
-
readonly $fault: "client";
|
|
9194
|
-
Message?: string;
|
|
9195
|
-
/**
|
|
9196
|
-
* @internal
|
|
9197
|
-
*/
|
|
9198
|
-
constructor(opts: __ExceptionOptionType<AutomationDefinitionNotApprovedException, __BaseException>);
|
|
9199
|
-
}
|
|
9200
|
-
/**
|
|
9201
|
-
* @public
|
|
9202
|
-
*/
|
|
9203
|
-
export interface StartChangeRequestExecutionRequest {
|
|
9204
|
-
/**
|
|
9205
|
-
* <p>The date and time specified in the change request to run the Automation runbooks.</p>
|
|
9206
|
-
* <note>
|
|
9207
|
-
* <p>The Automation runbooks specified for the runbook workflow can't run until all required
|
|
9208
|
-
* approvals for the change request have been received.</p>
|
|
9209
|
-
* </note>
|
|
9210
|
-
* @public
|
|
9211
|
-
*/
|
|
9212
|
-
ScheduledTime?: Date;
|
|
9213
|
-
/**
|
|
9214
|
-
* <p>The name of the change template document to run during the runbook workflow.</p>
|
|
9215
|
-
* @public
|
|
9216
|
-
*/
|
|
9217
|
-
DocumentName: string | undefined;
|
|
9218
|
-
/**
|
|
9219
|
-
* <p>The version of the change template document to run during the runbook workflow.</p>
|
|
9220
|
-
* @public
|
|
9221
|
-
*/
|
|
9222
|
-
DocumentVersion?: string;
|
|
9223
|
-
/**
|
|
9224
|
-
* <p>A key-value map of parameters that match the declared parameters in the change template
|
|
9225
|
-
* document.</p>
|
|
9226
|
-
* @public
|
|
9227
|
-
*/
|
|
9228
|
-
Parameters?: Record<string, string[]>;
|
|
9229
|
-
/**
|
|
9230
|
-
* <p>The name of the change request associated with the runbook workflow to be run.</p>
|
|
9231
|
-
* @public
|
|
9232
|
-
*/
|
|
9233
|
-
ChangeRequestName?: string;
|
|
9234
|
-
/**
|
|
9235
|
-
* <p>The user-provided idempotency token. The token must be unique, is case insensitive, enforces
|
|
9236
|
-
* the UUID format, and can't be reused.</p>
|
|
9237
|
-
* @public
|
|
9238
|
-
*/
|
|
9239
|
-
ClientToken?: string;
|
|
9240
|
-
/**
|
|
9241
|
-
* <p>Indicates whether the change request can be approved automatically without the need for
|
|
9242
|
-
* manual approvals.</p>
|
|
9243
|
-
* <p>If <code>AutoApprovable</code> is enabled in a change template, then setting
|
|
9244
|
-
* <code>AutoApprove</code> to <code>true</code> in <code>StartChangeRequestExecution</code>
|
|
9245
|
-
* creates a change request that bypasses approver review.</p>
|
|
9246
|
-
* <note>
|
|
9247
|
-
* <p>Change Calendar restrictions are not bypassed in this scenario. If the state of an
|
|
9248
|
-
* associated calendar is <code>CLOSED</code>, change freeze approvers must still grant permission
|
|
9249
|
-
* for this change request to run. If they don't, the change won't be processed until the calendar
|
|
9250
|
-
* state is again <code>OPEN</code>. </p>
|
|
9251
|
-
* </note>
|
|
9252
|
-
* @public
|
|
9253
|
-
*/
|
|
9254
|
-
AutoApprove?: boolean;
|
|
9255
|
-
/**
|
|
9256
|
-
* <p>Information about the Automation runbooks that are run during the runbook workflow.</p>
|
|
9257
|
-
* <note>
|
|
9258
|
-
* <p>The Automation runbooks specified for the runbook workflow can't run until all required
|
|
9259
|
-
* approvals for the change request have been received.</p>
|
|
9260
|
-
* </note>
|
|
9261
|
-
* @public
|
|
9262
|
-
*/
|
|
9263
|
-
Runbooks: Runbook[] | undefined;
|
|
9264
|
-
/**
|
|
9265
|
-
* <p>Optional metadata that you assign to a resource. You can specify a maximum of five tags for
|
|
9266
|
-
* a change request. Tags enable you to categorize a resource in different ways, such as by
|
|
9267
|
-
* purpose, owner, or environment. For example, you might want to tag a change request to identify
|
|
9268
|
-
* an environment or target Amazon Web Services Region. In this case, you could specify the following key-value
|
|
9269
|
-
* pairs:</p>
|
|
9270
|
-
* <ul>
|
|
9271
|
-
* <li>
|
|
9272
|
-
* <p>
|
|
9273
|
-
* <code>Key=Environment,Value=Production</code>
|
|
9274
|
-
* </p>
|
|
9275
|
-
* </li>
|
|
9276
|
-
* <li>
|
|
9277
|
-
* <p>
|
|
9278
|
-
* <code>Key=Region,Value=us-east-2</code>
|
|
9279
|
-
* </p>
|
|
9280
|
-
* </li>
|
|
9281
|
-
* </ul>
|
|
9282
|
-
* @public
|
|
9283
|
-
*/
|
|
9284
|
-
Tags?: Tag[];
|
|
9285
|
-
/**
|
|
9286
|
-
* <p>The time that the requester expects the runbook workflow related to the change request to
|
|
9287
|
-
* complete. The time is an estimate only that the requester provides for reviewers.</p>
|
|
9288
|
-
* @public
|
|
9289
|
-
*/
|
|
9290
|
-
ScheduledEndTime?: Date;
|
|
9291
|
-
/**
|
|
9292
|
-
* <p>User-provided details about the change. If no details are provided, content specified in the
|
|
9293
|
-
* <b>Template information</b> section of the associated change template
|
|
9294
|
-
* is added.</p>
|
|
9295
|
-
* @public
|
|
9296
|
-
*/
|
|
9297
|
-
ChangeDetails?: string;
|
|
9298
|
-
}
|
|
9299
|
-
/**
|
|
9300
|
-
* @public
|
|
9301
|
-
*/
|
|
9302
|
-
export interface StartChangeRequestExecutionResult {
|
|
9303
|
-
/**
|
|
9304
|
-
* <p>The unique ID of a runbook workflow operation. (A runbook workflow is a type of Automation
|
|
9305
|
-
* operation.) </p>
|
|
9306
|
-
* @public
|
|
9307
|
-
*/
|
|
9308
|
-
AutomationExecutionId?: string;
|
|
9309
|
-
}
|
|
9310
|
-
/**
|
|
9311
|
-
* @public
|
|
9312
|
-
*/
|
|
9313
|
-
export interface StartSessionRequest {
|
|
9314
|
-
/**
|
|
9315
|
-
* <p>The managed node to connect to for the session.</p>
|
|
9316
|
-
* @public
|
|
9317
|
-
*/
|
|
9318
|
-
Target: string | undefined;
|
|
9319
|
-
/**
|
|
9320
|
-
* <p>The name of the SSM document you want to use to define the type of session, input
|
|
9321
|
-
* parameters, or preferences for the session. For example, <code>SSM-SessionManagerRunShell</code>.
|
|
9322
|
-
* You can call the <a>GetDocument</a> API to verify the document exists before
|
|
9323
|
-
* attempting to start a session. If no document name is provided, a shell to the managed node is
|
|
9324
|
-
* launched by default. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-working-with-sessions-start.html">Start a
|
|
9325
|
-
* session</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
9326
|
-
* @public
|
|
9327
|
-
*/
|
|
9328
|
-
DocumentName?: string;
|
|
9329
|
-
/**
|
|
9330
|
-
* <p>The reason for connecting to the instance. This value is included in the details for the
|
|
9331
|
-
* Amazon CloudWatch Events event created when you start the session.</p>
|
|
9332
|
-
* @public
|
|
9333
|
-
*/
|
|
9334
|
-
Reason?: string;
|
|
9335
|
-
/**
|
|
9336
|
-
* <p>The values you want to specify for the parameters defined in the Session
|
|
9337
|
-
* document.</p>
|
|
9338
|
-
* @public
|
|
9339
|
-
*/
|
|
9340
|
-
Parameters?: Record<string, string[]>;
|
|
9341
|
-
}
|
|
9342
|
-
/**
|
|
9343
|
-
* @public
|
|
9344
|
-
*/
|
|
9345
|
-
export interface StartSessionResponse {
|
|
9346
|
-
/**
|
|
9347
|
-
* <p>The ID of the session.</p>
|
|
9348
|
-
* @public
|
|
9349
|
-
*/
|
|
9350
|
-
SessionId?: string;
|
|
9351
|
-
/**
|
|
9352
|
-
* <p>An encrypted token value containing session and caller information. This token is used to
|
|
9353
|
-
* authenticate the connection to the managed node, and is valid only long enough to ensure the
|
|
9354
|
-
* connection is successful. Never share your session's token.</p>
|
|
9355
|
-
* @public
|
|
9356
|
-
*/
|
|
9357
|
-
TokenValue?: string;
|
|
9358
|
-
/**
|
|
9359
|
-
* <p>A URL back to SSM Agent on the managed node that the Session Manager client uses to send commands and
|
|
9360
|
-
* receive output from the node. Format: <code>wss://ssmmessages.<b>region</b>.amazonaws.com/v1/data-channel/<b>session-id</b>?stream=(input|output)</code>
|
|
9361
|
-
* </p>
|
|
9362
|
-
* <p>
|
|
9363
|
-
* <b>region</b> represents the Region identifier for an
|
|
9364
|
-
* Amazon Web Services Region supported by Amazon Web Services Systems Manager, such as <code>us-east-2</code> for the US East (Ohio) Region.
|
|
9365
|
-
* For a list of supported <b>region</b> values, see the <b>Region</b> column in <a href="https://docs.aws.amazon.com/general/latest/gr/ssm.html#ssm_region">Systems Manager service endpoints</a> in the
|
|
9366
|
-
* <i>Amazon Web Services General Reference</i>.</p>
|
|
9367
|
-
* <p>
|
|
9368
|
-
* <b>session-id</b> represents the ID of a Session Manager session, such as
|
|
9369
|
-
* <code>1a2b3c4dEXAMPLE</code>.</p>
|
|
9370
|
-
* @public
|
|
9371
|
-
*/
|
|
9372
|
-
StreamUrl?: string;
|
|
9373
|
-
}
|
|
9374
|
-
/**
|
|
9375
|
-
* <p>The specified target managed node for the session isn't fully configured for use with Session Manager.
|
|
9376
|
-
* For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-getting-started.html">Getting started with
|
|
9377
|
-
* Session Manager</a> in the <i>Amazon Web Services Systems Manager User Guide</i>. This error is also returned if you
|
|
9378
|
-
* attempt to start a session on a managed node that is located in a different account or
|
|
9379
|
-
* Region</p>
|
|
9380
|
-
* @public
|
|
9381
|
-
*/
|
|
9382
|
-
export declare class TargetNotConnected extends __BaseException {
|
|
9383
|
-
readonly name: "TargetNotConnected";
|
|
9384
|
-
readonly $fault: "client";
|
|
9385
|
-
Message?: string;
|
|
9386
|
-
/**
|
|
9387
|
-
* @internal
|
|
9388
|
-
*/
|
|
9389
|
-
constructor(opts: __ExceptionOptionType<TargetNotConnected, __BaseException>);
|
|
9390
|
-
}
|
|
9391
|
-
/**
|
|
9392
|
-
* <p>The specified update status operation isn't valid.</p>
|
|
9393
|
-
* @public
|
|
9394
|
-
*/
|
|
9395
|
-
export declare class InvalidAutomationStatusUpdateException extends __BaseException {
|
|
9396
|
-
readonly name: "InvalidAutomationStatusUpdateException";
|
|
9397
|
-
readonly $fault: "client";
|
|
9398
|
-
Message?: string;
|
|
9399
|
-
/**
|
|
9400
|
-
* @internal
|
|
9401
|
-
*/
|
|
9402
|
-
constructor(opts: __ExceptionOptionType<InvalidAutomationStatusUpdateException, __BaseException>);
|
|
9403
|
-
}
|
|
9404
|
-
/**
|
|
9405
|
-
* @public
|
|
9406
|
-
* @enum
|
|
9394
|
+
* @internal
|
|
9407
9395
|
*/
|
|
9408
|
-
export declare const
|
|
9409
|
-
readonly CANCEL: "Cancel";
|
|
9410
|
-
readonly COMPLETE: "Complete";
|
|
9411
|
-
};
|
|
9396
|
+
export declare const MaintenanceWindowTargetFilterSensitiveLog: (obj: MaintenanceWindowTarget) => any;
|
|
9412
9397
|
/**
|
|
9413
|
-
* @
|
|
9398
|
+
* @internal
|
|
9414
9399
|
*/
|
|
9415
|
-
export
|
|
9400
|
+
export declare const DescribeMaintenanceWindowTargetsResultFilterSensitiveLog: (obj: DescribeMaintenanceWindowTargetsResult) => any;
|
|
9416
9401
|
/**
|
|
9417
9402
|
* @internal
|
|
9418
9403
|
*/
|