aws-sdk 2.1020.0 → 2.1024.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 +24 -1
- package/README.md +1 -1
- package/apis/chime-sdk-meetings-2021-07-15.examples.json +5 -0
- package/apis/chime-sdk-meetings-2021-07-15.min.json +474 -0
- package/apis/chime-sdk-meetings-2021-07-15.paginators.json +9 -0
- package/apis/connect-2017-08-08.min.json +230 -61
- package/apis/connect-2017-08-08.paginators.json +6 -0
- package/apis/datasync-2018-11-09.min.json +207 -56
- package/apis/ec2-2016-11-15.min.json +513 -499
- package/apis/finspace-2021-03-12.min.json +24 -4
- package/apis/iotwireless-2020-11-22.min.json +993 -100
- package/apis/iotwireless-2020-11-22.paginators.json +15 -0
- package/apis/macie2-2020-01-01.min.json +104 -77
- package/apis/metadata.json +4 -0
- package/apis/sagemaker-2017-07-24.min.json +617 -537
- package/apis/translate-2017-07-01.min.json +4 -1
- package/apis/wafv2-2019-07-29.min.json +130 -79
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/chimesdkmeetings.d.ts +486 -0
- package/clients/chimesdkmeetings.js +18 -0
- package/clients/connect.d.ts +194 -21
- package/clients/connectparticipant.d.ts +1 -1
- package/clients/datasync.d.ts +241 -11
- package/clients/ec2.d.ts +23 -6
- package/clients/finspace.d.ts +26 -0
- package/clients/iotwireless.d.ts +577 -6
- package/clients/macie2.d.ts +36 -16
- package/clients/resourcegroupstaggingapi.d.ts +29 -29
- package/clients/sagemaker.d.ts +111 -16
- package/clients/translate.d.ts +13 -12
- package/clients/wafv2.d.ts +70 -10
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +52 -15
- package/dist/aws-sdk.js +760 -564
- package/dist/aws-sdk.min.js +71 -71
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/macie2.d.ts
CHANGED
|
@@ -28,11 +28,11 @@ declare class Macie2 extends Service {
|
|
|
28
28
|
*/
|
|
29
29
|
batchGetCustomDataIdentifiers(callback?: (err: AWSError, data: Macie2.Types.BatchGetCustomDataIdentifiersResponse) => void): Request<Macie2.Types.BatchGetCustomDataIdentifiersResponse, AWSError>;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Creates and defines the settings for a classification job.
|
|
32
32
|
*/
|
|
33
33
|
createClassificationJob(params: Macie2.Types.CreateClassificationJobRequest, callback?: (err: AWSError, data: Macie2.Types.CreateClassificationJobResponse) => void): Request<Macie2.Types.CreateClassificationJobResponse, AWSError>;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* Creates and defines the settings for a classification job.
|
|
36
36
|
*/
|
|
37
37
|
createClassificationJob(callback?: (err: AWSError, data: Macie2.Types.CreateClassificationJobResponse) => void): Request<Macie2.Types.CreateClassificationJobResponse, AWSError>;
|
|
38
38
|
/**
|
|
@@ -452,11 +452,11 @@ declare class Macie2 extends Service {
|
|
|
452
452
|
*/
|
|
453
453
|
updateMacieSession(callback?: (err: AWSError, data: Macie2.Types.UpdateMacieSessionResponse) => void): Request<Macie2.Types.UpdateMacieSessionResponse, AWSError>;
|
|
454
454
|
/**
|
|
455
|
-
* Enables an Amazon Macie administrator to suspend or re-enable a member account.
|
|
455
|
+
* Enables an Amazon Macie administrator to suspend or re-enable Macie for a member account.
|
|
456
456
|
*/
|
|
457
457
|
updateMemberSession(params: Macie2.Types.UpdateMemberSessionRequest, callback?: (err: AWSError, data: Macie2.Types.UpdateMemberSessionResponse) => void): Request<Macie2.Types.UpdateMemberSessionResponse, AWSError>;
|
|
458
458
|
/**
|
|
459
|
-
* Enables an Amazon Macie administrator to suspend or re-enable a member account.
|
|
459
|
+
* Enables an Amazon Macie administrator to suspend or re-enable Macie for a member account.
|
|
460
460
|
*/
|
|
461
461
|
updateMemberSession(callback?: (err: AWSError, data: Macie2.Types.UpdateMemberSessionResponse) => void): Request<Macie2.Types.UpdateMemberSessionResponse, AWSError>;
|
|
462
462
|
/**
|
|
@@ -972,11 +972,11 @@ declare namespace Macie2 {
|
|
|
972
972
|
}
|
|
973
973
|
export interface ClassificationResultStatus {
|
|
974
974
|
/**
|
|
975
|
-
* The status of the finding. Possible values are: COMPLETE - Amazon Macie successfully completed its analysis of the S3 object that the finding applies to. PARTIAL - Macie analyzed only a subset of the data in the S3 object that the finding applies to. For example, the object is an archive file that contains files in an unsupported format. SKIPPED - Macie wasn't able to analyze the S3 object that the finding applies to. For example, the object is a file
|
|
975
|
+
* The status of the finding. Possible values are: COMPLETE - Amazon Macie successfully completed its analysis of the S3 object that the finding applies to. PARTIAL - Macie analyzed only a subset of the data in the S3 object that the finding applies to. For example, the object is an archive file that contains files in an unsupported format. SKIPPED - Macie wasn't able to analyze the S3 object that the finding applies to. For example, the object is a file that uses an unsupported format.
|
|
976
976
|
*/
|
|
977
977
|
code?: __string;
|
|
978
978
|
/**
|
|
979
|
-
* A brief description of the status of the finding. Amazon Macie uses this value to notify you of any errors, warnings, or considerations that might impact your analysis of the finding.
|
|
979
|
+
* A brief description of the status of the finding. This value is null if the status (code) of the finding is COMPLETE. Amazon Macie uses this value to notify you of any errors, warnings, or considerations that might impact your analysis of the finding and the affected S3 object. Possible values are: ARCHIVE_CONTAINS_UNPROCESSED_FILES - The object is an archive file and Macie extracted and analyzed only some or none of the files in the archive. To determine which files Macie analyzed, if any, you can refer to the corresponding sensitive data discovery result for the finding (ClassificationDetails.detailedResultsLocation). ARCHIVE_EXCEEDS_SIZE_LIMIT - The object is an archive file whose total storage size exceeds the size quota for this type of archive. ARCHIVE_NESTING_LEVEL_OVER_LIMIT - The object is an archive file whose nested depth exceeds the quota for the maximum number of nested levels that Macie analyzes for this type of archive. ARCHIVE_TOTAL_BYTES_EXTRACTED_OVER_LIMIT - The object is an archive file that exceeds the quota for the maximum amount of data that Macie extracts and analyzes for this type of archive. ARCHIVE_TOTAL_DOCUMENTS_PROCESSED_OVER_LIMIT - The object is an archive file that contains more than the maximum number of files that Macie extracts and analyzes for this type of archive. FILE_EXCEEDS_SIZE_LIMIT - The storage size of the object exceeds the size quota for this type of file. INVALID_ENCRYPTION - The object is encrypted using server-side encryption but Macie isn’t allowed to use the key. Macie can’t decrypt and analyze the object. INVALID_KMS_KEY - The object is encrypted with an KMS key that was disabled or is being deleted. Macie can’t decrypt and analyze the object. INVALID_OBJECT_STATE - The object doesn’t use a supported Amazon S3 storage class. For more information, see Discovering sensitive data in the Amazon Macie User Guide. JSON_NESTING_LEVEL_OVER_LIMIT - The object contains JSON data and the nested depth of the data exceeds the quota for the number of nested levels that Macie analyzes for this type of file. MALFORMED_FILE - The object is a malformed or corrupted file. An error occurred when Macie attempted to detect the file’s type or extract data from the file. OBJECT_VERSION_MISMATCH - The object was changed while Macie was analyzing it. NO_SUCH_BUCKET_AVAILABLE - The object was in a bucket that was deleted shortly before or when Macie attempted to analyze the object. MALFORMED_OR_FILE_SIZE_EXCEEDS_LIMIT - The object is a Microsoft Office file that is malformed or exceeds the size quota for this type of file. If the file is malformed, an error occurred when Macie attempted to extract data from the file. OOXML_UNCOMPRESSED_SIZE_EXCEEDS_LIMIT - The object is an Office Open XML file that exceeds the size quota for this type of file. OOXML_UNCOMPRESSED_RATIO_EXCEEDS_LIMIT - The object is an Office Open XML file whose compression ratio exceeds the compression quota for this type of file. PERMISSION_DENIED - Macie isn’t allowed to access the object. The object’s permissions settings prevent Macie from analyzing the object. SOURCE_OBJECT_NO_LONGER_AVAILABLE - The object was deleted shortly before or when Macie attempted to analyze it. UNABLE_TO_PARSE_FILE - The object is a file that contains structured data and an error occurred when Macie attempted to parse the data. UNSUPPORTED_FILE_TYPE_EXCEPTION - The object is a file that uses an unsupported file or storage format. For more information, see Supported file and storage formats in the Amazon Macie User Guide. For information about sensitive data discovery quotas for files, see Amazon Macie quotas in the Amazon Macie User Guide.
|
|
980
980
|
*/
|
|
981
981
|
reason?: __string;
|
|
982
982
|
}
|
|
@@ -1050,7 +1050,7 @@ declare namespace Macie2 {
|
|
|
1050
1050
|
*/
|
|
1051
1051
|
description?: __string;
|
|
1052
1052
|
/**
|
|
1053
|
-
* An array that lists specific character sequences (ignore words) to exclude from the results. If the text matched by the regular expression
|
|
1053
|
+
* An array that lists specific character sequences (ignore words) to exclude from the results. If the text matched by the regular expression contains any string in this array, Amazon Macie ignores it. The array can contain as many as 10 ignore words. Each ignore word can contain 4-90 UTF-8 characters. Ignore words are case sensitive.
|
|
1054
1054
|
*/
|
|
1055
1055
|
ignoreWords?: __listOf__string;
|
|
1056
1056
|
/**
|
|
@@ -1058,7 +1058,7 @@ declare namespace Macie2 {
|
|
|
1058
1058
|
*/
|
|
1059
1059
|
keywords?: __listOf__string;
|
|
1060
1060
|
/**
|
|
1061
|
-
* The maximum number of characters that can exist between text that matches the
|
|
1061
|
+
* The maximum number of characters that can exist between text that matches the regular expression and the character sequences specified by the keywords array. Amazon Macie includes or excludes a result based on the proximity of a keyword to text that matches the regular expression. The distance can be 1-300 characters. The default value is 50.
|
|
1062
1062
|
*/
|
|
1063
1063
|
maximumMatchDistance?: __integer;
|
|
1064
1064
|
/**
|
|
@@ -1069,6 +1069,10 @@ declare namespace Macie2 {
|
|
|
1069
1069
|
* The regular expression (regex) that defines the pattern to match. The expression can contain as many as 512 characters.
|
|
1070
1070
|
*/
|
|
1071
1071
|
regex?: __string;
|
|
1072
|
+
/**
|
|
1073
|
+
* The severity to assign to findings that the custom data identifier produces, based on the number of occurrences of text that matches the custom data identifier's detection criteria. You can specify as many as three SeverityLevel objects in this array, one for each severity: LOW, MEDIUM, or HIGH. If you specify more than one, the occurrences thresholds must be in ascending order by severity, moving from LOW to HIGH. For example, 1 for LOW, 50 for MEDIUM, and 100 for HIGH. If an S3 object contains fewer occurrences than the lowest specified threshold, Amazon Macie doesn't create a finding. If you don't specify any values for this array, Macie creates findings for S3 objects that contain at least one occurrence of text that matches the detection criteria, and Macie assigns the MEDIUM severity to those findings.
|
|
1074
|
+
*/
|
|
1075
|
+
severityLevels?: SeverityLevelList;
|
|
1072
1076
|
/**
|
|
1073
1077
|
* A map of key-value pairs that specifies the tags to associate with the custom data identifier. A custom data identifier can have a maximum of 50 tags. Each tag consists of a tag key and an associated tag value. The maximum length of a tag key is 128 characters. The maximum length of a tag value is 256 characters.
|
|
1074
1078
|
*/
|
|
@@ -1158,7 +1162,7 @@ declare namespace Macie2 {
|
|
|
1158
1162
|
}
|
|
1159
1163
|
export interface CreateSampleFindingsRequest {
|
|
1160
1164
|
/**
|
|
1161
|
-
* An array
|
|
1165
|
+
* An array of finding types, one for each type of sample finding to create. To create a sample of every type of finding that Amazon Macie supports, don't include this array in your request.
|
|
1162
1166
|
*/
|
|
1163
1167
|
findingTypes?: __listOfFindingType;
|
|
1164
1168
|
}
|
|
@@ -1265,6 +1269,7 @@ declare namespace Macie2 {
|
|
|
1265
1269
|
export type CustomDetections = CustomDetection[];
|
|
1266
1270
|
export interface DailySchedule {
|
|
1267
1271
|
}
|
|
1272
|
+
export type DataIdentifierSeverity = "LOW"|"MEDIUM"|"HIGH"|string;
|
|
1268
1273
|
export type DayOfWeek = "SUNDAY"|"MONDAY"|"TUESDAY"|"WEDNESDAY"|"THURSDAY"|"FRIDAY"|"SATURDAY"|string;
|
|
1269
1274
|
export interface DeclineInvitationsRequest {
|
|
1270
1275
|
/**
|
|
@@ -1790,7 +1795,7 @@ declare namespace Macie2 {
|
|
|
1790
1795
|
*/
|
|
1791
1796
|
id?: __string;
|
|
1792
1797
|
/**
|
|
1793
|
-
* An array that lists specific character sequences (ignore words) to exclude from the results. If the text matched by the regular expression
|
|
1798
|
+
* An array that lists specific character sequences (ignore words) to exclude from the results. If the text matched by the regular expression contains any string in this array, Amazon Macie ignores it. Ignore words are case sensitive.
|
|
1794
1799
|
*/
|
|
1795
1800
|
ignoreWords?: __listOf__string;
|
|
1796
1801
|
/**
|
|
@@ -1798,7 +1803,7 @@ declare namespace Macie2 {
|
|
|
1798
1803
|
*/
|
|
1799
1804
|
keywords?: __listOf__string;
|
|
1800
1805
|
/**
|
|
1801
|
-
* The maximum number of characters that can exist between text that matches the
|
|
1806
|
+
* The maximum number of characters that can exist between text that matches the regular expression and the character sequences specified by the keywords array. Amazon Macie includes or excludes a result based on the proximity of a keyword to text that matches the regular expression.
|
|
1802
1807
|
*/
|
|
1803
1808
|
maximumMatchDistance?: __integer;
|
|
1804
1809
|
/**
|
|
@@ -1809,6 +1814,10 @@ declare namespace Macie2 {
|
|
|
1809
1814
|
* The regular expression (regex) that defines the pattern to match.
|
|
1810
1815
|
*/
|
|
1811
1816
|
regex?: __string;
|
|
1817
|
+
/**
|
|
1818
|
+
* Specifies the severity that's assigned to findings that the custom data identifier produces, based on the number of occurrences of text that matches the custom data identifier's detection criteria. By default, Amazon Macie creates findings for S3 objects that contain at least one occurrence of text that matches the detection criteria, and Macie assigns the MEDIUM severity to those findings.
|
|
1819
|
+
*/
|
|
1820
|
+
severityLevels?: SeverityLevelList;
|
|
1812
1821
|
/**
|
|
1813
1822
|
* A map of key-value pairs that identifies the tags (keys and values) that are associated with the custom data identifier.
|
|
1814
1823
|
*/
|
|
@@ -2488,7 +2497,7 @@ declare namespace Macie2 {
|
|
|
2488
2497
|
export type ManagedDataIdentifierSelector = "ALL"|"EXCLUDE"|"INCLUDE"|"NONE"|string;
|
|
2489
2498
|
export interface ManagedDataIdentifierSummary {
|
|
2490
2499
|
/**
|
|
2491
|
-
* The category of sensitive data that the managed data identifier detects: CREDENTIALS, for credentials data such as private keys or Amazon Web Services secret keys; FINANCIAL_INFORMATION, for financial data such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health insurance identification numbers, or personally identifiable information, such as passport numbers.
|
|
2500
|
+
* The category of sensitive data that the managed data identifier detects: CREDENTIALS, for credentials data such as private keys or Amazon Web Services secret access keys; FINANCIAL_INFORMATION, for financial data such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health insurance identification numbers, or personally identifiable information, such as passport numbers.
|
|
2492
2501
|
*/
|
|
2493
2502
|
category?: SensitiveDataItemCategory;
|
|
2494
2503
|
/**
|
|
@@ -3027,7 +3036,7 @@ declare namespace Macie2 {
|
|
|
3027
3036
|
export type SensitiveData = SensitiveDataItem[];
|
|
3028
3037
|
export interface SensitiveDataItem {
|
|
3029
3038
|
/**
|
|
3030
|
-
* The category of sensitive data that was detected. For example: CREDENTIALS, for credentials data such as private keys or Amazon Web Services secret keys; FINANCIAL_INFORMATION, for financial data such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health insurance identification numbers, or personally identifiable information, such as passport numbers.
|
|
3039
|
+
* The category of sensitive data that was detected. For example: CREDENTIALS, for credentials data such as private keys or Amazon Web Services secret access keys; FINANCIAL_INFORMATION, for financial data such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health insurance identification numbers, or personally identifiable information, such as passport numbers.
|
|
3031
3040
|
*/
|
|
3032
3041
|
category?: SensitiveDataItemCategory;
|
|
3033
3042
|
/**
|
|
@@ -3117,6 +3126,17 @@ declare namespace Macie2 {
|
|
|
3117
3126
|
score?: __long;
|
|
3118
3127
|
}
|
|
3119
3128
|
export type SeverityDescription = "Low"|"Medium"|"High"|string;
|
|
3129
|
+
export interface SeverityLevel {
|
|
3130
|
+
/**
|
|
3131
|
+
* The minimum number of occurrences of text that must match the custom data identifier's detection criteria in order to produce a finding with the specified severity (severity).
|
|
3132
|
+
*/
|
|
3133
|
+
occurrencesThreshold: __long;
|
|
3134
|
+
/**
|
|
3135
|
+
* The severity to assign to a finding if the number of occurrences is greater than or equal to the specified threshold (occurrencesThreshold) and, if applicable, is less than the threshold for the next consecutive severity level for the custom data identifier.
|
|
3136
|
+
*/
|
|
3137
|
+
severity: DataIdentifierSeverity;
|
|
3138
|
+
}
|
|
3139
|
+
export type SeverityLevelList = SeverityLevel[];
|
|
3120
3140
|
export type SharedAccess = "EXTERNAL"|"INTERNAL"|"NOT_SHARED"|"UNKNOWN"|string;
|
|
3121
3141
|
export interface SimpleCriterionForJob {
|
|
3122
3142
|
/**
|
|
@@ -3232,7 +3252,7 @@ declare namespace Macie2 {
|
|
|
3232
3252
|
}
|
|
3233
3253
|
export interface TestCustomDataIdentifierRequest {
|
|
3234
3254
|
/**
|
|
3235
|
-
* An array that lists specific character sequences (ignore words) to exclude from the results. If the text matched by the regular expression
|
|
3255
|
+
* An array that lists specific character sequences (ignore words) to exclude from the results. If the text matched by the regular expression contains any string in this array, Amazon Macie ignores it. The array can contain as many as 10 ignore words. Each ignore word can contain 4-90 UTF-8 characters. Ignore words are case sensitive.
|
|
3236
3256
|
*/
|
|
3237
3257
|
ignoreWords?: __listOf__string;
|
|
3238
3258
|
/**
|
|
@@ -3240,7 +3260,7 @@ declare namespace Macie2 {
|
|
|
3240
3260
|
*/
|
|
3241
3261
|
keywords?: __listOf__string;
|
|
3242
3262
|
/**
|
|
3243
|
-
* The maximum number of characters that can exist between text that matches the
|
|
3263
|
+
* The maximum number of characters that can exist between text that matches the regular expression and the character sequences specified by the keywords array. Amazon Macie includes or excludes a result based on the proximity of a keyword to text that matches the regular expression. The distance can be 1-300 characters. The default value is 50.
|
|
3244
3264
|
*/
|
|
3245
3265
|
maximumMatchDistance?: __integer;
|
|
3246
3266
|
/**
|
|
@@ -3254,7 +3274,7 @@ declare namespace Macie2 {
|
|
|
3254
3274
|
}
|
|
3255
3275
|
export interface TestCustomDataIdentifierResponse {
|
|
3256
3276
|
/**
|
|
3257
|
-
* The number of
|
|
3277
|
+
* The number of occurrences of sample text that matched the criteria specified by the custom data identifier.
|
|
3258
3278
|
*/
|
|
3259
3279
|
matchCount?: __integer;
|
|
3260
3280
|
}
|
|
@@ -20,35 +20,35 @@ declare class ResourceGroupsTaggingAPI extends Service {
|
|
|
20
20
|
*/
|
|
21
21
|
describeReportCreation(callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.DescribeReportCreationOutput) => void): Request<ResourceGroupsTaggingAPI.Types.DescribeReportCreationOutput, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Returns a table that shows counts of resources that are noncompliant with their tag policies. For more information on tag policies, see Tag Policies in the
|
|
23
|
+
* Returns a table that shows counts of resources that are noncompliant with their tag policies. For more information on tag policies, see Tag Policies in the Organizations User Guide. You can call this operation only from the organization's management account and from the us-east-1 Region. This operation supports pagination, where the response can be sent in multiple pages. You should check the PaginationToken response parameter to determine if there are additional results available to return. Repeat the query, passing the PaginationToken response parameter value as an input to the next request until you recieve a null value. A null value for PaginationToken indicates that there are no more results waiting to be returned.
|
|
24
24
|
*/
|
|
25
25
|
getComplianceSummary(params: ResourceGroupsTaggingAPI.Types.GetComplianceSummaryInput, callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.GetComplianceSummaryOutput) => void): Request<ResourceGroupsTaggingAPI.Types.GetComplianceSummaryOutput, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* Returns a table that shows counts of resources that are noncompliant with their tag policies. For more information on tag policies, see Tag Policies in the
|
|
27
|
+
* Returns a table that shows counts of resources that are noncompliant with their tag policies. For more information on tag policies, see Tag Policies in the Organizations User Guide. You can call this operation only from the organization's management account and from the us-east-1 Region. This operation supports pagination, where the response can be sent in multiple pages. You should check the PaginationToken response parameter to determine if there are additional results available to return. Repeat the query, passing the PaginationToken response parameter value as an input to the next request until you recieve a null value. A null value for PaginationToken indicates that there are no more results waiting to be returned.
|
|
28
28
|
*/
|
|
29
29
|
getComplianceSummary(callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.GetComplianceSummaryOutput) => void): Request<ResourceGroupsTaggingAPI.Types.GetComplianceSummaryOutput, AWSError>;
|
|
30
30
|
/**
|
|
31
|
-
* Returns all the tagged or previously tagged resources that are located in the specified Region for the
|
|
31
|
+
* Returns all the tagged or previously tagged resources that are located in the specified Amazon Web Services Region for the account. Depending on what information you want returned, you can also specify the following: Filters that specify what tags and resource types you want returned. The response includes all tags that are associated with the requested resources. Information about compliance with the account's effective tag policy. For more information on tag policies, see Tag Policies in the Organizations User Guide. This operation supports pagination, where the response can be sent in multiple pages. You should check the PaginationToken response parameter to determine if there are additional results available to return. Repeat the query, passing the PaginationToken response parameter value as an input to the next request until you recieve a null value. A null value for PaginationToken indicates that there are no more results waiting to be returned.
|
|
32
32
|
*/
|
|
33
33
|
getResources(params: ResourceGroupsTaggingAPI.Types.GetResourcesInput, callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.GetResourcesOutput) => void): Request<ResourceGroupsTaggingAPI.Types.GetResourcesOutput, AWSError>;
|
|
34
34
|
/**
|
|
35
|
-
* Returns all the tagged or previously tagged resources that are located in the specified Region for the
|
|
35
|
+
* Returns all the tagged or previously tagged resources that are located in the specified Amazon Web Services Region for the account. Depending on what information you want returned, you can also specify the following: Filters that specify what tags and resource types you want returned. The response includes all tags that are associated with the requested resources. Information about compliance with the account's effective tag policy. For more information on tag policies, see Tag Policies in the Organizations User Guide. This operation supports pagination, where the response can be sent in multiple pages. You should check the PaginationToken response parameter to determine if there are additional results available to return. Repeat the query, passing the PaginationToken response parameter value as an input to the next request until you recieve a null value. A null value for PaginationToken indicates that there are no more results waiting to be returned.
|
|
36
36
|
*/
|
|
37
37
|
getResources(callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.GetResourcesOutput) => void): Request<ResourceGroupsTaggingAPI.Types.GetResourcesOutput, AWSError>;
|
|
38
38
|
/**
|
|
39
|
-
* Returns all tag keys currently in use in the specified Region for the calling
|
|
39
|
+
* Returns all tag keys currently in use in the specified Amazon Web Services Region for the calling account. This operation supports pagination, where the response can be sent in multiple pages. You should check the PaginationToken response parameter to determine if there are additional results available to return. Repeat the query, passing the PaginationToken response parameter value as an input to the next request until you recieve a null value. A null value for PaginationToken indicates that there are no more results waiting to be returned.
|
|
40
40
|
*/
|
|
41
41
|
getTagKeys(params: ResourceGroupsTaggingAPI.Types.GetTagKeysInput, callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.GetTagKeysOutput) => void): Request<ResourceGroupsTaggingAPI.Types.GetTagKeysOutput, AWSError>;
|
|
42
42
|
/**
|
|
43
|
-
* Returns all tag keys currently in use in the specified Region for the calling
|
|
43
|
+
* Returns all tag keys currently in use in the specified Amazon Web Services Region for the calling account. This operation supports pagination, where the response can be sent in multiple pages. You should check the PaginationToken response parameter to determine if there are additional results available to return. Repeat the query, passing the PaginationToken response parameter value as an input to the next request until you recieve a null value. A null value for PaginationToken indicates that there are no more results waiting to be returned.
|
|
44
44
|
*/
|
|
45
45
|
getTagKeys(callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.GetTagKeysOutput) => void): Request<ResourceGroupsTaggingAPI.Types.GetTagKeysOutput, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* Returns all tag values for the specified key that are used in the specified
|
|
47
|
+
* Returns all tag values for the specified key that are used in the specified Amazon Web Services Region for the calling account. This operation supports pagination, where the response can be sent in multiple pages. You should check the PaginationToken response parameter to determine if there are additional results available to return. Repeat the query, passing the PaginationToken response parameter value as an input to the next request until you recieve a null value. A null value for PaginationToken indicates that there are no more results waiting to be returned.
|
|
48
48
|
*/
|
|
49
49
|
getTagValues(params: ResourceGroupsTaggingAPI.Types.GetTagValuesInput, callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.GetTagValuesOutput) => void): Request<ResourceGroupsTaggingAPI.Types.GetTagValuesOutput, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* Returns all tag values for the specified key that are used in the specified
|
|
51
|
+
* Returns all tag values for the specified key that are used in the specified Amazon Web Services Region for the calling account. This operation supports pagination, where the response can be sent in multiple pages. You should check the PaginationToken response parameter to determine if there are additional results available to return. Repeat the query, passing the PaginationToken response parameter value as an input to the next request until you recieve a null value. A null value for PaginationToken indicates that there are no more results waiting to be returned.
|
|
52
52
|
*/
|
|
53
53
|
getTagValues(callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.GetTagValuesOutput) => void): Request<ResourceGroupsTaggingAPI.Types.GetTagValuesOutput, AWSError>;
|
|
54
54
|
/**
|
|
@@ -60,19 +60,19 @@ declare class ResourceGroupsTaggingAPI extends Service {
|
|
|
60
60
|
*/
|
|
61
61
|
startReportCreation(callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.StartReportCreationOutput) => void): Request<ResourceGroupsTaggingAPI.Types.StartReportCreationOutput, AWSError>;
|
|
62
62
|
/**
|
|
63
|
-
* Applies one or more tags to the specified resources. Note the following: Not all resources can have tags. For a list of services with resources that support tagging using this operation, see Services that support the Resource Groups Tagging API. Each resource can have up to 50 tags. For other limits, see Tag Naming and Usage Conventions in the
|
|
63
|
+
* Applies one or more tags to the specified resources. Note the following: Not all resources can have tags. For a list of services with resources that support tagging using this operation, see Services that support the Resource Groups Tagging API. If the resource doesn't yet support this operation, the resource's service might support tagging using its own API operations. For more information, refer to the documentation for that service. Each resource can have up to 50 tags. For other limits, see Tag Naming and Usage Conventions in the Amazon Web Services General Reference. You can only tag resources that are located in the specified Amazon Web Services Region for the Amazon Web Services account. To add tags to a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for adding tags. For more information, see the documentation for each service. Do not store personally identifiable information (PII) or other confidential or sensitive information in tags. We use tags to provide you with billing and administration services. Tags are not intended to be used for private or sensitive data. Minimum permissions In addition to the tag:TagResources permission required by this operation, you must also have the tagging permission defined by the service that created the resource. For example, to tag an Amazon EC2 instance using the TagResources operation, you must have both of the following permissions: tag:TagResource ec2:CreateTags
|
|
64
64
|
*/
|
|
65
65
|
tagResources(params: ResourceGroupsTaggingAPI.Types.TagResourcesInput, callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.TagResourcesOutput) => void): Request<ResourceGroupsTaggingAPI.Types.TagResourcesOutput, AWSError>;
|
|
66
66
|
/**
|
|
67
|
-
* Applies one or more tags to the specified resources. Note the following: Not all resources can have tags. For a list of services with resources that support tagging using this operation, see Services that support the Resource Groups Tagging API. Each resource can have up to 50 tags. For other limits, see Tag Naming and Usage Conventions in the
|
|
67
|
+
* Applies one or more tags to the specified resources. Note the following: Not all resources can have tags. For a list of services with resources that support tagging using this operation, see Services that support the Resource Groups Tagging API. If the resource doesn't yet support this operation, the resource's service might support tagging using its own API operations. For more information, refer to the documentation for that service. Each resource can have up to 50 tags. For other limits, see Tag Naming and Usage Conventions in the Amazon Web Services General Reference. You can only tag resources that are located in the specified Amazon Web Services Region for the Amazon Web Services account. To add tags to a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for adding tags. For more information, see the documentation for each service. Do not store personally identifiable information (PII) or other confidential or sensitive information in tags. We use tags to provide you with billing and administration services. Tags are not intended to be used for private or sensitive data. Minimum permissions In addition to the tag:TagResources permission required by this operation, you must also have the tagging permission defined by the service that created the resource. For example, to tag an Amazon EC2 instance using the TagResources operation, you must have both of the following permissions: tag:TagResource ec2:CreateTags
|
|
68
68
|
*/
|
|
69
69
|
tagResources(callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.TagResourcesOutput) => void): Request<ResourceGroupsTaggingAPI.Types.TagResourcesOutput, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
* Removes the specified tags from the specified resources. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you attempt to remove tags from a resource that were already removed. Note the following: To remove tags from a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for removing tags. For more information, see the documentation for the service whose resource you want to untag. You can only tag resources that are located in the specified
|
|
71
|
+
* Removes the specified tags from the specified resources. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you attempt to remove tags from a resource that were already removed. Note the following: To remove tags from a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for removing tags. For more information, see the documentation for the service whose resource you want to untag. You can only tag resources that are located in the specified Amazon Web Services Region for the calling Amazon Web Services account. Minimum permissions In addition to the tag:UntagResources permission required by this operation, you must also have the remove tags permission defined by the service that created the resource. For example, to remove the tags from an Amazon EC2 instance using the UntagResources operation, you must have both of the following permissions: tag:UntagResource ec2:DeleteTags
|
|
72
72
|
*/
|
|
73
73
|
untagResources(params: ResourceGroupsTaggingAPI.Types.UntagResourcesInput, callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.UntagResourcesOutput) => void): Request<ResourceGroupsTaggingAPI.Types.UntagResourcesOutput, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
* Removes the specified tags from the specified resources. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you attempt to remove tags from a resource that were already removed. Note the following: To remove tags from a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for removing tags. For more information, see the documentation for the service whose resource you want to untag. You can only tag resources that are located in the specified
|
|
75
|
+
* Removes the specified tags from the specified resources. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you attempt to remove tags from a resource that were already removed. Note the following: To remove tags from a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for removing tags. For more information, see the documentation for the service whose resource you want to untag. You can only tag resources that are located in the specified Amazon Web Services Region for the calling Amazon Web Services account. Minimum permissions In addition to the tag:UntagResources permission required by this operation, you must also have the remove tags permission defined by the service that created the resource. For example, to remove the tags from an Amazon EC2 instance using the UntagResources operation, you must have both of the following permissions: tag:UntagResource ec2:DeleteTags
|
|
76
76
|
*/
|
|
77
77
|
untagResources(callback?: (err: AWSError, data: ResourceGroupsTaggingAPI.Types.UntagResourcesOutput) => void): Request<ResourceGroupsTaggingAPI.Types.UntagResourcesOutput, AWSError>;
|
|
78
78
|
}
|
|
@@ -119,7 +119,7 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
119
119
|
*/
|
|
120
120
|
StatusCode?: StatusCode;
|
|
121
121
|
/**
|
|
122
|
-
* The code of the common error. Valid values include InternalServiceException, InvalidParameterException, and any valid error code returned by the
|
|
122
|
+
* The code of the common error. Valid values include InternalServiceException, InvalidParameterException, and any valid error code returned by the Amazon Web Services service that hosts the resource that you want to tag.
|
|
123
123
|
*/
|
|
124
124
|
ErrorCode?: ErrorCode;
|
|
125
125
|
/**
|
|
@@ -133,11 +133,11 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
133
133
|
*/
|
|
134
134
|
TargetIdFilters?: TargetIdFilterList;
|
|
135
135
|
/**
|
|
136
|
-
* Specifies a list of
|
|
136
|
+
* Specifies a list of Amazon Web Services Regions to limit the output to. If you use this parameter, the count of returned noncompliant resources includes only resources in the specified Regions.
|
|
137
137
|
*/
|
|
138
138
|
RegionFilters?: RegionFilterList;
|
|
139
139
|
/**
|
|
140
|
-
* Specifies that you want the response to include information for only resources of the specified types. The format of each resource type is service[:resourceType]. For example, specifying a resource type of ec2 returns all Amazon EC2 resources (which includes EC2 instances). Specifying a resource type of ec2:instance returns only EC2 instances.
|
|
140
|
+
* Specifies that you want the response to include information for only resources of the specified types. The format of each resource type is service[:resourceType]. For example, specifying a resource type of ec2 returns all Amazon EC2 resources (which includes EC2 instances). Specifying a resource type of ec2:instance returns only EC2 instances. The string for each service name and resource type is the same as that embedded in a resource's Amazon Resource Name (ARN). Consult the Amazon Web Services General Reference for the following: For a list of service name strings, see Amazon Web Services Service Namespaces. For resource type strings, see Example ARNs. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces. You can specify multiple resource types by using a comma separated array. The array can include up to 100 items. Note that the length constraint requirement applies to each resource type filter.
|
|
141
141
|
*/
|
|
142
142
|
ResourceTypeFilters?: ResourceTypeFilterList;
|
|
143
143
|
/**
|
|
@@ -173,7 +173,7 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
173
173
|
*/
|
|
174
174
|
PaginationToken?: PaginationToken;
|
|
175
175
|
/**
|
|
176
|
-
* Specifies a list of TagFilters (keys and values) to restrict the output to only those resources that have the specified
|
|
176
|
+
* Specifies a list of TagFilters (keys and values) to restrict the output to only those resources that have tags with the specified keys and, if included, the specified values. Each TagFilter must contain a key with values optional. A request can include up to 50 keys, and each key can include up to 20 values. Note the following when deciding how to use TagFilters: If you don't specify a TagFilter, the response includes all resources that are currently tagged or ever had a tag. Resources that currently don't have tags are shown with an empty tag set, like this: "Tags": []. If you specify more than one filter in a single request, the response returns only those resources that satisfy all filters. If you specify a filter that contains more than one value for a key, the response returns resources that match any of the specified values for that key. If you don't specify a value for a key, the response returns all resources that are tagged with that key, with any or no value. For example, for the following filters: filter1= {keyA,{value1}}, filter2={keyB,{value2,value3,value4}}, filter3= {keyC}: GetResources({filter1}) returns resources tagged with key1=value1 GetResources({filter2}) returns resources tagged with key2=value2 or key2=value3 or key2=value4 GetResources({filter3}) returns resources tagged with any tag with the key key3, and with any or no value GetResources({filter1,filter2,filter3}) returns resources tagged with (key1=value1) and (key2=value2 or key2=value3 or key2=value4) and (key3, any or no value)
|
|
177
177
|
*/
|
|
178
178
|
TagFilters?: TagFilterList;
|
|
179
179
|
/**
|
|
@@ -181,11 +181,11 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
181
181
|
*/
|
|
182
182
|
ResourcesPerPage?: ResourcesPerPage;
|
|
183
183
|
/**
|
|
184
|
-
*
|
|
184
|
+
* Amazon Web Services recommends using ResourcesPerPage instead of this parameter. A limit that restricts the number of tags (key and value pairs) returned by GetResources in paginated output. A resource with no tags is counted as having one tag (one key and value pair). GetResources does not split a resource and its associated tags across pages. If the specified TagsPerPage would cause such a break, a PaginationToken is returned in place of the affected resource and its tags. Use that token in another request to get the remaining data. For example, if you specify a TagsPerPage of 100 and the account has 22 resources with 10 tags each (meaning that each resource has 10 key and value pairs), the output will consist of three pages. The first page displays the first 10 resources, each with its 10 tags. The second page displays the next 10 resources, each with its 10 tags. The third page displays the remaining 2 resources, each with its 10 tags. You can set TagsPerPage to a minimum of 100 items up to a maximum of 500 items.
|
|
185
185
|
*/
|
|
186
186
|
TagsPerPage?: TagsPerPage;
|
|
187
187
|
/**
|
|
188
|
-
* Specifies the resource types that you want included in the response. The format of each resource type is service[:resourceType]. For example, specifying a resource type of ec2 returns all Amazon EC2 resources (which includes EC2 instances). Specifying a resource type of ec2:instance returns only EC2 instances. The string for each service name and resource type is the same as that embedded in a resource's Amazon Resource Name (ARN).
|
|
188
|
+
* Specifies the resource types that you want included in the response. The format of each resource type is service[:resourceType]. For example, specifying a resource type of ec2 returns all Amazon EC2 resources (which includes EC2 instances). Specifying a resource type of ec2:instance returns only EC2 instances. The string for each service name and resource type is the same as that embedded in a resource's Amazon Resource Name (ARN). For the list of services whose resources you can use in this parameter, see Services that support the Resource Groups Tagging API. You can specify multiple resource types by using an array. The array can include up to 100 items. Note that the length constraint requirement applies to each resource type filter. For example, the following string would limit the response to only Amazon EC2 instances, Amazon S3 buckets, or any Audit Manager resource: ec2:instance,s3:bucket,auditmanager
|
|
189
189
|
*/
|
|
190
190
|
ResourceTypeFilters?: ResourceTypeFilterList;
|
|
191
191
|
/**
|
|
@@ -197,7 +197,7 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
197
197
|
*/
|
|
198
198
|
ExcludeCompliantResources?: ExcludeCompliantResources;
|
|
199
199
|
/**
|
|
200
|
-
* Specifies a list of ARNs of resources for which you want to retrieve tag data. You can't specify both this parameter and any of the pagination parameters (ResourcesPerPage, TagsPerPage, PaginationToken) in the same request. If you specify both, you get an Invalid Parameter exception. If a resource specified by this parameter doesn't exist, it doesn't generate an error; it simply isn't included in the response. An ARN (Amazon Resource Name) uniquely identifies a resource. For more information, see Amazon Resource Names (ARNs) and
|
|
200
|
+
* Specifies a list of ARNs of resources for which you want to retrieve tag data. You can't specify both this parameter and any of the pagination parameters (ResourcesPerPage, TagsPerPage, PaginationToken) in the same request. If you specify both, you get an Invalid Parameter exception. If a resource specified by this parameter doesn't exist, it doesn't generate an error; it simply isn't included in the response. An ARN (Amazon Resource Name) uniquely identifies a resource. For more information, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
|
|
201
201
|
*/
|
|
202
202
|
ResourceARNList?: ResourceARNListForGet;
|
|
203
203
|
}
|
|
@@ -207,7 +207,7 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
207
207
|
*/
|
|
208
208
|
PaginationToken?: PaginationToken;
|
|
209
209
|
/**
|
|
210
|
-
* A list of resource ARNs and the tags (keys and values) associated with
|
|
210
|
+
* A list of resource ARNs and the tags (keys and values) associated with each.
|
|
211
211
|
*/
|
|
212
212
|
ResourceTagMappingList?: ResourceTagMappingList;
|
|
213
213
|
}
|
|
@@ -223,7 +223,7 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
223
223
|
*/
|
|
224
224
|
PaginationToken?: PaginationToken;
|
|
225
225
|
/**
|
|
226
|
-
* A list of all tag keys in the
|
|
226
|
+
* A list of all tag keys in the Amazon Web Services account.
|
|
227
227
|
*/
|
|
228
228
|
TagKeys?: TagKeyList;
|
|
229
229
|
}
|
|
@@ -233,7 +233,7 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
233
233
|
*/
|
|
234
234
|
PaginationToken?: PaginationToken;
|
|
235
235
|
/**
|
|
236
|
-
* Specifies the tag key for which you want to list all existing values that are currently used in the specified
|
|
236
|
+
* Specifies the tag key for which you want to list all existing values that are currently used in the specified Amazon Web Services Region for the calling account.
|
|
237
237
|
*/
|
|
238
238
|
Key: TagKey;
|
|
239
239
|
}
|
|
@@ -243,7 +243,7 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
243
243
|
*/
|
|
244
244
|
PaginationToken?: PaginationToken;
|
|
245
245
|
/**
|
|
246
|
-
* A list of all tag values for the specified key currently used in the specified
|
|
246
|
+
* A list of all tag values for the specified key currently used in the specified Amazon Web Services Region for the calling account.
|
|
247
247
|
*/
|
|
248
248
|
TagValues?: TagValuesOutputList;
|
|
249
249
|
}
|
|
@@ -265,7 +265,7 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
265
265
|
*/
|
|
266
266
|
ResourceARN?: ResourceARN;
|
|
267
267
|
/**
|
|
268
|
-
* The tags that have been applied to one or more
|
|
268
|
+
* The tags that have been applied to one or more Amazon Web Services resources.
|
|
269
269
|
*/
|
|
270
270
|
Tags?: TagList;
|
|
271
271
|
/**
|
|
@@ -294,7 +294,7 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
294
294
|
*/
|
|
295
295
|
LastUpdated?: LastUpdated;
|
|
296
296
|
/**
|
|
297
|
-
* The account identifier or the root identifier of the organization. If you don't know the root ID, you can call the
|
|
297
|
+
* The account identifier or the root identifier of the organization. If you don't know the root ID, you can call the Organizations ListRoots API.
|
|
298
298
|
*/
|
|
299
299
|
TargetId?: TargetId;
|
|
300
300
|
/**
|
|
@@ -302,11 +302,11 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
302
302
|
*/
|
|
303
303
|
TargetIdType?: TargetIdType;
|
|
304
304
|
/**
|
|
305
|
-
* The
|
|
305
|
+
* The Amazon Web Services Region that the summary applies to.
|
|
306
306
|
*/
|
|
307
307
|
Region?: Region;
|
|
308
308
|
/**
|
|
309
|
-
* The
|
|
309
|
+
* The Amazon Web Services resource type.
|
|
310
310
|
*/
|
|
311
311
|
ResourceType?: AmazonResourceType;
|
|
312
312
|
/**
|
|
@@ -344,7 +344,7 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
344
344
|
export type TagMap = {[key: string]: TagValue};
|
|
345
345
|
export interface TagResourcesInput {
|
|
346
346
|
/**
|
|
347
|
-
* Specifies the list of ARNs of the resources that you want to apply tags to. An ARN (Amazon Resource Name) uniquely identifies a resource. For more information, see Amazon Resource Names (ARNs) and
|
|
347
|
+
* Specifies the list of ARNs of the resources that you want to apply tags to. An ARN (Amazon Resource Name) uniquely identifies a resource. For more information, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
|
|
348
348
|
*/
|
|
349
349
|
ResourceARNList: ResourceARNListForTagUntag;
|
|
350
350
|
/**
|
|
@@ -367,7 +367,7 @@ declare namespace ResourceGroupsTaggingAPI {
|
|
|
367
367
|
export type TargetIdType = "ACCOUNT"|"OU"|"ROOT"|string;
|
|
368
368
|
export interface UntagResourcesInput {
|
|
369
369
|
/**
|
|
370
|
-
* Specifies a list of ARNs of the resources that you want to remove tags from. An ARN (Amazon Resource Name) uniquely identifies a resource. For more information, see Amazon Resource Names (ARNs) and
|
|
370
|
+
* Specifies a list of ARNs of the resources that you want to remove tags from. An ARN (Amazon Resource Name) uniquely identifies a resource. For more information, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
|
|
371
371
|
*/
|
|
372
372
|
ResourceARNList: ResourceARNListForTagUntag;
|
|
373
373
|
/**
|