aws-sdk 2.801.0 → 2.805.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/CHANGELOG.md +25 -1
- package/README.md +1 -1
- package/apis/amplifybackend-2020-08-11.min.json +0 -8
- package/apis/batch-2016-08-10.min.json +81 -21
- package/apis/compute-optimizer-2019-11-01.min.json +110 -0
- package/apis/{profile-2020-08-15.examples.json → customer-profiles-2020-08-15.examples.json} +0 -0
- package/apis/{profile-2020-08-15.min.json → customer-profiles-2020-08-15.min.json} +3 -3
- package/apis/{profile-2020-08-15.paginators.json → customer-profiles-2020-08-15.paginators.json} +0 -0
- package/apis/dms-2016-01-01.min.json +9 -1
- package/apis/ec2-2016-11-15.min.json +4 -0
- package/apis/lambda-2015-03-31.examples.json +6 -6
- package/apis/license-manager-2018-08-01.min.json +957 -51
- package/apis/medialive-2017-10-14.min.json +240 -158
- package/apis/metadata.json +4 -3
- package/apis/rds-2014-10-31.min.json +200 -132
- package/apis/servicecatalog-appregistry-2020-06-24.min.json +80 -0
- package/apis/ssm-2014-11-06.min.json +348 -203
- package/clients/all.d.ts +1 -1
- package/clients/all.js +2 -2
- package/clients/amplifybackend.d.ts +74 -74
- package/clients/batch.d.ts +200 -133
- package/clients/computeoptimizer.d.ts +179 -22
- package/clients/{profile.d.ts → customerprofiles.d.ts} +63 -63
- package/clients/customerprofiles.js +18 -0
- package/clients/directoryservice.d.ts +24 -21
- package/clients/dms.d.ts +16 -0
- package/clients/ec2.d.ts +6 -2
- package/clients/kafka.d.ts +4 -4
- package/clients/lambda.d.ts +10 -10
- package/clients/licensemanager.d.ts +1350 -72
- package/clients/medialive.d.ts +80 -1
- package/clients/rds.d.ts +128 -43
- package/clients/servicecatalogappregistry.d.ts +61 -0
- package/clients/ssm.d.ts +197 -10
- package/clients/workspaces.d.ts +10 -10
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +31 -27
- package/dist/aws-sdk.js +565 -343
- package/dist/aws-sdk.min.js +60 -60
- package/lib/config_service_placeholders.d.ts +2 -2
- package/lib/core.js +1 -1
- package/lib/services/s3.js +6 -2
- package/package.json +1 -1
- package/clients/profile.js +0 -18
|
@@ -123,6 +123,30 @@ declare class ServiceCatalogAppRegistry extends Service {
|
|
|
123
123
|
* Lists all attribute groups which you have access to. Results are paginated.
|
|
124
124
|
*/
|
|
125
125
|
listAttributeGroups(callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.ListAttributeGroupsResponse) => void): Request<ServiceCatalogAppRegistry.Types.ListAttributeGroupsResponse, AWSError>;
|
|
126
|
+
/**
|
|
127
|
+
* Lists all of the tags on the resource.
|
|
128
|
+
*/
|
|
129
|
+
listTagsForResource(params: ServiceCatalogAppRegistry.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.ListTagsForResourceResponse) => void): Request<ServiceCatalogAppRegistry.Types.ListTagsForResourceResponse, AWSError>;
|
|
130
|
+
/**
|
|
131
|
+
* Lists all of the tags on the resource.
|
|
132
|
+
*/
|
|
133
|
+
listTagsForResource(callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.ListTagsForResourceResponse) => void): Request<ServiceCatalogAppRegistry.Types.ListTagsForResourceResponse, AWSError>;
|
|
134
|
+
/**
|
|
135
|
+
* Assigns one or more tags (key-value pairs) to the specified resource. Each tag consists of a key and an optional value. If a tag with the same key is already associated with the resource, this action updates its value.
|
|
136
|
+
*/
|
|
137
|
+
tagResource(params: ServiceCatalogAppRegistry.Types.TagResourceRequest, callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.TagResourceResponse) => void): Request<ServiceCatalogAppRegistry.Types.TagResourceResponse, AWSError>;
|
|
138
|
+
/**
|
|
139
|
+
* Assigns one or more tags (key-value pairs) to the specified resource. Each tag consists of a key and an optional value. If a tag with the same key is already associated with the resource, this action updates its value.
|
|
140
|
+
*/
|
|
141
|
+
tagResource(callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.TagResourceResponse) => void): Request<ServiceCatalogAppRegistry.Types.TagResourceResponse, AWSError>;
|
|
142
|
+
/**
|
|
143
|
+
* Removes tags from a resource.
|
|
144
|
+
*/
|
|
145
|
+
untagResource(params: ServiceCatalogAppRegistry.Types.UntagResourceRequest, callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.UntagResourceResponse) => void): Request<ServiceCatalogAppRegistry.Types.UntagResourceResponse, AWSError>;
|
|
146
|
+
/**
|
|
147
|
+
* Removes tags from a resource.
|
|
148
|
+
*/
|
|
149
|
+
untagResource(callback?: (err: AWSError, data: ServiceCatalogAppRegistry.Types.UntagResourceResponse) => void): Request<ServiceCatalogAppRegistry.Types.UntagResourceResponse, AWSError>;
|
|
126
150
|
/**
|
|
127
151
|
* Updates an existing application with new attributes.
|
|
128
152
|
*/
|
|
@@ -599,6 +623,18 @@ declare namespace ServiceCatalogAppRegistry {
|
|
|
599
623
|
*/
|
|
600
624
|
nextToken?: NextToken;
|
|
601
625
|
}
|
|
626
|
+
export interface ListTagsForResourceRequest {
|
|
627
|
+
/**
|
|
628
|
+
* The Amazon resource name (ARN) that specifies the resource.
|
|
629
|
+
*/
|
|
630
|
+
resourceArn: Arn;
|
|
631
|
+
}
|
|
632
|
+
export interface ListTagsForResourceResponse {
|
|
633
|
+
/**
|
|
634
|
+
* The tags on the resource.
|
|
635
|
+
*/
|
|
636
|
+
tags?: Tags;
|
|
637
|
+
}
|
|
602
638
|
export type MaxResults = number;
|
|
603
639
|
export type Name = string;
|
|
604
640
|
export type NextToken = string;
|
|
@@ -617,9 +653,34 @@ declare namespace ServiceCatalogAppRegistry {
|
|
|
617
653
|
export type Resources = ResourceInfo[];
|
|
618
654
|
export type StackArn = string;
|
|
619
655
|
export type TagKey = string;
|
|
656
|
+
export type TagKeys = TagKey[];
|
|
657
|
+
export interface TagResourceRequest {
|
|
658
|
+
/**
|
|
659
|
+
* The Amazon resource name (ARN) that specifies the resource.
|
|
660
|
+
*/
|
|
661
|
+
resourceArn: Arn;
|
|
662
|
+
/**
|
|
663
|
+
* The new or modified tags for the resource.
|
|
664
|
+
*/
|
|
665
|
+
tags: Tags;
|
|
666
|
+
}
|
|
667
|
+
export interface TagResourceResponse {
|
|
668
|
+
}
|
|
620
669
|
export type TagValue = string;
|
|
621
670
|
export type Tags = {[key: string]: TagValue};
|
|
622
671
|
export type Timestamp = Date;
|
|
672
|
+
export interface UntagResourceRequest {
|
|
673
|
+
/**
|
|
674
|
+
* The Amazon resource name (ARN) that specifies the resource.
|
|
675
|
+
*/
|
|
676
|
+
resourceArn: Arn;
|
|
677
|
+
/**
|
|
678
|
+
* A list of the tag keys to remove from the specified resource.
|
|
679
|
+
*/
|
|
680
|
+
tagKeys: TagKeys;
|
|
681
|
+
}
|
|
682
|
+
export interface UntagResourceResponse {
|
|
683
|
+
}
|
|
623
684
|
export interface UpdateApplicationRequest {
|
|
624
685
|
/**
|
|
625
686
|
* The name or ID of the application that will be updated.
|
package/clients/ssm.d.ts
CHANGED
|
@@ -84,6 +84,14 @@ declare class SSM extends Service {
|
|
|
84
84
|
* Creates a new OpsItem. You must have permission in AWS Identity and Access Management (IAM) to create a new OpsItem. For more information, see Getting started with OpsCenter in the AWS Systems Manager User Guide. Operations engineers and IT professionals use OpsCenter to view, investigate, and remediate operational issues impacting the performance and health of their AWS resources. For more information, see AWS Systems Manager OpsCenter in the AWS Systems Manager User Guide.
|
|
85
85
|
*/
|
|
86
86
|
createOpsItem(callback?: (err: AWSError, data: SSM.Types.CreateOpsItemResponse) => void): Request<SSM.Types.CreateOpsItemResponse, AWSError>;
|
|
87
|
+
/**
|
|
88
|
+
* If you create a new application in AppManager, Systems Manager calls this API action to specify information about the new application, including the application type.
|
|
89
|
+
*/
|
|
90
|
+
createOpsMetadata(params: SSM.Types.CreateOpsMetadataRequest, callback?: (err: AWSError, data: SSM.Types.CreateOpsMetadataResult) => void): Request<SSM.Types.CreateOpsMetadataResult, AWSError>;
|
|
91
|
+
/**
|
|
92
|
+
* If you create a new application in AppManager, Systems Manager calls this API action to specify information about the new application, including the application type.
|
|
93
|
+
*/
|
|
94
|
+
createOpsMetadata(callback?: (err: AWSError, data: SSM.Types.CreateOpsMetadataResult) => void): Request<SSM.Types.CreateOpsMetadataResult, AWSError>;
|
|
87
95
|
/**
|
|
88
96
|
* Creates a patch baseline. For information about valid key and value pairs in PatchFilters for each supported operating system type, see PatchFilter.
|
|
89
97
|
*/
|
|
@@ -140,6 +148,14 @@ declare class SSM extends Service {
|
|
|
140
148
|
* Deletes a maintenance window.
|
|
141
149
|
*/
|
|
142
150
|
deleteMaintenanceWindow(callback?: (err: AWSError, data: SSM.Types.DeleteMaintenanceWindowResult) => void): Request<SSM.Types.DeleteMaintenanceWindowResult, AWSError>;
|
|
151
|
+
/**
|
|
152
|
+
* Delete OpsMetadata related to an application.
|
|
153
|
+
*/
|
|
154
|
+
deleteOpsMetadata(params: SSM.Types.DeleteOpsMetadataRequest, callback?: (err: AWSError, data: SSM.Types.DeleteOpsMetadataResult) => void): Request<SSM.Types.DeleteOpsMetadataResult, AWSError>;
|
|
155
|
+
/**
|
|
156
|
+
* Delete OpsMetadata related to an application.
|
|
157
|
+
*/
|
|
158
|
+
deleteOpsMetadata(callback?: (err: AWSError, data: SSM.Types.DeleteOpsMetadataResult) => void): Request<SSM.Types.DeleteOpsMetadataResult, AWSError>;
|
|
143
159
|
/**
|
|
144
160
|
* Delete a parameter from the system.
|
|
145
161
|
*/
|
|
@@ -445,11 +461,11 @@ declare class SSM extends Service {
|
|
|
445
461
|
*/
|
|
446
462
|
describePatchGroups(callback?: (err: AWSError, data: SSM.Types.DescribePatchGroupsResult) => void): Request<SSM.Types.DescribePatchGroupsResult, AWSError>;
|
|
447
463
|
/**
|
|
448
|
-
* Lists the properties of available patches organized by product, product family, classification, severity, and other properties of available patches. You can use the reported properties in the filters you specify in requests for actions such as CreatePatchBaseline, UpdatePatchBaseline, DescribeAvailablePatches, and DescribePatchBaselines. The following section lists the properties that can be used in filters for each major operating system type: AMAZON_LINUX Valid properties: PRODUCT, CLASSIFICATION, SEVERITY AMAZON_LINUX_2 Valid properties: PRODUCT, CLASSIFICATION, SEVERITY CENTOS Valid properties: PRODUCT, CLASSIFICATION, SEVERITY DEBIAN Valid properties: PRODUCT, PRIORITY ORACLE_LINUX Valid properties: PRODUCT, CLASSIFICATION, SEVERITY REDHAT_ENTERPRISE_LINUX Valid properties: PRODUCT, CLASSIFICATION, SEVERITY SUSE Valid properties: PRODUCT, CLASSIFICATION, SEVERITY UBUNTU Valid properties: PRODUCT, PRIORITY WINDOWS Valid properties: PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY
|
|
464
|
+
* Lists the properties of available patches organized by product, product family, classification, severity, and other properties of available patches. You can use the reported properties in the filters you specify in requests for actions such as CreatePatchBaseline, UpdatePatchBaseline, DescribeAvailablePatches, and DescribePatchBaselines. The following section lists the properties that can be used in filters for each major operating system type: AMAZON_LINUX Valid properties: PRODUCT, CLASSIFICATION, SEVERITY AMAZON_LINUX_2 Valid properties: PRODUCT, CLASSIFICATION, SEVERITY CENTOS Valid properties: PRODUCT, CLASSIFICATION, SEVERITY DEBIAN Valid properties: PRODUCT, PRIORITY MACOS Valid properties: PRODUCT, CLASSIFICATION ORACLE_LINUX Valid properties: PRODUCT, CLASSIFICATION, SEVERITY REDHAT_ENTERPRISE_LINUX Valid properties: PRODUCT, CLASSIFICATION, SEVERITY SUSE Valid properties: PRODUCT, CLASSIFICATION, SEVERITY UBUNTU Valid properties: PRODUCT, PRIORITY WINDOWS Valid properties: PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY
|
|
449
465
|
*/
|
|
450
466
|
describePatchProperties(params: SSM.Types.DescribePatchPropertiesRequest, callback?: (err: AWSError, data: SSM.Types.DescribePatchPropertiesResult) => void): Request<SSM.Types.DescribePatchPropertiesResult, AWSError>;
|
|
451
467
|
/**
|
|
452
|
-
* Lists the properties of available patches organized by product, product family, classification, severity, and other properties of available patches. You can use the reported properties in the filters you specify in requests for actions such as CreatePatchBaseline, UpdatePatchBaseline, DescribeAvailablePatches, and DescribePatchBaselines. The following section lists the properties that can be used in filters for each major operating system type: AMAZON_LINUX Valid properties: PRODUCT, CLASSIFICATION, SEVERITY AMAZON_LINUX_2 Valid properties: PRODUCT, CLASSIFICATION, SEVERITY CENTOS Valid properties: PRODUCT, CLASSIFICATION, SEVERITY DEBIAN Valid properties: PRODUCT, PRIORITY ORACLE_LINUX Valid properties: PRODUCT, CLASSIFICATION, SEVERITY REDHAT_ENTERPRISE_LINUX Valid properties: PRODUCT, CLASSIFICATION, SEVERITY SUSE Valid properties: PRODUCT, CLASSIFICATION, SEVERITY UBUNTU Valid properties: PRODUCT, PRIORITY WINDOWS Valid properties: PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY
|
|
468
|
+
* Lists the properties of available patches organized by product, product family, classification, severity, and other properties of available patches. You can use the reported properties in the filters you specify in requests for actions such as CreatePatchBaseline, UpdatePatchBaseline, DescribeAvailablePatches, and DescribePatchBaselines. The following section lists the properties that can be used in filters for each major operating system type: AMAZON_LINUX Valid properties: PRODUCT, CLASSIFICATION, SEVERITY AMAZON_LINUX_2 Valid properties: PRODUCT, CLASSIFICATION, SEVERITY CENTOS Valid properties: PRODUCT, CLASSIFICATION, SEVERITY DEBIAN Valid properties: PRODUCT, PRIORITY MACOS Valid properties: PRODUCT, CLASSIFICATION ORACLE_LINUX Valid properties: PRODUCT, CLASSIFICATION, SEVERITY REDHAT_ENTERPRISE_LINUX Valid properties: PRODUCT, CLASSIFICATION, SEVERITY SUSE Valid properties: PRODUCT, CLASSIFICATION, SEVERITY UBUNTU Valid properties: PRODUCT, PRIORITY WINDOWS Valid properties: PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY
|
|
453
469
|
*/
|
|
454
470
|
describePatchProperties(callback?: (err: AWSError, data: SSM.Types.DescribePatchPropertiesResult) => void): Request<SSM.Types.DescribePatchPropertiesResult, AWSError>;
|
|
455
471
|
/**
|
|
@@ -580,6 +596,14 @@ declare class SSM extends Service {
|
|
|
580
596
|
* Get information about an OpsItem by using the ID. You must have permission in AWS Identity and Access Management (IAM) to view information about an OpsItem. For more information, see Getting started with OpsCenter in the AWS Systems Manager User Guide. Operations engineers and IT professionals use OpsCenter to view, investigate, and remediate operational issues impacting the performance and health of their AWS resources. For more information, see AWS Systems Manager OpsCenter in the AWS Systems Manager User Guide.
|
|
581
597
|
*/
|
|
582
598
|
getOpsItem(callback?: (err: AWSError, data: SSM.Types.GetOpsItemResponse) => void): Request<SSM.Types.GetOpsItemResponse, AWSError>;
|
|
599
|
+
/**
|
|
600
|
+
* View operational metadata related to an application in AppManager.
|
|
601
|
+
*/
|
|
602
|
+
getOpsMetadata(params: SSM.Types.GetOpsMetadataRequest, callback?: (err: AWSError, data: SSM.Types.GetOpsMetadataResult) => void): Request<SSM.Types.GetOpsMetadataResult, AWSError>;
|
|
603
|
+
/**
|
|
604
|
+
* View operational metadata related to an application in AppManager.
|
|
605
|
+
*/
|
|
606
|
+
getOpsMetadata(callback?: (err: AWSError, data: SSM.Types.GetOpsMetadataResult) => void): Request<SSM.Types.GetOpsMetadataResult, AWSError>;
|
|
583
607
|
/**
|
|
584
608
|
* View a summary of OpsItems based on specified filters and aggregators.
|
|
585
609
|
*/
|
|
@@ -724,6 +748,14 @@ declare class SSM extends Service {
|
|
|
724
748
|
* A list of inventory items returned by the request.
|
|
725
749
|
*/
|
|
726
750
|
listInventoryEntries(callback?: (err: AWSError, data: SSM.Types.ListInventoryEntriesResult) => void): Request<SSM.Types.ListInventoryEntriesResult, AWSError>;
|
|
751
|
+
/**
|
|
752
|
+
* Systems Manager calls this API action when displaying all AppManager OpsMetadata objects or blobs.
|
|
753
|
+
*/
|
|
754
|
+
listOpsMetadata(params: SSM.Types.ListOpsMetadataRequest, callback?: (err: AWSError, data: SSM.Types.ListOpsMetadataResult) => void): Request<SSM.Types.ListOpsMetadataResult, AWSError>;
|
|
755
|
+
/**
|
|
756
|
+
* Systems Manager calls this API action when displaying all AppManager OpsMetadata objects or blobs.
|
|
757
|
+
*/
|
|
758
|
+
listOpsMetadata(callback?: (err: AWSError, data: SSM.Types.ListOpsMetadataResult) => void): Request<SSM.Types.ListOpsMetadataResult, AWSError>;
|
|
727
759
|
/**
|
|
728
760
|
* Returns a resource-level summary count. The summary includes information about compliant and non-compliant statuses and detailed compliance-item severity counts, according to the filter criteria you specify.
|
|
729
761
|
*/
|
|
@@ -964,6 +996,14 @@ declare class SSM extends Service {
|
|
|
964
996
|
* Edit or change an OpsItem. You must have permission in AWS Identity and Access Management (IAM) to update an OpsItem. For more information, see Getting started with OpsCenter in the AWS Systems Manager User Guide. Operations engineers and IT professionals use OpsCenter to view, investigate, and remediate operational issues impacting the performance and health of their AWS resources. For more information, see AWS Systems Manager OpsCenter in the AWS Systems Manager User Guide.
|
|
965
997
|
*/
|
|
966
998
|
updateOpsItem(callback?: (err: AWSError, data: SSM.Types.UpdateOpsItemResponse) => void): Request<SSM.Types.UpdateOpsItemResponse, AWSError>;
|
|
999
|
+
/**
|
|
1000
|
+
* Systems Manager calls this API action when you edit OpsMetadata in AppManager.
|
|
1001
|
+
*/
|
|
1002
|
+
updateOpsMetadata(params: SSM.Types.UpdateOpsMetadataRequest, callback?: (err: AWSError, data: SSM.Types.UpdateOpsMetadataResult) => void): Request<SSM.Types.UpdateOpsMetadataResult, AWSError>;
|
|
1003
|
+
/**
|
|
1004
|
+
* Systems Manager calls this API action when you edit OpsMetadata in AppManager.
|
|
1005
|
+
*/
|
|
1006
|
+
updateOpsMetadata(callback?: (err: AWSError, data: SSM.Types.UpdateOpsMetadataResult) => void): Request<SSM.Types.UpdateOpsMetadataResult, AWSError>;
|
|
967
1007
|
/**
|
|
968
1008
|
* Modifies an existing patch baseline. Fields not specified in the request are left unchanged. For information about valid key and value pairs in PatchFilters for each supported operating system type, see PatchFilter.
|
|
969
1009
|
*/
|
|
@@ -1209,7 +1249,7 @@ declare namespace SSM {
|
|
|
1209
1249
|
*/
|
|
1210
1250
|
SyncCompliance?: AssociationSyncCompliance;
|
|
1211
1251
|
/**
|
|
1212
|
-
* By default, when you create a new associations, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it.
|
|
1252
|
+
* By default, when you create a new associations, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it. This parameter is not supported for rate expressions.
|
|
1213
1253
|
*/
|
|
1214
1254
|
ApplyOnlyAtCronInterval?: ApplyOnlyAtCronInterval;
|
|
1215
1255
|
}
|
|
@@ -1433,7 +1473,7 @@ declare namespace SSM {
|
|
|
1433
1473
|
*/
|
|
1434
1474
|
SyncCompliance?: AssociationSyncCompliance;
|
|
1435
1475
|
/**
|
|
1436
|
-
* By default, when you create a new associations, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it.
|
|
1476
|
+
* By default, when you create a new associations, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it. This parameter is not supported for rate expressions.
|
|
1437
1477
|
*/
|
|
1438
1478
|
ApplyOnlyAtCronInterval?: ApplyOnlyAtCronInterval;
|
|
1439
1479
|
}
|
|
@@ -2225,7 +2265,7 @@ declare namespace SSM {
|
|
|
2225
2265
|
*/
|
|
2226
2266
|
SyncCompliance?: AssociationSyncCompliance;
|
|
2227
2267
|
/**
|
|
2228
|
-
* By default, when you create a new associations, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it.
|
|
2268
|
+
* By default, when you create a new associations, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it. This parameter is not supported for rate expressions.
|
|
2229
2269
|
*/
|
|
2230
2270
|
ApplyOnlyAtCronInterval?: ApplyOnlyAtCronInterval;
|
|
2231
2271
|
}
|
|
@@ -2293,7 +2333,7 @@ declare namespace SSM {
|
|
|
2293
2333
|
*/
|
|
2294
2334
|
SyncCompliance?: AssociationSyncCompliance;
|
|
2295
2335
|
/**
|
|
2296
|
-
* By default, when you create a new associations, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it.
|
|
2336
|
+
* By default, when you create a new associations, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it. This parameter is not supported for rate expressions.
|
|
2297
2337
|
*/
|
|
2298
2338
|
ApplyOnlyAtCronInterval?: ApplyOnlyAtCronInterval;
|
|
2299
2339
|
}
|
|
@@ -2451,6 +2491,22 @@ declare namespace SSM {
|
|
|
2451
2491
|
*/
|
|
2452
2492
|
OpsItemId?: String;
|
|
2453
2493
|
}
|
|
2494
|
+
export interface CreateOpsMetadataRequest {
|
|
2495
|
+
/**
|
|
2496
|
+
* A resource ID for a new AppManager application.
|
|
2497
|
+
*/
|
|
2498
|
+
ResourceId: OpsMetadataResourceId;
|
|
2499
|
+
/**
|
|
2500
|
+
* Metadata for a new AppManager application.
|
|
2501
|
+
*/
|
|
2502
|
+
Metadata?: MetadataMap;
|
|
2503
|
+
}
|
|
2504
|
+
export interface CreateOpsMetadataResult {
|
|
2505
|
+
/**
|
|
2506
|
+
* The Amazon Resource Name (ARN) of the OpsMetadata Object or blob created by the call.
|
|
2507
|
+
*/
|
|
2508
|
+
OpsMetadataArn?: OpsMetadataArn;
|
|
2509
|
+
}
|
|
2454
2510
|
export interface CreatePatchBaselineRequest {
|
|
2455
2511
|
/**
|
|
2456
2512
|
* Defines the operating system the patch baseline applies to. The Default value is WINDOWS.
|
|
@@ -2623,6 +2679,14 @@ declare namespace SSM {
|
|
|
2623
2679
|
*/
|
|
2624
2680
|
WindowId?: MaintenanceWindowId;
|
|
2625
2681
|
}
|
|
2682
|
+
export interface DeleteOpsMetadataRequest {
|
|
2683
|
+
/**
|
|
2684
|
+
* The Amazon Resource Name (ARN) of an OpsMetadata Object to delete.
|
|
2685
|
+
*/
|
|
2686
|
+
OpsMetadataArn: OpsMetadataArn;
|
|
2687
|
+
}
|
|
2688
|
+
export interface DeleteOpsMetadataResult {
|
|
2689
|
+
}
|
|
2626
2690
|
export interface DeleteParameterRequest {
|
|
2627
2691
|
/**
|
|
2628
2692
|
* The name of the parameter to delete.
|
|
@@ -3574,7 +3638,7 @@ declare namespace SSM {
|
|
|
3574
3638
|
*/
|
|
3575
3639
|
Property: PatchProperty;
|
|
3576
3640
|
/**
|
|
3577
|
-
* Indicates whether to list patches for the Windows operating system or for Microsoft applications. Not applicable for Linux operating systems.
|
|
3641
|
+
* Indicates whether to list patches for the Windows operating system or for Microsoft applications. Not applicable for the Linux or macOS operating systems.
|
|
3578
3642
|
*/
|
|
3579
3643
|
PatchSet?: PatchSet;
|
|
3580
3644
|
/**
|
|
@@ -4548,6 +4612,35 @@ declare namespace SSM {
|
|
|
4548
4612
|
*/
|
|
4549
4613
|
OpsItem?: OpsItem;
|
|
4550
4614
|
}
|
|
4615
|
+
export type GetOpsMetadataMaxResults = number;
|
|
4616
|
+
export interface GetOpsMetadataRequest {
|
|
4617
|
+
/**
|
|
4618
|
+
* The Amazon Resource Name (ARN) of an OpsMetadata Object to view.
|
|
4619
|
+
*/
|
|
4620
|
+
OpsMetadataArn: OpsMetadataArn;
|
|
4621
|
+
/**
|
|
4622
|
+
* The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
|
|
4623
|
+
*/
|
|
4624
|
+
MaxResults?: GetOpsMetadataMaxResults;
|
|
4625
|
+
/**
|
|
4626
|
+
* A token to start the list. Use this token to get the next set of results.
|
|
4627
|
+
*/
|
|
4628
|
+
NextToken?: NextToken;
|
|
4629
|
+
}
|
|
4630
|
+
export interface GetOpsMetadataResult {
|
|
4631
|
+
/**
|
|
4632
|
+
* The resource ID of the AppManager application.
|
|
4633
|
+
*/
|
|
4634
|
+
ResourceId?: OpsMetadataResourceId;
|
|
4635
|
+
/**
|
|
4636
|
+
* OpsMetadata for an AppManager application.
|
|
4637
|
+
*/
|
|
4638
|
+
Metadata?: MetadataMap;
|
|
4639
|
+
/**
|
|
4640
|
+
* The token for the next set of items to return. Use this token to get the next set of results.
|
|
4641
|
+
*/
|
|
4642
|
+
NextToken?: NextToken;
|
|
4643
|
+
}
|
|
4551
4644
|
export interface GetOpsSummaryRequest {
|
|
4552
4645
|
/**
|
|
4553
4646
|
* Specify the name of a resource data sync to get.
|
|
@@ -5617,6 +5710,31 @@ declare namespace SSM {
|
|
|
5617
5710
|
*/
|
|
5618
5711
|
NextToken?: NextToken;
|
|
5619
5712
|
}
|
|
5713
|
+
export type ListOpsMetadataMaxResults = number;
|
|
5714
|
+
export interface ListOpsMetadataRequest {
|
|
5715
|
+
/**
|
|
5716
|
+
* One or more filters to limit the number of OpsMetadata objects returned by the call.
|
|
5717
|
+
*/
|
|
5718
|
+
Filters?: OpsMetadataFilterList;
|
|
5719
|
+
/**
|
|
5720
|
+
* The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
|
|
5721
|
+
*/
|
|
5722
|
+
MaxResults?: ListOpsMetadataMaxResults;
|
|
5723
|
+
/**
|
|
5724
|
+
* A token to start the list. Use this token to get the next set of results.
|
|
5725
|
+
*/
|
|
5726
|
+
NextToken?: NextToken;
|
|
5727
|
+
}
|
|
5728
|
+
export interface ListOpsMetadataResult {
|
|
5729
|
+
/**
|
|
5730
|
+
* Returns a list of OpsMetadata objects.
|
|
5731
|
+
*/
|
|
5732
|
+
OpsMetadataList?: OpsMetadataList;
|
|
5733
|
+
/**
|
|
5734
|
+
* The token for the next set of items to return. Use this token to get the next set of results.
|
|
5735
|
+
*/
|
|
5736
|
+
NextToken?: NextToken;
|
|
5737
|
+
}
|
|
5620
5738
|
export interface ListResourceComplianceSummariesRequest {
|
|
5621
5739
|
/**
|
|
5622
5740
|
* One or more filters. Use a filter to return a more specific list of results.
|
|
@@ -6115,6 +6233,16 @@ declare namespace SSM {
|
|
|
6115
6233
|
export type MaxErrors = string;
|
|
6116
6234
|
export type MaxResults = number;
|
|
6117
6235
|
export type MaxResultsEC2Compatible = number;
|
|
6236
|
+
export type MetadataKey = string;
|
|
6237
|
+
export type MetadataKeysToDeleteList = MetadataKey[];
|
|
6238
|
+
export type MetadataMap = {[key: string]: MetadataValue};
|
|
6239
|
+
export interface MetadataValue {
|
|
6240
|
+
/**
|
|
6241
|
+
* Metadata value to assign to an AppManager application.
|
|
6242
|
+
*/
|
|
6243
|
+
Value?: MetadataValueString;
|
|
6244
|
+
}
|
|
6245
|
+
export type MetadataValueString = string;
|
|
6118
6246
|
export interface ModifyDocumentPermissionRequest {
|
|
6119
6247
|
/**
|
|
6120
6248
|
* The name of the document that you want to share.
|
|
@@ -6169,7 +6297,7 @@ declare namespace SSM {
|
|
|
6169
6297
|
export type NotificationEvent = "All"|"InProgress"|"Success"|"TimedOut"|"Cancelled"|"Failed"|string;
|
|
6170
6298
|
export type NotificationEventList = NotificationEvent[];
|
|
6171
6299
|
export type NotificationType = "Command"|"Invocation"|string;
|
|
6172
|
-
export type OperatingSystem = "WINDOWS"|"AMAZON_LINUX"|"AMAZON_LINUX_2"|"UBUNTU"|"REDHAT_ENTERPRISE_LINUX"|"SUSE"|"CENTOS"|"ORACLE_LINUX"|"DEBIAN"|string;
|
|
6300
|
+
export type OperatingSystem = "WINDOWS"|"AMAZON_LINUX"|"AMAZON_LINUX_2"|"UBUNTU"|"REDHAT_ENTERPRISE_LINUX"|"SUSE"|"CENTOS"|"ORACLE_LINUX"|"DEBIAN"|"MACOS"|string;
|
|
6173
6301
|
export interface OpsAggregator {
|
|
6174
6302
|
/**
|
|
6175
6303
|
* Either a Range or Count aggregator for limiting an OpsItem summary.
|
|
@@ -6416,6 +6544,45 @@ declare namespace SSM {
|
|
|
6416
6544
|
Severity?: OpsItemSeverity;
|
|
6417
6545
|
}
|
|
6418
6546
|
export type OpsItemTitle = string;
|
|
6547
|
+
export interface OpsMetadata {
|
|
6548
|
+
/**
|
|
6549
|
+
* The ID of the AppManager application.
|
|
6550
|
+
*/
|
|
6551
|
+
ResourceId?: OpsMetadataResourceId;
|
|
6552
|
+
/**
|
|
6553
|
+
* The Amazon Resource Name (ARN) of the OpsMetadata Object or blob.
|
|
6554
|
+
*/
|
|
6555
|
+
OpsMetadataArn?: OpsMetadataArn;
|
|
6556
|
+
/**
|
|
6557
|
+
* The date the OpsMetadata object was last updated.
|
|
6558
|
+
*/
|
|
6559
|
+
LastModifiedDate?: DateTime;
|
|
6560
|
+
/**
|
|
6561
|
+
* The user name who last updated the OpsMetadata object.
|
|
6562
|
+
*/
|
|
6563
|
+
LastModifiedUser?: String;
|
|
6564
|
+
/**
|
|
6565
|
+
* The date the OpsMetadata objects was created.
|
|
6566
|
+
*/
|
|
6567
|
+
CreationDate?: DateTime;
|
|
6568
|
+
}
|
|
6569
|
+
export type OpsMetadataArn = string;
|
|
6570
|
+
export interface OpsMetadataFilter {
|
|
6571
|
+
/**
|
|
6572
|
+
* A filter key.
|
|
6573
|
+
*/
|
|
6574
|
+
Key: OpsMetadataFilterKey;
|
|
6575
|
+
/**
|
|
6576
|
+
* A filter value.
|
|
6577
|
+
*/
|
|
6578
|
+
Values: OpsMetadataFilterValueList;
|
|
6579
|
+
}
|
|
6580
|
+
export type OpsMetadataFilterKey = string;
|
|
6581
|
+
export type OpsMetadataFilterList = OpsMetadataFilter[];
|
|
6582
|
+
export type OpsMetadataFilterValue = string;
|
|
6583
|
+
export type OpsMetadataFilterValueList = OpsMetadataFilterValue[];
|
|
6584
|
+
export type OpsMetadataList = OpsMetadata[];
|
|
6585
|
+
export type OpsMetadataResourceId = string;
|
|
6419
6586
|
export interface OpsResultAttribute {
|
|
6420
6587
|
/**
|
|
6421
6588
|
* Name of the data type. Valid value: AWS:OpsItem, AWS:EC2InstanceInformation, AWS:OpsItemTrendline, or AWS:ComplianceSummary.
|
|
@@ -6704,7 +6871,7 @@ declare namespace SSM {
|
|
|
6704
6871
|
*/
|
|
6705
6872
|
BugzillaIds?: PatchBugzillaIdList;
|
|
6706
6873
|
/**
|
|
6707
|
-
* The Common Vulnerabilities and Exposures (CVE) ID of the patch. For example, CVE-
|
|
6874
|
+
* The Common Vulnerabilities and Exposures (CVE) ID of the patch. For example, CVE-2011-3192. Applies to Linux-based instances only.
|
|
6708
6875
|
*/
|
|
6709
6876
|
CVEIds?: PatchCVEIdList;
|
|
6710
6877
|
/**
|
|
@@ -8095,7 +8262,7 @@ declare namespace SSM {
|
|
|
8095
8262
|
*/
|
|
8096
8263
|
SyncCompliance?: AssociationSyncCompliance;
|
|
8097
8264
|
/**
|
|
8098
|
-
* By default, when you update an association, the system runs it immediately after it is updated and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you update it. Also, if you specified this option when you created the association, you can reset it. To do so, specify the no-apply-only-at-cron-interval parameter when you update the association from the command line. This parameter forces the association to run immediately after updating it and according to the interval specified.
|
|
8265
|
+
* By default, when you update an association, the system runs it immediately after it is updated and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you update it. This parameter is not supported for rate expressions. Also, if you specified this option when you created the association, you can reset it. To do so, specify the no-apply-only-at-cron-interval parameter when you update the association from the command line. This parameter forces the association to run immediately after updating it and according to the interval specified.
|
|
8099
8266
|
*/
|
|
8100
8267
|
ApplyOnlyAtCronInterval?: ApplyOnlyAtCronInterval;
|
|
8101
8268
|
}
|
|
@@ -8509,6 +8676,26 @@ declare namespace SSM {
|
|
|
8509
8676
|
}
|
|
8510
8677
|
export interface UpdateOpsItemResponse {
|
|
8511
8678
|
}
|
|
8679
|
+
export interface UpdateOpsMetadataRequest {
|
|
8680
|
+
/**
|
|
8681
|
+
* The Amazon Resoure Name (ARN) of the OpsMetadata Object to update.
|
|
8682
|
+
*/
|
|
8683
|
+
OpsMetadataArn: OpsMetadataArn;
|
|
8684
|
+
/**
|
|
8685
|
+
* Metadata to add to an OpsMetadata object.
|
|
8686
|
+
*/
|
|
8687
|
+
MetadataToUpdate?: MetadataMap;
|
|
8688
|
+
/**
|
|
8689
|
+
* The metadata keys to delete from the OpsMetadata object.
|
|
8690
|
+
*/
|
|
8691
|
+
KeysToDelete?: MetadataKeysToDeleteList;
|
|
8692
|
+
}
|
|
8693
|
+
export interface UpdateOpsMetadataResult {
|
|
8694
|
+
/**
|
|
8695
|
+
* The Amazon Resource Name (ARN) of the OpsMetadata Object that was updated.
|
|
8696
|
+
*/
|
|
8697
|
+
OpsMetadataArn?: OpsMetadataArn;
|
|
8698
|
+
}
|
|
8512
8699
|
export interface UpdatePatchBaselineRequest {
|
|
8513
8700
|
/**
|
|
8514
8701
|
* The ID of the patch baseline to update.
|
package/clients/workspaces.d.ts
CHANGED
|
@@ -36,11 +36,11 @@ declare class WorkSpaces extends Service {
|
|
|
36
36
|
*/
|
|
37
37
|
authorizeIpRules(callback?: (err: AWSError, data: WorkSpaces.Types.AuthorizeIpRulesResult) => void): Request<WorkSpaces.Types.AuthorizeIpRulesResult, AWSError>;
|
|
38
38
|
/**
|
|
39
|
-
* Copies the specified image from the specified Region to the current Region. For more information about copying images, see Copy a Custom WorkSpaces Image. Before copying a shared image, be sure to verify that it has been shared from the correct AWS account. To determine if an image has been shared and to see the AWS account ID that owns an image, use the DescribeWorkSpaceImages and DescribeWorkspaceImagePermissions API operations.
|
|
39
|
+
* Copies the specified image from the specified Region to the current Region. For more information about copying images, see Copy a Custom WorkSpaces Image. In the China (Ningxia) Region, you can copy images only within the same Region. In the AWS GovCloud (US-West) Region, to copy images to and from other AWS Regions, contact AWS Support. Before copying a shared image, be sure to verify that it has been shared from the correct AWS account. To determine if an image has been shared and to see the AWS account ID that owns an image, use the DescribeWorkSpaceImages and DescribeWorkspaceImagePermissions API operations.
|
|
40
40
|
*/
|
|
41
41
|
copyWorkspaceImage(params: WorkSpaces.Types.CopyWorkspaceImageRequest, callback?: (err: AWSError, data: WorkSpaces.Types.CopyWorkspaceImageResult) => void): Request<WorkSpaces.Types.CopyWorkspaceImageResult, AWSError>;
|
|
42
42
|
/**
|
|
43
|
-
* Copies the specified image from the specified Region to the current Region. For more information about copying images, see Copy a Custom WorkSpaces Image. Before copying a shared image, be sure to verify that it has been shared from the correct AWS account. To determine if an image has been shared and to see the AWS account ID that owns an image, use the DescribeWorkSpaceImages and DescribeWorkspaceImagePermissions API operations.
|
|
43
|
+
* Copies the specified image from the specified Region to the current Region. For more information about copying images, see Copy a Custom WorkSpaces Image. In the China (Ningxia) Region, you can copy images only within the same Region. In the AWS GovCloud (US-West) Region, to copy images to and from other AWS Regions, contact AWS Support. Before copying a shared image, be sure to verify that it has been shared from the correct AWS account. To determine if an image has been shared and to see the AWS account ID that owns an image, use the DescribeWorkSpaceImages and DescribeWorkspaceImagePermissions API operations.
|
|
44
44
|
*/
|
|
45
45
|
copyWorkspaceImage(callback?: (err: AWSError, data: WorkSpaces.Types.CopyWorkspaceImageResult) => void): Request<WorkSpaces.Types.CopyWorkspaceImageResult, AWSError>;
|
|
46
46
|
/**
|
|
@@ -108,11 +108,11 @@ declare class WorkSpaces extends Service {
|
|
|
108
108
|
*/
|
|
109
109
|
deleteWorkspaceImage(callback?: (err: AWSError, data: WorkSpaces.Types.DeleteWorkspaceImageResult) => void): Request<WorkSpaces.Types.DeleteWorkspaceImageResult, AWSError>;
|
|
110
110
|
/**
|
|
111
|
-
* Deregisters the specified directory. This operation is asynchronous and returns before the WorkSpace directory is deregistered. If any WorkSpaces are registered to this directory, you must remove them before you can deregister the directory.
|
|
111
|
+
* Deregisters the specified directory. This operation is asynchronous and returns before the WorkSpace directory is deregistered. If any WorkSpaces are registered to this directory, you must remove them before you can deregister the directory. Simple AD and AD Connector are made available to you free of charge to use with WorkSpaces. If there are no WorkSpaces being used with your Simple AD or AD Connector directory for 30 consecutive days, this directory will be automatically deregistered for use with Amazon WorkSpaces, and you will be charged for this directory as per the AWS Directory Services pricing terms. To delete empty directories, see Delete the Directory for Your WorkSpaces. If you delete your Simple AD or AD Connector directory, you can always create a new one when you want to start using WorkSpaces again.
|
|
112
112
|
*/
|
|
113
113
|
deregisterWorkspaceDirectory(params: WorkSpaces.Types.DeregisterWorkspaceDirectoryRequest, callback?: (err: AWSError, data: WorkSpaces.Types.DeregisterWorkspaceDirectoryResult) => void): Request<WorkSpaces.Types.DeregisterWorkspaceDirectoryResult, AWSError>;
|
|
114
114
|
/**
|
|
115
|
-
* Deregisters the specified directory. This operation is asynchronous and returns before the WorkSpace directory is deregistered. If any WorkSpaces are registered to this directory, you must remove them before you can deregister the directory.
|
|
115
|
+
* Deregisters the specified directory. This operation is asynchronous and returns before the WorkSpace directory is deregistered. If any WorkSpaces are registered to this directory, you must remove them before you can deregister the directory. Simple AD and AD Connector are made available to you free of charge to use with WorkSpaces. If there are no WorkSpaces being used with your Simple AD or AD Connector directory for 30 consecutive days, this directory will be automatically deregistered for use with Amazon WorkSpaces, and you will be charged for this directory as per the AWS Directory Services pricing terms. To delete empty directories, see Delete the Directory for Your WorkSpaces. If you delete your Simple AD or AD Connector directory, you can always create a new one when you want to start using WorkSpaces again.
|
|
116
116
|
*/
|
|
117
117
|
deregisterWorkspaceDirectory(callback?: (err: AWSError, data: WorkSpaces.Types.DeregisterWorkspaceDirectoryResult) => void): Request<WorkSpaces.Types.DeregisterWorkspaceDirectoryResult, AWSError>;
|
|
118
118
|
/**
|
|
@@ -380,11 +380,11 @@ declare class WorkSpaces extends Service {
|
|
|
380
380
|
*/
|
|
381
381
|
stopWorkspaces(callback?: (err: AWSError, data: WorkSpaces.Types.StopWorkspacesResult) => void): Request<WorkSpaces.Types.StopWorkspacesResult, AWSError>;
|
|
382
382
|
/**
|
|
383
|
-
* Terminates the specified WorkSpaces. Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is destroyed. If you need to archive any user data, contact AWS Support before terminating the WorkSpace. You can terminate a WorkSpace that is in any state except SUSPENDED. This operation is asynchronous and returns before the WorkSpaces have been completely terminated. After a WorkSpace is terminated, the TERMINATED state is returned only briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely returned. To confirm that a WorkSpace is terminated, check for the WorkSpace ID by using DescribeWorkSpaces. If the WorkSpace ID isn't returned, then the WorkSpace has been successfully terminated.
|
|
383
|
+
* Terminates the specified WorkSpaces. Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is destroyed. If you need to archive any user data, contact AWS Support before terminating the WorkSpace. You can terminate a WorkSpace that is in any state except SUSPENDED. This operation is asynchronous and returns before the WorkSpaces have been completely terminated. After a WorkSpace is terminated, the TERMINATED state is returned only briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely returned. To confirm that a WorkSpace is terminated, check for the WorkSpace ID by using DescribeWorkSpaces. If the WorkSpace ID isn't returned, then the WorkSpace has been successfully terminated. Simple AD and AD Connector are made available to you free of charge to use with WorkSpaces. If there are no WorkSpaces being used with your Simple AD or AD Connector directory for 30 consecutive days, this directory will be automatically deregistered for use with Amazon WorkSpaces, and you will be charged for this directory as per the AWS Directory Services pricing terms. To delete empty directories, see Delete the Directory for Your WorkSpaces. If you delete your Simple AD or AD Connector directory, you can always create a new one when you want to start using WorkSpaces again.
|
|
384
384
|
*/
|
|
385
385
|
terminateWorkspaces(params: WorkSpaces.Types.TerminateWorkspacesRequest, callback?: (err: AWSError, data: WorkSpaces.Types.TerminateWorkspacesResult) => void): Request<WorkSpaces.Types.TerminateWorkspacesResult, AWSError>;
|
|
386
386
|
/**
|
|
387
|
-
* Terminates the specified WorkSpaces. Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is destroyed. If you need to archive any user data, contact AWS Support before terminating the WorkSpace. You can terminate a WorkSpace that is in any state except SUSPENDED. This operation is asynchronous and returns before the WorkSpaces have been completely terminated. After a WorkSpace is terminated, the TERMINATED state is returned only briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely returned. To confirm that a WorkSpace is terminated, check for the WorkSpace ID by using DescribeWorkSpaces. If the WorkSpace ID isn't returned, then the WorkSpace has been successfully terminated.
|
|
387
|
+
* Terminates the specified WorkSpaces. Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is destroyed. If you need to archive any user data, contact AWS Support before terminating the WorkSpace. You can terminate a WorkSpace that is in any state except SUSPENDED. This operation is asynchronous and returns before the WorkSpaces have been completely terminated. After a WorkSpace is terminated, the TERMINATED state is returned only briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely returned. To confirm that a WorkSpace is terminated, check for the WorkSpace ID by using DescribeWorkSpaces. If the WorkSpace ID isn't returned, then the WorkSpace has been successfully terminated. Simple AD and AD Connector are made available to you free of charge to use with WorkSpaces. If there are no WorkSpaces being used with your Simple AD or AD Connector directory for 30 consecutive days, this directory will be automatically deregistered for use with Amazon WorkSpaces, and you will be charged for this directory as per the AWS Directory Services pricing terms. To delete empty directories, see Delete the Directory for Your WorkSpaces. If you delete your Simple AD or AD Connector directory, you can always create a new one when you want to start using WorkSpaces again.
|
|
388
388
|
*/
|
|
389
389
|
terminateWorkspaces(callback?: (err: AWSError, data: WorkSpaces.Types.TerminateWorkspacesResult) => void): Request<WorkSpaces.Types.TerminateWorkspacesResult, AWSError>;
|
|
390
390
|
/**
|
|
@@ -404,11 +404,11 @@ declare class WorkSpaces extends Service {
|
|
|
404
404
|
*/
|
|
405
405
|
updateRulesOfIpGroup(callback?: (err: AWSError, data: WorkSpaces.Types.UpdateRulesOfIpGroupResult) => void): Request<WorkSpaces.Types.UpdateRulesOfIpGroupResult, AWSError>;
|
|
406
406
|
/**
|
|
407
|
-
* Shares or unshares an image with one account by specifying whether that account has permission to copy the image. If the copy image permission is granted, the image is shared with that account. If the copy image permission is revoked, the image is unshared with the account. For more information about sharing images, see Share or Unshare a Custom WorkSpaces Image. To delete an image that has been shared, you must unshare the image before you delete it. Sharing Bring Your Own License (BYOL) images across AWS accounts isn't supported at this time in the AWS GovCloud (US-West) Region. To share BYOL images across accounts in the AWS GovCloud (US-West) Region, contact AWS Support.
|
|
407
|
+
* Shares or unshares an image with one account in the same AWS Region by specifying whether that account has permission to copy the image. If the copy image permission is granted, the image is shared with that account. If the copy image permission is revoked, the image is unshared with the account. After an image has been shared, the recipient account can copy the image to other AWS Regions as needed. In the China (Ningxia) Region, you can copy images only within the same Region. In the AWS GovCloud (US-West) Region, to copy images to and from other AWS Regions, contact AWS Support. For more information about sharing images, see Share or Unshare a Custom WorkSpaces Image. To delete an image that has been shared, you must unshare the image before you delete it. Sharing Bring Your Own License (BYOL) images across AWS accounts isn't supported at this time in the AWS GovCloud (US-West) Region. To share BYOL images across accounts in the AWS GovCloud (US-West) Region, contact AWS Support.
|
|
408
408
|
*/
|
|
409
409
|
updateWorkspaceImagePermission(params: WorkSpaces.Types.UpdateWorkspaceImagePermissionRequest, callback?: (err: AWSError, data: WorkSpaces.Types.UpdateWorkspaceImagePermissionResult) => void): Request<WorkSpaces.Types.UpdateWorkspaceImagePermissionResult, AWSError>;
|
|
410
410
|
/**
|
|
411
|
-
* Shares or unshares an image with one account by specifying whether that account has permission to copy the image. If the copy image permission is granted, the image is shared with that account. If the copy image permission is revoked, the image is unshared with the account. For more information about sharing images, see Share or Unshare a Custom WorkSpaces Image. To delete an image that has been shared, you must unshare the image before you delete it. Sharing Bring Your Own License (BYOL) images across AWS accounts isn't supported at this time in the AWS GovCloud (US-West) Region. To share BYOL images across accounts in the AWS GovCloud (US-West) Region, contact AWS Support.
|
|
411
|
+
* Shares or unshares an image with one account in the same AWS Region by specifying whether that account has permission to copy the image. If the copy image permission is granted, the image is shared with that account. If the copy image permission is revoked, the image is unshared with the account. After an image has been shared, the recipient account can copy the image to other AWS Regions as needed. In the China (Ningxia) Region, you can copy images only within the same Region. In the AWS GovCloud (US-West) Region, to copy images to and from other AWS Regions, contact AWS Support. For more information about sharing images, see Share or Unshare a Custom WorkSpaces Image. To delete an image that has been shared, you must unshare the image before you delete it. Sharing Bring Your Own License (BYOL) images across AWS accounts isn't supported at this time in the AWS GovCloud (US-West) Region. To share BYOL images across accounts in the AWS GovCloud (US-West) Region, contact AWS Support.
|
|
412
412
|
*/
|
|
413
413
|
updateWorkspaceImagePermission(callback?: (err: AWSError, data: WorkSpaces.Types.UpdateWorkspaceImagePermissionResult) => void): Request<WorkSpaces.Types.UpdateWorkspaceImagePermissionResult, AWSError>;
|
|
414
414
|
}
|
|
@@ -1132,7 +1132,7 @@ declare namespace WorkSpaces {
|
|
|
1132
1132
|
*/
|
|
1133
1133
|
Ec2ImageId: Ec2ImageId;
|
|
1134
1134
|
/**
|
|
1135
|
-
* The ingestion process to be used when importing the image. For non-GPU-enabled bundles (bundles other than Graphics or GraphicsPro), specify BYOL_REGULAR.
|
|
1135
|
+
* The ingestion process to be used when importing the image, depending on which protocol you want to use for your BYOL Workspace image, either PCoIP or WorkSpaces Streaming Protocol (WSP). To use WSP, specify a value that ends in _WSP. To use PCoIP, specify a value that does not end in _WSP. For non-GPU-enabled bundles (bundles other than Graphics or GraphicsPro), specify BYOL_REGULAR or BYOL_REGULAR_WSP, depending on the protocol.
|
|
1136
1136
|
*/
|
|
1137
1137
|
IngestionProcess: WorkspaceImageIngestionProcess;
|
|
1138
1138
|
/**
|
|
@@ -1876,7 +1876,7 @@ declare namespace WorkSpaces {
|
|
|
1876
1876
|
export type WorkspaceImageErrorCode = string;
|
|
1877
1877
|
export type WorkspaceImageId = string;
|
|
1878
1878
|
export type WorkspaceImageIdList = WorkspaceImageId[];
|
|
1879
|
-
export type WorkspaceImageIngestionProcess = "BYOL_REGULAR"|"BYOL_GRAPHICS"|"BYOL_GRAPHICSPRO"|string;
|
|
1879
|
+
export type WorkspaceImageIngestionProcess = "BYOL_REGULAR"|"BYOL_GRAPHICS"|"BYOL_GRAPHICSPRO"|"BYOL_REGULAR_WSP"|string;
|
|
1880
1880
|
export type WorkspaceImageList = WorkspaceImage[];
|
|
1881
1881
|
export type WorkspaceImageName = string;
|
|
1882
1882
|
export type WorkspaceImageRequiredTenancy = "DEFAULT"|"DEDICATED"|string;
|