cdk-comprehend-s3olap 2.0.27 → 2.0.30
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/.jsii +16 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +12 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +50 -49
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +112 -111
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +318 -205
- package/node_modules/aws-sdk/apis/rds-2014-10-31.waiters2.json +85 -0
- package/node_modules/aws-sdk/apis/rolesanywhere-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/rolesanywhere-2018-05-10.min.json +819 -0
- package/node_modules/aws-sdk/apis/rolesanywhere-2018-05-10.paginators.json +24 -0
- package/node_modules/aws-sdk/apis/ssm-incidents-2018-05-10.min.json +20 -12
- package/node_modules/aws-sdk/apis/synthetics-2017-10-11.min.json +272 -39
- package/node_modules/aws-sdk/apis/synthetics-2017-10-11.paginators.json +15 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +5 -0
- package/node_modules/aws-sdk/clients/configservice.d.ts +12 -12
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +5 -0
- package/node_modules/aws-sdk/clients/quicksight.d.ts +182 -20
- package/node_modules/aws-sdk/clients/rds.d.ts +95 -79
- package/node_modules/aws-sdk/clients/rolesanywhere.d.ts +788 -0
- package/node_modules/aws-sdk/clients/rolesanywhere.js +18 -0
- package/node_modules/aws-sdk/clients/ssmincidents.d.ts +9 -0
- package/node_modules/aws-sdk/clients/synthetics.d.ts +270 -30
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +48 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +141 -52
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +37 -37
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
@@ -0,0 +1,18 @@
|
|
1
|
+
require('../lib/node_loader');
|
2
|
+
var AWS = require('../lib/core');
|
3
|
+
var Service = AWS.Service;
|
4
|
+
var apiLoader = AWS.apiLoader;
|
5
|
+
|
6
|
+
apiLoader.services['rolesanywhere'] = {};
|
7
|
+
AWS.RolesAnywhere = Service.defineService('rolesanywhere', ['2018-05-10']);
|
8
|
+
Object.defineProperty(apiLoader.services['rolesanywhere'], '2018-05-10', {
|
9
|
+
get: function get() {
|
10
|
+
var model = require('../apis/rolesanywhere-2018-05-10.min.json');
|
11
|
+
model.paginators = require('../apis/rolesanywhere-2018-05-10.paginators.json').pagination;
|
12
|
+
return model;
|
13
|
+
},
|
14
|
+
enumerable: true,
|
15
|
+
configurable: true
|
16
|
+
});
|
17
|
+
|
18
|
+
module.exports = AWS.RolesAnywhere;
|
@@ -734,6 +734,10 @@ declare namespace SSMIncidents {
|
|
734
734
|
* The impact of the incident on your customers and applications.
|
735
735
|
*/
|
736
736
|
impact: Impact;
|
737
|
+
/**
|
738
|
+
* Tags to apply to an incident when calling the StartIncident API action.
|
739
|
+
*/
|
740
|
+
incidentTags?: TagMap;
|
737
741
|
/**
|
738
742
|
* The Amazon SNS targets that are notified when updates are made to an incident.
|
739
743
|
*/
|
@@ -1135,6 +1139,7 @@ declare namespace SSMIncidents {
|
|
1135
1139
|
export type TagKey = string;
|
1136
1140
|
export type TagKeyList = TagKey[];
|
1137
1141
|
export type TagMap = {[key: string]: TagValue};
|
1142
|
+
export type TagMapUpdate = {[key: string]: TagValue};
|
1138
1143
|
export interface TagResourceRequest {
|
1139
1144
|
/**
|
1140
1145
|
* The Amazon Resource Name (ARN) of the response plan you're adding the tags to.
|
@@ -1344,6 +1349,10 @@ declare namespace SSMIncidents {
|
|
1344
1349
|
* A brief summary of the incident. This typically contains what has happened, what's currently happening, and next steps.
|
1345
1350
|
*/
|
1346
1351
|
incidentTemplateSummary?: IncidentSummary;
|
1352
|
+
/**
|
1353
|
+
* Tags to apply to an incident when calling the StartIncident API action. To call this action, you must also have permission to call the TagResource API action for the incident record resource.
|
1354
|
+
*/
|
1355
|
+
incidentTemplateTags?: TagMapUpdate;
|
1347
1356
|
/**
|
1348
1357
|
* The short format name of the incident. The title can't contain spaces.
|
1349
1358
|
*/
|
@@ -12,21 +12,45 @@ declare class Synthetics extends Service {
|
|
12
12
|
constructor(options?: Synthetics.Types.ClientConfiguration)
|
13
13
|
config: Config & Synthetics.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
*
|
15
|
+
* Associates a canary with a group. Using groups can help you with managing and automating your canaries, and you can also view aggregated run results and statistics for all canaries in a group. You must run this operation in the Region where the canary exists.
|
16
|
+
*/
|
17
|
+
associateResource(params: Synthetics.Types.AssociateResourceRequest, callback?: (err: AWSError, data: Synthetics.Types.AssociateResourceResponse) => void): Request<Synthetics.Types.AssociateResourceResponse, AWSError>;
|
18
|
+
/**
|
19
|
+
* Associates a canary with a group. Using groups can help you with managing and automating your canaries, and you can also view aggregated run results and statistics for all canaries in a group. You must run this operation in the Region where the canary exists.
|
20
|
+
*/
|
21
|
+
associateResource(callback?: (err: AWSError, data: Synthetics.Types.AssociateResourceResponse) => void): Request<Synthetics.Types.AssociateResourceResponse, AWSError>;
|
22
|
+
/**
|
23
|
+
* Creates a canary. Canaries are scripts that monitor your endpoints and APIs from the outside-in. Canaries help you check the availability and latency of your web services and troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and metrics. You can set up a canary to run continuously or just once. Do not use CreateCanary to modify an existing canary. Use UpdateCanary instead. To create canaries, you must have the CloudWatchSyntheticsFullAccess policy. If you are creating a new IAM role for the canary, you also need the iam:CreateRole, iam:CreatePolicy and iam:AttachRolePolicy permissions. For more information, see Necessary Roles and Permissions. Do not include secrets or proprietary information in your canary names. The canary name makes up part of the Amazon Resource Name (ARN) for the canary, and the ARN is included in outbound calls over the internet. For more information, see Security Considerations for Synthetics Canaries.
|
16
24
|
*/
|
17
25
|
createCanary(params: Synthetics.Types.CreateCanaryRequest, callback?: (err: AWSError, data: Synthetics.Types.CreateCanaryResponse) => void): Request<Synthetics.Types.CreateCanaryResponse, AWSError>;
|
18
26
|
/**
|
19
|
-
* Creates a canary. Canaries are scripts that monitor your endpoints and APIs from the outside-in. Canaries help you check the availability and latency of your web services and troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and metrics. You can set up a canary to run continuously or just once. Do not use CreateCanary to modify an existing canary. Use UpdateCanary instead. To create canaries, you must have the CloudWatchSyntheticsFullAccess policy. If you are creating a new IAM role for the canary, you also need the
|
27
|
+
* Creates a canary. Canaries are scripts that monitor your endpoints and APIs from the outside-in. Canaries help you check the availability and latency of your web services and troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and metrics. You can set up a canary to run continuously or just once. Do not use CreateCanary to modify an existing canary. Use UpdateCanary instead. To create canaries, you must have the CloudWatchSyntheticsFullAccess policy. If you are creating a new IAM role for the canary, you also need the iam:CreateRole, iam:CreatePolicy and iam:AttachRolePolicy permissions. For more information, see Necessary Roles and Permissions. Do not include secrets or proprietary information in your canary names. The canary name makes up part of the Amazon Resource Name (ARN) for the canary, and the ARN is included in outbound calls over the internet. For more information, see Security Considerations for Synthetics Canaries.
|
20
28
|
*/
|
21
29
|
createCanary(callback?: (err: AWSError, data: Synthetics.Types.CreateCanaryResponse) => void): Request<Synthetics.Types.CreateCanaryResponse, AWSError>;
|
22
30
|
/**
|
23
|
-
*
|
31
|
+
* Creates a group which you can use to associate canaries with each other, including cross-Region canaries. Using groups can help you with managing and automating your canaries, and you can also view aggregated run results and statistics for all canaries in a group. Groups are global resources. When you create a group, it is replicated across Amazon Web Services Regions, and you can view it and add canaries to it from any Region. Although the group ARN format reflects the Region name where it was created, a group is not constrained to any Region. This means that you can put canaries from multiple Regions into the same group, and then use that group to view and manage all of those canaries in a single view. Groups are supported in all Regions except the Regions that are disabled by default. For more information about these Regions, see Enabling a Region. Each group can contain as many as 10 canaries. You can have as many as 20 groups in your account. Any single canary can be a member of up to 10 groups.
|
32
|
+
*/
|
33
|
+
createGroup(params: Synthetics.Types.CreateGroupRequest, callback?: (err: AWSError, data: Synthetics.Types.CreateGroupResponse) => void): Request<Synthetics.Types.CreateGroupResponse, AWSError>;
|
34
|
+
/**
|
35
|
+
* Creates a group which you can use to associate canaries with each other, including cross-Region canaries. Using groups can help you with managing and automating your canaries, and you can also view aggregated run results and statistics for all canaries in a group. Groups are global resources. When you create a group, it is replicated across Amazon Web Services Regions, and you can view it and add canaries to it from any Region. Although the group ARN format reflects the Region name where it was created, a group is not constrained to any Region. This means that you can put canaries from multiple Regions into the same group, and then use that group to view and manage all of those canaries in a single view. Groups are supported in all Regions except the Regions that are disabled by default. For more information about these Regions, see Enabling a Region. Each group can contain as many as 10 canaries. You can have as many as 20 groups in your account. Any single canary can be a member of up to 10 groups.
|
36
|
+
*/
|
37
|
+
createGroup(callback?: (err: AWSError, data: Synthetics.Types.CreateGroupResponse) => void): Request<Synthetics.Types.CreateGroupResponse, AWSError>;
|
38
|
+
/**
|
39
|
+
* Permanently deletes the specified canary. If you specify DeleteLambda to true, CloudWatch Synthetics also deletes the Lambda functions and layers that are used by the canary. Other resources used and created by the canary are not automatically deleted. After you delete a canary that you do not intend to use again, you should also delete the following: The CloudWatch alarms created for this canary. These alarms have a name of Synthetics-SharpDrop-Alarm-MyCanaryName . Amazon S3 objects and buckets, such as the canary's artifact location. IAM roles created for the canary. If they were created in the console, these roles have the name role/service-role/CloudWatchSyntheticsRole-MyCanaryName . CloudWatch Logs log groups created for the canary. These logs groups have the name /aws/lambda/cwsyn-MyCanaryName . Before you delete a canary, you might want to use GetCanary to display the information about this canary. Make note of the information returned by this operation so that you can delete these resources after you delete the canary.
|
24
40
|
*/
|
25
41
|
deleteCanary(params: Synthetics.Types.DeleteCanaryRequest, callback?: (err: AWSError, data: Synthetics.Types.DeleteCanaryResponse) => void): Request<Synthetics.Types.DeleteCanaryResponse, AWSError>;
|
26
42
|
/**
|
27
|
-
* Permanently deletes the specified canary. If you specify DeleteLambda to true, CloudWatch Synthetics also deletes the Lambda functions and layers that are used by the canary. Other
|
43
|
+
* Permanently deletes the specified canary. If you specify DeleteLambda to true, CloudWatch Synthetics also deletes the Lambda functions and layers that are used by the canary. Other resources used and created by the canary are not automatically deleted. After you delete a canary that you do not intend to use again, you should also delete the following: The CloudWatch alarms created for this canary. These alarms have a name of Synthetics-SharpDrop-Alarm-MyCanaryName . Amazon S3 objects and buckets, such as the canary's artifact location. IAM roles created for the canary. If they were created in the console, these roles have the name role/service-role/CloudWatchSyntheticsRole-MyCanaryName . CloudWatch Logs log groups created for the canary. These logs groups have the name /aws/lambda/cwsyn-MyCanaryName . Before you delete a canary, you might want to use GetCanary to display the information about this canary. Make note of the information returned by this operation so that you can delete these resources after you delete the canary.
|
28
44
|
*/
|
29
45
|
deleteCanary(callback?: (err: AWSError, data: Synthetics.Types.DeleteCanaryResponse) => void): Request<Synthetics.Types.DeleteCanaryResponse, AWSError>;
|
46
|
+
/**
|
47
|
+
* Deletes a group. The group doesn't need to be empty to be deleted. If there are canaries in the group, they are not deleted when you delete the group. Groups are a global resource that appear in all Regions, but the request to delete a group must be made from its home Region. You can find the home Region of a group within its ARN.
|
48
|
+
*/
|
49
|
+
deleteGroup(params: Synthetics.Types.DeleteGroupRequest, callback?: (err: AWSError, data: Synthetics.Types.DeleteGroupResponse) => void): Request<Synthetics.Types.DeleteGroupResponse, AWSError>;
|
50
|
+
/**
|
51
|
+
* Deletes a group. The group doesn't need to be empty to be deleted. If there are canaries in the group, they are not deleted when you delete the group. Groups are a global resource that appear in all Regions, but the request to delete a group must be made from its home Region. You can find the home Region of a group within its ARN.
|
52
|
+
*/
|
53
|
+
deleteGroup(callback?: (err: AWSError, data: Synthetics.Types.DeleteGroupResponse) => void): Request<Synthetics.Types.DeleteGroupResponse, AWSError>;
|
30
54
|
/**
|
31
55
|
* This operation returns a list of the canaries in your account, along with full details about each canary. This operation supports resource-level authorization using an IAM policy and the Names parameter. If you specify the Names parameter, the operation is successful only if you have authorization to view all the canaries that you specify in your request. If you do not have permission to view any of the canaries, the request fails with a 403 response. You are required to use the Names parameter if you are logged on to a user or role that has an IAM policy that restricts which canaries that you are allowed to view. For more information, see Limiting a user to viewing specific canaries.
|
32
56
|
*/
|
@@ -51,6 +75,14 @@ declare class Synthetics extends Service {
|
|
51
75
|
* Returns a list of Synthetics canary runtime versions. For more information, see Canary Runtime Versions.
|
52
76
|
*/
|
53
77
|
describeRuntimeVersions(callback?: (err: AWSError, data: Synthetics.Types.DescribeRuntimeVersionsResponse) => void): Request<Synthetics.Types.DescribeRuntimeVersionsResponse, AWSError>;
|
78
|
+
/**
|
79
|
+
* Removes a canary from a group. You must run this operation in the Region where the canary exists.
|
80
|
+
*/
|
81
|
+
disassociateResource(params: Synthetics.Types.DisassociateResourceRequest, callback?: (err: AWSError, data: Synthetics.Types.DisassociateResourceResponse) => void): Request<Synthetics.Types.DisassociateResourceResponse, AWSError>;
|
82
|
+
/**
|
83
|
+
* Removes a canary from a group. You must run this operation in the Region where the canary exists.
|
84
|
+
*/
|
85
|
+
disassociateResource(callback?: (err: AWSError, data: Synthetics.Types.DisassociateResourceResponse) => void): Request<Synthetics.Types.DisassociateResourceResponse, AWSError>;
|
54
86
|
/**
|
55
87
|
* Retrieves complete information about one canary. You must specify the name of the canary that you want. To get a list of canaries and their names, use DescribeCanaries.
|
56
88
|
*/
|
@@ -68,11 +100,43 @@ declare class Synthetics extends Service {
|
|
68
100
|
*/
|
69
101
|
getCanaryRuns(callback?: (err: AWSError, data: Synthetics.Types.GetCanaryRunsResponse) => void): Request<Synthetics.Types.GetCanaryRunsResponse, AWSError>;
|
70
102
|
/**
|
71
|
-
*
|
103
|
+
* Returns information about one group. Groups are a global resource, so you can use this operation from any Region.
|
104
|
+
*/
|
105
|
+
getGroup(params: Synthetics.Types.GetGroupRequest, callback?: (err: AWSError, data: Synthetics.Types.GetGroupResponse) => void): Request<Synthetics.Types.GetGroupResponse, AWSError>;
|
106
|
+
/**
|
107
|
+
* Returns information about one group. Groups are a global resource, so you can use this operation from any Region.
|
108
|
+
*/
|
109
|
+
getGroup(callback?: (err: AWSError, data: Synthetics.Types.GetGroupResponse) => void): Request<Synthetics.Types.GetGroupResponse, AWSError>;
|
110
|
+
/**
|
111
|
+
* Returns a list of the groups that the specified canary is associated with. The canary that you specify must be in the current Region.
|
112
|
+
*/
|
113
|
+
listAssociatedGroups(params: Synthetics.Types.ListAssociatedGroupsRequest, callback?: (err: AWSError, data: Synthetics.Types.ListAssociatedGroupsResponse) => void): Request<Synthetics.Types.ListAssociatedGroupsResponse, AWSError>;
|
114
|
+
/**
|
115
|
+
* Returns a list of the groups that the specified canary is associated with. The canary that you specify must be in the current Region.
|
116
|
+
*/
|
117
|
+
listAssociatedGroups(callback?: (err: AWSError, data: Synthetics.Types.ListAssociatedGroupsResponse) => void): Request<Synthetics.Types.ListAssociatedGroupsResponse, AWSError>;
|
118
|
+
/**
|
119
|
+
* This operation returns a list of the ARNs of the canaries that are associated with the specified group.
|
120
|
+
*/
|
121
|
+
listGroupResources(params: Synthetics.Types.ListGroupResourcesRequest, callback?: (err: AWSError, data: Synthetics.Types.ListGroupResourcesResponse) => void): Request<Synthetics.Types.ListGroupResourcesResponse, AWSError>;
|
122
|
+
/**
|
123
|
+
* This operation returns a list of the ARNs of the canaries that are associated with the specified group.
|
124
|
+
*/
|
125
|
+
listGroupResources(callback?: (err: AWSError, data: Synthetics.Types.ListGroupResourcesResponse) => void): Request<Synthetics.Types.ListGroupResourcesResponse, AWSError>;
|
126
|
+
/**
|
127
|
+
* Returns a list of all groups in the account, displaying their names, unique IDs, and ARNs. The groups from all Regions are returned.
|
128
|
+
*/
|
129
|
+
listGroups(params: Synthetics.Types.ListGroupsRequest, callback?: (err: AWSError, data: Synthetics.Types.ListGroupsResponse) => void): Request<Synthetics.Types.ListGroupsResponse, AWSError>;
|
130
|
+
/**
|
131
|
+
* Returns a list of all groups in the account, displaying their names, unique IDs, and ARNs. The groups from all Regions are returned.
|
132
|
+
*/
|
133
|
+
listGroups(callback?: (err: AWSError, data: Synthetics.Types.ListGroupsResponse) => void): Request<Synthetics.Types.ListGroupsResponse, AWSError>;
|
134
|
+
/**
|
135
|
+
* Displays the tags associated with a canary or group.
|
72
136
|
*/
|
73
137
|
listTagsForResource(params: Synthetics.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: Synthetics.Types.ListTagsForResourceResponse) => void): Request<Synthetics.Types.ListTagsForResourceResponse, AWSError>;
|
74
138
|
/**
|
75
|
-
* Displays the tags associated with a canary.
|
139
|
+
* Displays the tags associated with a canary or group.
|
76
140
|
*/
|
77
141
|
listTagsForResource(callback?: (err: AWSError, data: Synthetics.Types.ListTagsForResourceResponse) => void): Request<Synthetics.Types.ListTagsForResourceResponse, AWSError>;
|
78
142
|
/**
|
@@ -84,35 +148,35 @@ declare class Synthetics extends Service {
|
|
84
148
|
*/
|
85
149
|
startCanary(callback?: (err: AWSError, data: Synthetics.Types.StartCanaryResponse) => void): Request<Synthetics.Types.StartCanaryResponse, AWSError>;
|
86
150
|
/**
|
87
|
-
* Stops the canary to prevent all future runs. If the canary is currently running,
|
151
|
+
* Stops the canary to prevent all future runs. If the canary is currently running,the run that is in progress completes on its own, publishes metrics, and uploads artifacts, but it is not recorded in Synthetics as a completed run. You can use StartCanary to start it running again with the canary’s current schedule at any point in the future.
|
88
152
|
*/
|
89
153
|
stopCanary(params: Synthetics.Types.StopCanaryRequest, callback?: (err: AWSError, data: Synthetics.Types.StopCanaryResponse) => void): Request<Synthetics.Types.StopCanaryResponse, AWSError>;
|
90
154
|
/**
|
91
|
-
* Stops the canary to prevent all future runs. If the canary is currently running,
|
155
|
+
* Stops the canary to prevent all future runs. If the canary is currently running,the run that is in progress completes on its own, publishes metrics, and uploads artifacts, but it is not recorded in Synthetics as a completed run. You can use StartCanary to start it running again with the canary’s current schedule at any point in the future.
|
92
156
|
*/
|
93
157
|
stopCanary(callback?: (err: AWSError, data: Synthetics.Types.StopCanaryResponse) => void): Request<Synthetics.Types.StopCanaryResponse, AWSError>;
|
94
158
|
/**
|
95
|
-
* Assigns one or more tags (key-value pairs) to the specified canary. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can use the TagResource action with a
|
159
|
+
* Assigns one or more tags (key-value pairs) to the specified canary or group. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can use the TagResource action with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a canary or group.
|
96
160
|
*/
|
97
161
|
tagResource(params: Synthetics.Types.TagResourceRequest, callback?: (err: AWSError, data: Synthetics.Types.TagResourceResponse) => void): Request<Synthetics.Types.TagResourceResponse, AWSError>;
|
98
162
|
/**
|
99
|
-
* Assigns one or more tags (key-value pairs) to the specified canary. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can use the TagResource action with a
|
163
|
+
* Assigns one or more tags (key-value pairs) to the specified canary or group. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can use the TagResource action with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a canary or group.
|
100
164
|
*/
|
101
165
|
tagResource(callback?: (err: AWSError, data: Synthetics.Types.TagResourceResponse) => void): Request<Synthetics.Types.TagResourceResponse, AWSError>;
|
102
166
|
/**
|
103
|
-
* Removes one or more tags from the specified
|
167
|
+
* Removes one or more tags from the specified resource.
|
104
168
|
*/
|
105
169
|
untagResource(params: Synthetics.Types.UntagResourceRequest, callback?: (err: AWSError, data: Synthetics.Types.UntagResourceResponse) => void): Request<Synthetics.Types.UntagResourceResponse, AWSError>;
|
106
170
|
/**
|
107
|
-
* Removes one or more tags from the specified
|
171
|
+
* Removes one or more tags from the specified resource.
|
108
172
|
*/
|
109
173
|
untagResource(callback?: (err: AWSError, data: Synthetics.Types.UntagResourceResponse) => void): Request<Synthetics.Types.UntagResourceResponse, AWSError>;
|
110
174
|
/**
|
111
|
-
*
|
175
|
+
* Updates the configuration of a canary that has already been created. You can't use this operation to update the tags of an existing canary. To change the tags of an existing canary, use TagResource.
|
112
176
|
*/
|
113
177
|
updateCanary(params: Synthetics.Types.UpdateCanaryRequest, callback?: (err: AWSError, data: Synthetics.Types.UpdateCanaryResponse) => void): Request<Synthetics.Types.UpdateCanaryResponse, AWSError>;
|
114
178
|
/**
|
115
|
-
*
|
179
|
+
* Updates the configuration of a canary that has already been created. You can't use this operation to update the tags of an existing canary. To change the tags of an existing canary, use TagResource.
|
116
180
|
*/
|
117
181
|
updateCanary(callback?: (err: AWSError, data: Synthetics.Types.UpdateCanaryResponse) => void): Request<Synthetics.Types.UpdateCanaryResponse, AWSError>;
|
118
182
|
}
|
@@ -129,13 +193,25 @@ declare namespace Synthetics {
|
|
129
193
|
*/
|
130
194
|
S3Encryption?: S3EncryptionConfig;
|
131
195
|
}
|
196
|
+
export interface AssociateResourceRequest {
|
197
|
+
/**
|
198
|
+
* Specifies the group. You can specify the group name, the ARN, or the group ID as the GroupIdentifier.
|
199
|
+
*/
|
200
|
+
GroupIdentifier: GroupIdentifier;
|
201
|
+
/**
|
202
|
+
* The ARN of the canary that you want to associate with the specified group.
|
203
|
+
*/
|
204
|
+
ResourceArn: CanaryArn;
|
205
|
+
}
|
206
|
+
export interface AssociateResourceResponse {
|
207
|
+
}
|
132
208
|
export interface BaseScreenshot {
|
133
209
|
/**
|
134
210
|
* The name of the screenshot. This is generated the first time the canary is run after the UpdateCanary operation that specified for this canary to perform visual monitoring.
|
135
211
|
*/
|
136
212
|
ScreenshotName: String;
|
137
213
|
/**
|
138
|
-
* Coordinates that define the part of a screen to ignore during screenshot comparisons. To obtain the coordinates to use here, use the CloudWatch
|
214
|
+
* Coordinates that define the part of a screen to ignore during screenshot comparisons. To obtain the coordinates to use here, use the CloudWatch console to draw the boundaries on the screen. For more information, see Editing or deleting a canary
|
139
215
|
*/
|
140
216
|
IgnoreCoordinates?: BaseScreenshotIgnoreCoordinates;
|
141
217
|
}
|
@@ -286,7 +362,7 @@ declare namespace Synthetics {
|
|
286
362
|
*/
|
287
363
|
ActiveTracing?: NullableBoolean;
|
288
364
|
/**
|
289
|
-
* Specifies the keys and values to use for any environment variables used in the canary script. Use the following format: { "key1" : "value1", "key2" : "value2", ...} Keys must start with a letter and be at least two characters. The total size of your environment variables cannot exceed 4 KB. You can't specify any Lambda reserved environment variables as the keys for your environment variables. For more information about reserved keys, see Runtime environment variables.
|
365
|
+
* Specifies the keys and values to use for any environment variables used in the canary script. Use the following format: { "key1" : "value1", "key2" : "value2", ...} Keys must start with a letter and be at least two characters. The total size of your environment variables cannot exceed 4 KB. You can't specify any Lambda reserved environment variables as the keys for your environment variables. For more information about reserved keys, see Runtime environment variables. The environment variables keys and values are not encrypted. Do not store sensitive information in this field.
|
290
366
|
*/
|
291
367
|
EnvironmentVariables?: EnvironmentVariablesMap;
|
292
368
|
}
|
@@ -408,7 +484,7 @@ declare namespace Synthetics {
|
|
408
484
|
*/
|
409
485
|
Schedule: CanaryScheduleInput;
|
410
486
|
/**
|
411
|
-
* A structure that contains the configuration for individual canary runs, such as timeout value.
|
487
|
+
* A structure that contains the configuration for individual canary runs, such as timeout value and environment variables. The environment variables keys and values are not encrypted. Do not store sensitive information in this field.
|
412
488
|
*/
|
413
489
|
RunConfig?: CanaryRunConfigInput;
|
414
490
|
/**
|
@@ -442,6 +518,22 @@ declare namespace Synthetics {
|
|
442
518
|
*/
|
443
519
|
Canary?: Canary;
|
444
520
|
}
|
521
|
+
export interface CreateGroupRequest {
|
522
|
+
/**
|
523
|
+
* The name for the group. It can include any Unicode characters. The names for all groups in your account, across all Regions, must be unique.
|
524
|
+
*/
|
525
|
+
Name: GroupName;
|
526
|
+
/**
|
527
|
+
* A list of key-value pairs to associate with the group. You can associate as many as 50 tags with a group. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only the resources that have certain tag values.
|
528
|
+
*/
|
529
|
+
Tags?: TagMap;
|
530
|
+
}
|
531
|
+
export interface CreateGroupResponse {
|
532
|
+
/**
|
533
|
+
* A structure that contains information about the group that was just created.
|
534
|
+
*/
|
535
|
+
Group?: Group;
|
536
|
+
}
|
445
537
|
export interface DeleteCanaryRequest {
|
446
538
|
/**
|
447
539
|
* The name of the canary that you want to delete. To find the names of your canaries, use DescribeCanaries.
|
@@ -454,10 +546,18 @@ declare namespace Synthetics {
|
|
454
546
|
}
|
455
547
|
export interface DeleteCanaryResponse {
|
456
548
|
}
|
549
|
+
export interface DeleteGroupRequest {
|
550
|
+
/**
|
551
|
+
* Specifies which group to delete. You can specify the group name, the ARN, or the group ID as the GroupIdentifier.
|
552
|
+
*/
|
553
|
+
GroupIdentifier: GroupIdentifier;
|
554
|
+
}
|
555
|
+
export interface DeleteGroupResponse {
|
556
|
+
}
|
457
557
|
export type DescribeCanariesLastRunNameFilter = CanaryName[];
|
458
558
|
export interface DescribeCanariesLastRunRequest {
|
459
559
|
/**
|
460
|
-
* A token that indicates that there is more data available. You can use this token in a subsequent
|
560
|
+
* A token that indicates that there is more data available. You can use this token in a subsequent DescribeCanariesLastRun operation to retrieve the next set of results.
|
461
561
|
*/
|
462
562
|
NextToken?: Token;
|
463
563
|
/**
|
@@ -524,6 +624,18 @@ declare namespace Synthetics {
|
|
524
624
|
*/
|
525
625
|
NextToken?: Token;
|
526
626
|
}
|
627
|
+
export interface DisassociateResourceRequest {
|
628
|
+
/**
|
629
|
+
* Specifies the group. You can specify the group name, the ARN, or the group ID as the GroupIdentifier.
|
630
|
+
*/
|
631
|
+
GroupIdentifier: GroupIdentifier;
|
632
|
+
/**
|
633
|
+
* The ARN of the canary that you want to remove from the specified group.
|
634
|
+
*/
|
635
|
+
ResourceArn: CanaryArn;
|
636
|
+
}
|
637
|
+
export interface DisassociateResourceResponse {
|
638
|
+
}
|
527
639
|
export type EncryptionMode = "SSE_S3"|"SSE_KMS"|string;
|
528
640
|
export type EnvironmentVariableName = string;
|
529
641
|
export type EnvironmentVariableValue = string;
|
@@ -537,7 +649,7 @@ declare namespace Synthetics {
|
|
537
649
|
}
|
538
650
|
export interface GetCanaryResponse {
|
539
651
|
/**
|
540
|
-
* A
|
652
|
+
* A structure that contains the full information about the canary.
|
541
653
|
*/
|
542
654
|
Canary?: Canary;
|
543
655
|
}
|
@@ -565,26 +677,153 @@ declare namespace Synthetics {
|
|
565
677
|
*/
|
566
678
|
NextToken?: Token;
|
567
679
|
}
|
680
|
+
export interface GetGroupRequest {
|
681
|
+
/**
|
682
|
+
* Specifies the group to return information for. You can specify the group name, the ARN, or the group ID as the GroupIdentifier.
|
683
|
+
*/
|
684
|
+
GroupIdentifier: GroupIdentifier;
|
685
|
+
}
|
686
|
+
export interface GetGroupResponse {
|
687
|
+
/**
|
688
|
+
* A structure that contains information about the group.
|
689
|
+
*/
|
690
|
+
Group?: Group;
|
691
|
+
}
|
692
|
+
export interface Group {
|
693
|
+
/**
|
694
|
+
* The unique ID of the group.
|
695
|
+
*/
|
696
|
+
Id?: String;
|
697
|
+
/**
|
698
|
+
* The name of the group.
|
699
|
+
*/
|
700
|
+
Name?: GroupName;
|
701
|
+
/**
|
702
|
+
* The ARN of the group.
|
703
|
+
*/
|
704
|
+
Arn?: GroupArn;
|
705
|
+
/**
|
706
|
+
* The list of key-value pairs that are associated with the canary.
|
707
|
+
*/
|
708
|
+
Tags?: TagMap;
|
709
|
+
/**
|
710
|
+
* The date and time that the group was created.
|
711
|
+
*/
|
712
|
+
CreatedTime?: Timestamp;
|
713
|
+
/**
|
714
|
+
* The date and time that the group was most recently updated.
|
715
|
+
*/
|
716
|
+
LastModifiedTime?: Timestamp;
|
717
|
+
}
|
718
|
+
export type GroupArn = string;
|
719
|
+
export type GroupIdentifier = string;
|
720
|
+
export type GroupName = string;
|
721
|
+
export interface GroupSummary {
|
722
|
+
/**
|
723
|
+
* The unique ID of the group.
|
724
|
+
*/
|
725
|
+
Id?: String;
|
726
|
+
/**
|
727
|
+
* The name of the group.
|
728
|
+
*/
|
729
|
+
Name?: GroupName;
|
730
|
+
/**
|
731
|
+
* The ARN of the group.
|
732
|
+
*/
|
733
|
+
Arn?: GroupArn;
|
734
|
+
}
|
735
|
+
export type GroupSummaryList = GroupSummary[];
|
568
736
|
export type KmsKeyArn = string;
|
569
|
-
export interface
|
737
|
+
export interface ListAssociatedGroupsRequest {
|
738
|
+
/**
|
739
|
+
* A token that indicates that there is more data available. You can use this token in a subsequent operation to retrieve the next set of results.
|
740
|
+
*/
|
741
|
+
NextToken?: PaginationToken;
|
742
|
+
/**
|
743
|
+
* Specify this parameter to limit how many groups are returned each time you use the ListAssociatedGroups operation. If you omit this parameter, the default of 20 is used.
|
744
|
+
*/
|
745
|
+
MaxResults?: MaxGroupResults;
|
570
746
|
/**
|
571
|
-
* The ARN of the canary that you want to view
|
747
|
+
* The ARN of the canary that you want to view groups for.
|
572
748
|
*/
|
573
749
|
ResourceArn: CanaryArn;
|
574
750
|
}
|
751
|
+
export interface ListAssociatedGroupsResponse {
|
752
|
+
/**
|
753
|
+
* An array of structures that contain information about the groups that this canary is associated with.
|
754
|
+
*/
|
755
|
+
Groups?: GroupSummaryList;
|
756
|
+
/**
|
757
|
+
* A token that indicates that there is more data available. You can use this token in a subsequent ListAssociatedGroups operation to retrieve the next set of results.
|
758
|
+
*/
|
759
|
+
NextToken?: PaginationToken;
|
760
|
+
}
|
761
|
+
export interface ListGroupResourcesRequest {
|
762
|
+
/**
|
763
|
+
* A token that indicates that there is more data available. You can use this token in a subsequent operation to retrieve the next set of results.
|
764
|
+
*/
|
765
|
+
NextToken?: PaginationToken;
|
766
|
+
/**
|
767
|
+
* Specify this parameter to limit how many canary ARNs are returned each time you use the ListGroupResources operation. If you omit this parameter, the default of 20 is used.
|
768
|
+
*/
|
769
|
+
MaxResults?: MaxGroupResults;
|
770
|
+
/**
|
771
|
+
* Specifies the group to return information for. You can specify the group name, the ARN, or the group ID as the GroupIdentifier.
|
772
|
+
*/
|
773
|
+
GroupIdentifier: GroupIdentifier;
|
774
|
+
}
|
775
|
+
export interface ListGroupResourcesResponse {
|
776
|
+
/**
|
777
|
+
* An array of ARNs. These ARNs are for the canaries that are associated with the group.
|
778
|
+
*/
|
779
|
+
Resources?: StringList;
|
780
|
+
/**
|
781
|
+
* A token that indicates that there is more data available. You can use this token in a subsequent ListGroupResources operation to retrieve the next set of results.
|
782
|
+
*/
|
783
|
+
NextToken?: PaginationToken;
|
784
|
+
}
|
785
|
+
export interface ListGroupsRequest {
|
786
|
+
/**
|
787
|
+
* A token that indicates that there is more data available. You can use this token in a subsequent operation to retrieve the next set of results.
|
788
|
+
*/
|
789
|
+
NextToken?: PaginationToken;
|
790
|
+
/**
|
791
|
+
* Specify this parameter to limit how many groups are returned each time you use the ListGroups operation. If you omit this parameter, the default of 20 is used.
|
792
|
+
*/
|
793
|
+
MaxResults?: MaxGroupResults;
|
794
|
+
}
|
795
|
+
export interface ListGroupsResponse {
|
796
|
+
/**
|
797
|
+
* An array of structures that each contain information about one group.
|
798
|
+
*/
|
799
|
+
Groups?: GroupSummaryList;
|
800
|
+
/**
|
801
|
+
* A token that indicates that there is more data available. You can use this token in a subsequent ListGroups operation to retrieve the next set of results.
|
802
|
+
*/
|
803
|
+
NextToken?: Token;
|
804
|
+
}
|
805
|
+
export interface ListTagsForResourceRequest {
|
806
|
+
/**
|
807
|
+
* The ARN of the canary or group that you want to view tags for. The ARN format of a canary is arn:aws:synthetics:Region:account-id:canary:canary-name . The ARN format of a group is arn:aws:synthetics:Region:account-id:group:group-name
|
808
|
+
*/
|
809
|
+
ResourceArn: ResourceArn;
|
810
|
+
}
|
575
811
|
export interface ListTagsForResourceResponse {
|
576
812
|
/**
|
577
|
-
* The list of tag keys and values associated with the
|
813
|
+
* The list of tag keys and values associated with the resource that you specified.
|
578
814
|
*/
|
579
815
|
Tags?: TagMap;
|
580
816
|
}
|
581
817
|
export type MaxCanaryResults = number;
|
582
818
|
export type MaxFifteenMinutesInSeconds = number;
|
819
|
+
export type MaxGroupResults = number;
|
583
820
|
export type MaxOneYearInSeconds = number;
|
584
821
|
export type MaxSize100 = number;
|
585
822
|
export type MaxSize1024 = number;
|
586
823
|
export type MaxSize3008 = number;
|
587
824
|
export type NullableBoolean = boolean;
|
825
|
+
export type PaginationToken = string;
|
826
|
+
export type ResourceArn = string;
|
588
827
|
export type RoleArn = string;
|
589
828
|
export interface RuntimeVersion {
|
590
829
|
/**
|
@@ -627,13 +866,14 @@ declare namespace Synthetics {
|
|
627
866
|
}
|
628
867
|
export interface StopCanaryRequest {
|
629
868
|
/**
|
630
|
-
* The name of the canary that you want to stop. To find the names of your canaries, use
|
869
|
+
* The name of the canary that you want to stop. To find the names of your canaries, use ListCanaries.
|
631
870
|
*/
|
632
871
|
Name: CanaryName;
|
633
872
|
}
|
634
873
|
export interface StopCanaryResponse {
|
635
874
|
}
|
636
875
|
export type String = string;
|
876
|
+
export type StringList = String[];
|
637
877
|
export type SubnetId = string;
|
638
878
|
export type SubnetIds = SubnetId[];
|
639
879
|
export type TagKey = string;
|
@@ -641,11 +881,11 @@ declare namespace Synthetics {
|
|
641
881
|
export type TagMap = {[key: string]: TagValue};
|
642
882
|
export interface TagResourceRequest {
|
643
883
|
/**
|
644
|
-
* The ARN of the canary that you're adding tags to. The ARN format of a canary is arn:aws:synthetics:Region:account-id:canary:canary-name .
|
884
|
+
* The ARN of the canary or group that you're adding tags to. The ARN format of a canary is arn:aws:synthetics:Region:account-id:canary:canary-name . The ARN format of a group is arn:aws:synthetics:Region:account-id:group:group-name
|
645
885
|
*/
|
646
|
-
ResourceArn:
|
886
|
+
ResourceArn: ResourceArn;
|
647
887
|
/**
|
648
|
-
* The list of key-value pairs to associate with the
|
888
|
+
* The list of key-value pairs to associate with the resource.
|
649
889
|
*/
|
650
890
|
Tags: TagMap;
|
651
891
|
}
|
@@ -657,9 +897,9 @@ declare namespace Synthetics {
|
|
657
897
|
export type UUID = string;
|
658
898
|
export interface UntagResourceRequest {
|
659
899
|
/**
|
660
|
-
* The ARN of the canary that you're removing tags from. The ARN format of a canary is arn:aws:synthetics:Region:account-id:canary:canary-name .
|
900
|
+
* The ARN of the canary or group that you're removing tags from. The ARN format of a canary is arn:aws:synthetics:Region:account-id:canary:canary-name . The ARN format of a group is arn:aws:synthetics:Region:account-id:group:group-name
|
661
901
|
*/
|
662
|
-
ResourceArn:
|
902
|
+
ResourceArn: ResourceArn;
|
663
903
|
/**
|
664
904
|
* The list of tag keys to remove from the resource.
|
665
905
|
*/
|
@@ -689,7 +929,7 @@ declare namespace Synthetics {
|
|
689
929
|
*/
|
690
930
|
Schedule?: CanaryScheduleInput;
|
691
931
|
/**
|
692
|
-
* A structure that contains the timeout value that is used for each individual run of the canary.
|
932
|
+
* A structure that contains the timeout value that is used for each individual run of the canary. The environment variables keys and values are not encrypted. Do not store sensitive information in this field.
|
693
933
|
*/
|
694
934
|
RunConfig?: CanaryRunConfigInput;
|
695
935
|
/**
|
@@ -735,7 +975,7 @@ declare namespace Synthetics {
|
|
735
975
|
*/
|
736
976
|
BaseScreenshots?: BaseScreenshots;
|
737
977
|
/**
|
738
|
-
* The ID of the canary run that produced the screenshots that are used
|
978
|
+
* The ID of the canary run that produced the baseline screenshots that are used for visual monitoring comparisons by this canary.
|
739
979
|
*/
|
740
980
|
BaseCanaryRunId?: String;
|
741
981
|
}
|