aws-sdk 2.1593.0 → 2.1595.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/apis/controlcatalog-2018-05-10.examples.json +5 -0
- package/apis/controlcatalog-2018-05-10.min.json +228 -0
- package/apis/controlcatalog-2018-05-10.paginators.json +22 -0
- package/apis/metadata.json +3 -0
- package/apis/quicksight-2018-04-01.min.json +2 -1
- package/apis/verifiedpermissions-2021-12-01.min.json +172 -96
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/controlcatalog.d.ts +260 -0
- package/clients/controlcatalog.js +18 -0
- package/clients/mgn.d.ts +4 -4
- package/clients/networkmonitor.d.ts +16 -16
- package/clients/quicksight.d.ts +5 -1
- package/clients/resourcegroups.d.ts +6 -6
- package/clients/verifiedpermissions.d.ts +82 -8
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +43 -6
- package/dist/aws-sdk.js +6 -3
- package/dist/aws-sdk.min.js +39 -39
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/all.js
CHANGED
@@ -379,5 +379,6 @@ module.exports = {
|
|
379
379
|
Chatbot: require('./chatbot'),
|
380
380
|
TimestreamInfluxDB: require('./timestreaminfluxdb'),
|
381
381
|
CodeConnections: require('./codeconnections'),
|
382
|
-
Deadline: require('./deadline')
|
382
|
+
Deadline: require('./deadline'),
|
383
|
+
ControlCatalog: require('./controlcatalog')
|
383
384
|
};
|
@@ -0,0 +1,260 @@
|
|
1
|
+
import {Request} from '../lib/request';
|
2
|
+
import {Response} from '../lib/response';
|
3
|
+
import {AWSError} from '../lib/error';
|
4
|
+
import {Service} from '../lib/service';
|
5
|
+
import {ServiceConfigurationOptions} from '../lib/service';
|
6
|
+
import {ConfigBase as Config} from '../lib/config-base';
|
7
|
+
interface Blob {}
|
8
|
+
declare class ControlCatalog extends Service {
|
9
|
+
/**
|
10
|
+
* Constructs a service object. This object has one method for each API operation.
|
11
|
+
*/
|
12
|
+
constructor(options?: ControlCatalog.Types.ClientConfiguration)
|
13
|
+
config: Config & ControlCatalog.Types.ClientConfiguration;
|
14
|
+
/**
|
15
|
+
* Returns a paginated list of common controls from the Amazon Web Services Control Catalog. You can apply an optional filter to see common controls that have a specific objective. If you don’t provide a filter, the operation returns all common controls.
|
16
|
+
*/
|
17
|
+
listCommonControls(params: ControlCatalog.Types.ListCommonControlsRequest, callback?: (err: AWSError, data: ControlCatalog.Types.ListCommonControlsResponse) => void): Request<ControlCatalog.Types.ListCommonControlsResponse, AWSError>;
|
18
|
+
/**
|
19
|
+
* Returns a paginated list of common controls from the Amazon Web Services Control Catalog. You can apply an optional filter to see common controls that have a specific objective. If you don’t provide a filter, the operation returns all common controls.
|
20
|
+
*/
|
21
|
+
listCommonControls(callback?: (err: AWSError, data: ControlCatalog.Types.ListCommonControlsResponse) => void): Request<ControlCatalog.Types.ListCommonControlsResponse, AWSError>;
|
22
|
+
/**
|
23
|
+
* Returns a paginated list of domains from the Amazon Web Services Control Catalog.
|
24
|
+
*/
|
25
|
+
listDomains(params: ControlCatalog.Types.ListDomainsRequest, callback?: (err: AWSError, data: ControlCatalog.Types.ListDomainsResponse) => void): Request<ControlCatalog.Types.ListDomainsResponse, AWSError>;
|
26
|
+
/**
|
27
|
+
* Returns a paginated list of domains from the Amazon Web Services Control Catalog.
|
28
|
+
*/
|
29
|
+
listDomains(callback?: (err: AWSError, data: ControlCatalog.Types.ListDomainsResponse) => void): Request<ControlCatalog.Types.ListDomainsResponse, AWSError>;
|
30
|
+
/**
|
31
|
+
* Returns a paginated list of objectives from the Amazon Web Services Control Catalog. You can apply an optional filter to see the objectives that belong to a specific domain. If you don’t provide a filter, the operation returns all objectives.
|
32
|
+
*/
|
33
|
+
listObjectives(params: ControlCatalog.Types.ListObjectivesRequest, callback?: (err: AWSError, data: ControlCatalog.Types.ListObjectivesResponse) => void): Request<ControlCatalog.Types.ListObjectivesResponse, AWSError>;
|
34
|
+
/**
|
35
|
+
* Returns a paginated list of objectives from the Amazon Web Services Control Catalog. You can apply an optional filter to see the objectives that belong to a specific domain. If you don’t provide a filter, the operation returns all objectives.
|
36
|
+
*/
|
37
|
+
listObjectives(callback?: (err: AWSError, data: ControlCatalog.Types.ListObjectivesResponse) => void): Request<ControlCatalog.Types.ListObjectivesResponse, AWSError>;
|
38
|
+
}
|
39
|
+
declare namespace ControlCatalog {
|
40
|
+
export interface AssociatedDomainSummary {
|
41
|
+
/**
|
42
|
+
* The Amazon Resource Name (ARN) of the related domain.
|
43
|
+
*/
|
44
|
+
Arn?: DomainArn;
|
45
|
+
/**
|
46
|
+
* The name of the related domain.
|
47
|
+
*/
|
48
|
+
Name?: String;
|
49
|
+
}
|
50
|
+
export interface AssociatedObjectiveSummary {
|
51
|
+
/**
|
52
|
+
* The Amazon Resource Name (ARN) of the related objective.
|
53
|
+
*/
|
54
|
+
Arn?: ObjectiveArn;
|
55
|
+
/**
|
56
|
+
* The name of the related objective.
|
57
|
+
*/
|
58
|
+
Name?: String;
|
59
|
+
}
|
60
|
+
export type CommonControlArn = string;
|
61
|
+
export interface CommonControlFilter {
|
62
|
+
/**
|
63
|
+
* The objective that's used as filter criteria. You can use this parameter to specify one objective ARN at a time. Passing multiple ARNs in the CommonControlFilter isn’t currently supported.
|
64
|
+
*/
|
65
|
+
Objectives?: ObjectiveResourceFilterList;
|
66
|
+
}
|
67
|
+
export interface CommonControlSummary {
|
68
|
+
/**
|
69
|
+
* The Amazon Resource Name (ARN) that identifies the common control.
|
70
|
+
*/
|
71
|
+
Arn: CommonControlArn;
|
72
|
+
/**
|
73
|
+
* The time when the common control was created.
|
74
|
+
*/
|
75
|
+
CreateTime: Timestamp;
|
76
|
+
/**
|
77
|
+
* The description of the common control.
|
78
|
+
*/
|
79
|
+
Description: String;
|
80
|
+
/**
|
81
|
+
* The domain that the common control belongs to.
|
82
|
+
*/
|
83
|
+
Domain: AssociatedDomainSummary;
|
84
|
+
/**
|
85
|
+
* The time when the common control was most recently updated.
|
86
|
+
*/
|
87
|
+
LastUpdateTime: Timestamp;
|
88
|
+
/**
|
89
|
+
* The name of the common control.
|
90
|
+
*/
|
91
|
+
Name: String;
|
92
|
+
/**
|
93
|
+
* The objective that the common control belongs to.
|
94
|
+
*/
|
95
|
+
Objective: AssociatedObjectiveSummary;
|
96
|
+
}
|
97
|
+
export type CommonControlSummaryList = CommonControlSummary[];
|
98
|
+
export type DomainArn = string;
|
99
|
+
export interface DomainResourceFilter {
|
100
|
+
/**
|
101
|
+
* The Amazon Resource Name (ARN) of the domain.
|
102
|
+
*/
|
103
|
+
Arn?: DomainArn;
|
104
|
+
}
|
105
|
+
export type DomainResourceFilterList = DomainResourceFilter[];
|
106
|
+
export interface DomainSummary {
|
107
|
+
/**
|
108
|
+
* The Amazon Resource Name (ARN) that identifies the domain.
|
109
|
+
*/
|
110
|
+
Arn: DomainArn;
|
111
|
+
/**
|
112
|
+
* The time when the domain was created.
|
113
|
+
*/
|
114
|
+
CreateTime: Timestamp;
|
115
|
+
/**
|
116
|
+
* The description of the domain.
|
117
|
+
*/
|
118
|
+
Description: String;
|
119
|
+
/**
|
120
|
+
* The time when the domain was most recently updated.
|
121
|
+
*/
|
122
|
+
LastUpdateTime: Timestamp;
|
123
|
+
/**
|
124
|
+
* The name of the domain.
|
125
|
+
*/
|
126
|
+
Name: String;
|
127
|
+
}
|
128
|
+
export type DomainSummaryList = DomainSummary[];
|
129
|
+
export interface ListCommonControlsRequest {
|
130
|
+
/**
|
131
|
+
* An optional filter that narrows the results to a specific objective. This filter allows you to specify one objective ARN at a time. Passing multiple ARNs in the CommonControlFilter isn’t currently supported.
|
132
|
+
*/
|
133
|
+
CommonControlFilter?: CommonControlFilter;
|
134
|
+
/**
|
135
|
+
* The maximum number of results on a page or for an API request call.
|
136
|
+
*/
|
137
|
+
MaxResults?: MaxListCommonControlsResults;
|
138
|
+
/**
|
139
|
+
* The pagination token that's used to fetch the next set of results.
|
140
|
+
*/
|
141
|
+
NextToken?: PaginationToken;
|
142
|
+
}
|
143
|
+
export interface ListCommonControlsResponse {
|
144
|
+
/**
|
145
|
+
* The list of common controls that the ListCommonControls API returns.
|
146
|
+
*/
|
147
|
+
CommonControls: CommonControlSummaryList;
|
148
|
+
/**
|
149
|
+
* The pagination token that's used to fetch the next set of results.
|
150
|
+
*/
|
151
|
+
NextToken?: PaginationToken;
|
152
|
+
}
|
153
|
+
export interface ListDomainsRequest {
|
154
|
+
/**
|
155
|
+
* The maximum number of results on a page or for an API request call.
|
156
|
+
*/
|
157
|
+
MaxResults?: MaxListDomainsResults;
|
158
|
+
/**
|
159
|
+
* The pagination token that's used to fetch the next set of results.
|
160
|
+
*/
|
161
|
+
NextToken?: PaginationToken;
|
162
|
+
}
|
163
|
+
export interface ListDomainsResponse {
|
164
|
+
/**
|
165
|
+
* The list of domains that the ListDomains API returns.
|
166
|
+
*/
|
167
|
+
Domains: DomainSummaryList;
|
168
|
+
/**
|
169
|
+
* The pagination token that's used to fetch the next set of results.
|
170
|
+
*/
|
171
|
+
NextToken?: PaginationToken;
|
172
|
+
}
|
173
|
+
export interface ListObjectivesRequest {
|
174
|
+
/**
|
175
|
+
* The maximum number of results on a page or for an API request call.
|
176
|
+
*/
|
177
|
+
MaxResults?: MaxListObjectivesResults;
|
178
|
+
/**
|
179
|
+
* The pagination token that's used to fetch the next set of results.
|
180
|
+
*/
|
181
|
+
NextToken?: PaginationToken;
|
182
|
+
/**
|
183
|
+
* An optional filter that narrows the results to a specific domain. This filter allows you to specify one domain ARN at a time. Passing multiple ARNs in the ObjectiveFilter isn’t currently supported.
|
184
|
+
*/
|
185
|
+
ObjectiveFilter?: ObjectiveFilter;
|
186
|
+
}
|
187
|
+
export interface ListObjectivesResponse {
|
188
|
+
/**
|
189
|
+
* The pagination token that's used to fetch the next set of results.
|
190
|
+
*/
|
191
|
+
NextToken?: PaginationToken;
|
192
|
+
/**
|
193
|
+
* The list of objectives that the ListObjectives API returns.
|
194
|
+
*/
|
195
|
+
Objectives: ObjectiveSummaryList;
|
196
|
+
}
|
197
|
+
export type MaxListCommonControlsResults = number;
|
198
|
+
export type MaxListDomainsResults = number;
|
199
|
+
export type MaxListObjectivesResults = number;
|
200
|
+
export type ObjectiveArn = string;
|
201
|
+
export interface ObjectiveFilter {
|
202
|
+
/**
|
203
|
+
* The domain that's used as filter criteria. You can use this parameter to specify one domain ARN at a time. Passing multiple ARNs in the ObjectiveFilter isn’t currently supported.
|
204
|
+
*/
|
205
|
+
Domains?: DomainResourceFilterList;
|
206
|
+
}
|
207
|
+
export interface ObjectiveResourceFilter {
|
208
|
+
/**
|
209
|
+
* The Amazon Resource Name (ARN) of the objective.
|
210
|
+
*/
|
211
|
+
Arn?: ObjectiveArn;
|
212
|
+
}
|
213
|
+
export type ObjectiveResourceFilterList = ObjectiveResourceFilter[];
|
214
|
+
export interface ObjectiveSummary {
|
215
|
+
/**
|
216
|
+
* The Amazon Resource Name (ARN) that identifies the objective.
|
217
|
+
*/
|
218
|
+
Arn: ObjectiveArn;
|
219
|
+
/**
|
220
|
+
* The time when the objective was created.
|
221
|
+
*/
|
222
|
+
CreateTime: Timestamp;
|
223
|
+
/**
|
224
|
+
* The description of the objective.
|
225
|
+
*/
|
226
|
+
Description: String;
|
227
|
+
/**
|
228
|
+
* The domain that the objective belongs to.
|
229
|
+
*/
|
230
|
+
Domain: AssociatedDomainSummary;
|
231
|
+
/**
|
232
|
+
* The time when the objective was most recently updated.
|
233
|
+
*/
|
234
|
+
LastUpdateTime: Timestamp;
|
235
|
+
/**
|
236
|
+
* The name of the objective.
|
237
|
+
*/
|
238
|
+
Name: String;
|
239
|
+
}
|
240
|
+
export type ObjectiveSummaryList = ObjectiveSummary[];
|
241
|
+
export type PaginationToken = string;
|
242
|
+
export type String = string;
|
243
|
+
export type Timestamp = Date;
|
244
|
+
/**
|
245
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
246
|
+
*/
|
247
|
+
export type apiVersion = "2018-05-10"|"latest"|string;
|
248
|
+
export interface ClientApiVersions {
|
249
|
+
/**
|
250
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
251
|
+
*/
|
252
|
+
apiVersion?: apiVersion;
|
253
|
+
}
|
254
|
+
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
|
255
|
+
/**
|
256
|
+
* Contains interfaces for use with the ControlCatalog client.
|
257
|
+
*/
|
258
|
+
export import Types = ControlCatalog;
|
259
|
+
}
|
260
|
+
export = ControlCatalog;
|
@@ -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['controlcatalog'] = {};
|
7
|
+
AWS.ControlCatalog = Service.defineService('controlcatalog', ['2018-05-10']);
|
8
|
+
Object.defineProperty(apiLoader.services['controlcatalog'], '2018-05-10', {
|
9
|
+
get: function get() {
|
10
|
+
var model = require('../apis/controlcatalog-2018-05-10.min.json');
|
11
|
+
model.paginators = require('../apis/controlcatalog-2018-05-10.paginators.json').pagination;
|
12
|
+
return model;
|
13
|
+
},
|
14
|
+
enumerable: true,
|
15
|
+
configurable: true
|
16
|
+
});
|
17
|
+
|
18
|
+
module.exports = AWS.ControlCatalog;
|
package/clients/mgn.d.ts
CHANGED
@@ -516,11 +516,11 @@ declare class Mgn extends Service {
|
|
516
516
|
*/
|
517
517
|
updateConnector(callback?: (err: AWSError, data: Mgn.Types.Connector) => void): Request<Mgn.Types.Connector, AWSError>;
|
518
518
|
/**
|
519
|
-
* Updates multiple LaunchConfigurations by Source Server ID.
|
519
|
+
* Updates multiple LaunchConfigurations by Source Server ID. bootMode valid values are LEGACY_BIOS | UEFI
|
520
520
|
*/
|
521
521
|
updateLaunchConfiguration(params: Mgn.Types.UpdateLaunchConfigurationRequest, callback?: (err: AWSError, data: Mgn.Types.LaunchConfiguration) => void): Request<Mgn.Types.LaunchConfiguration, AWSError>;
|
522
522
|
/**
|
523
|
-
* Updates multiple LaunchConfigurations by Source Server ID.
|
523
|
+
* Updates multiple LaunchConfigurations by Source Server ID. bootMode valid values are LEGACY_BIOS | UEFI
|
524
524
|
*/
|
525
525
|
updateLaunchConfiguration(callback?: (err: AWSError, data: Mgn.Types.LaunchConfiguration) => void): Request<Mgn.Types.LaunchConfiguration, AWSError>;
|
526
526
|
/**
|
@@ -575,7 +575,7 @@ declare class Mgn extends Service {
|
|
575
575
|
declare namespace Mgn {
|
576
576
|
export type ARN = string;
|
577
577
|
export type AccountID = string;
|
578
|
-
export type ActionCategory = "DISASTER_RECOVERY"|"OPERATING_SYSTEM"|"LICENSE_AND_SUBSCRIPTION"|"VALIDATION"|"OBSERVABILITY"|"SECURITY"|"NETWORKING"|"CONFIGURATION"|"BACKUP"|"OTHER"|string;
|
578
|
+
export type ActionCategory = "DISASTER_RECOVERY"|"OPERATING_SYSTEM"|"LICENSE_AND_SUBSCRIPTION"|"VALIDATION"|"OBSERVABILITY"|"REFACTORING"|"SECURITY"|"NETWORKING"|"CONFIGURATION"|"BACKUP"|"OTHER"|string;
|
579
579
|
export type ActionDescription = string;
|
580
580
|
export type ActionID = string;
|
581
581
|
export type ActionIDs = ActionID[];
|
@@ -703,7 +703,7 @@ declare namespace Mgn {
|
|
703
703
|
}
|
704
704
|
export type BandwidthThrottling = number;
|
705
705
|
export type Boolean = boolean;
|
706
|
-
export type BootMode = "LEGACY_BIOS"|"UEFI"|string;
|
706
|
+
export type BootMode = "LEGACY_BIOS"|"UEFI"|"USE_SOURCE"|string;
|
707
707
|
export type BoundedString = string;
|
708
708
|
export interface CPU {
|
709
709
|
/**
|
@@ -114,7 +114,7 @@ declare namespace NetworkMonitor {
|
|
114
114
|
export type Arn = string;
|
115
115
|
export interface CreateMonitorInput {
|
116
116
|
/**
|
117
|
-
* The name identifying the monitor. It can contain only letters, underscores (_), or dashes (-), and can be up to
|
117
|
+
* The name identifying the monitor. It can contain only letters, underscores (_), or dashes (-), and can be up to 200 characters.
|
118
118
|
*/
|
119
119
|
monitorName: ResourceName;
|
120
120
|
/**
|
@@ -148,7 +148,7 @@ declare namespace NetworkMonitor {
|
|
148
148
|
*/
|
149
149
|
state: MonitorState;
|
150
150
|
/**
|
151
|
-
* The number of seconds that metrics are aggregated by and sent to Amazon CloudWatch. This
|
151
|
+
* The number of seconds that metrics are aggregated by and sent to Amazon CloudWatch. This must be either 30 or 60.
|
152
152
|
*/
|
153
153
|
aggregationPeriod?: AggregationPeriod;
|
154
154
|
/**
|
@@ -162,7 +162,7 @@ declare namespace NetworkMonitor {
|
|
162
162
|
*/
|
163
163
|
sourceArn: Arn;
|
164
164
|
/**
|
165
|
-
* The destination IP address. This
|
165
|
+
* The destination IP address. This must be either IPV4 or IPV6.
|
166
166
|
*/
|
167
167
|
destination: Destination;
|
168
168
|
/**
|
@@ -170,11 +170,11 @@ declare namespace NetworkMonitor {
|
|
170
170
|
*/
|
171
171
|
destinationPort?: Port;
|
172
172
|
/**
|
173
|
-
* The protocol used for the network traffic between the source and destination. This
|
173
|
+
* The protocol used for the network traffic between the source and destination. This must be either TCP or ICMP.
|
174
174
|
*/
|
175
175
|
protocol: Protocol;
|
176
176
|
/**
|
177
|
-
* The size of the packets sent between the source and destination. This
|
177
|
+
* The size of the packets sent between the source and destination. This must be a number between 56 and 8500.
|
178
178
|
*/
|
179
179
|
packetSize?: PacketSize;
|
180
180
|
/**
|
@@ -215,7 +215,7 @@ declare namespace NetworkMonitor {
|
|
215
215
|
*/
|
216
216
|
sourceArn: Arn;
|
217
217
|
/**
|
218
|
-
* The destination IP address for the monitor. This
|
218
|
+
* The destination IP address for the monitor. This must be either an IPv4 or IPv6 address.
|
219
219
|
*/
|
220
220
|
destination: Destination;
|
221
221
|
/**
|
@@ -223,11 +223,11 @@ declare namespace NetworkMonitor {
|
|
223
223
|
*/
|
224
224
|
destinationPort?: Port;
|
225
225
|
/**
|
226
|
-
* The protocol used for the network traffic between the source and destination. This
|
226
|
+
* The protocol used for the network traffic between the source and destination. This must be either TCP or ICMP.
|
227
227
|
*/
|
228
228
|
protocol: Protocol;
|
229
229
|
/**
|
230
|
-
* The size of the packets sent between the source and destination. This
|
230
|
+
* The size of the packets sent between the source and destination. This must be a number between 56 and 8500.
|
231
231
|
*/
|
232
232
|
packetSize?: PacketSize;
|
233
233
|
/**
|
@@ -340,7 +340,7 @@ declare namespace NetworkMonitor {
|
|
340
340
|
*/
|
341
341
|
sourceArn: Arn;
|
342
342
|
/**
|
343
|
-
* The destination IP address for the monitor. This
|
343
|
+
* The destination IP address for the monitor. This must be either an IPv4 or IPv6 address.
|
344
344
|
*/
|
345
345
|
destination: Destination;
|
346
346
|
/**
|
@@ -348,11 +348,11 @@ declare namespace NetworkMonitor {
|
|
348
348
|
*/
|
349
349
|
destinationPort?: Port;
|
350
350
|
/**
|
351
|
-
* The protocol used for the network traffic between the source and destination. This
|
351
|
+
* The protocol used for the network traffic between the source and destination. This must be either TCP or ICMP.
|
352
352
|
*/
|
353
353
|
protocol: Protocol;
|
354
354
|
/**
|
355
|
-
* The size of the packets sent between the source and destination. This
|
355
|
+
* The size of the packets sent between the source and destination. This must be a number between 56 and 8500.
|
356
356
|
*/
|
357
357
|
packetSize?: PacketSize;
|
358
358
|
/**
|
@@ -507,7 +507,7 @@ declare namespace NetworkMonitor {
|
|
507
507
|
*/
|
508
508
|
sourceArn: Arn;
|
509
509
|
/**
|
510
|
-
* The destination IP address. This
|
510
|
+
* The destination IP address. This must be either IPV4 or IPV6.
|
511
511
|
*/
|
512
512
|
destination: Destination;
|
513
513
|
/**
|
@@ -515,11 +515,11 @@ declare namespace NetworkMonitor {
|
|
515
515
|
*/
|
516
516
|
destinationPort?: Port;
|
517
517
|
/**
|
518
|
-
* The protocol used for the network traffic between the source and destination. This
|
518
|
+
* The protocol used for the network traffic between the source and destination. This must be either TCP or ICMP.
|
519
519
|
*/
|
520
520
|
protocol: Protocol;
|
521
521
|
/**
|
522
|
-
* The size of the packets sent between the source and destination. This
|
522
|
+
* The size of the packets sent between the source and destination. This must be a number between 56 and 8500.
|
523
523
|
*/
|
524
524
|
packetSize?: PacketSize;
|
525
525
|
/**
|
@@ -640,7 +640,7 @@ declare namespace NetworkMonitor {
|
|
640
640
|
*/
|
641
641
|
destination: Destination;
|
642
642
|
/**
|
643
|
-
* The updated destination port. This
|
643
|
+
* The updated destination port. This must be a number between 1 and 65536.
|
644
644
|
*/
|
645
645
|
destinationPort?: Port;
|
646
646
|
/**
|
@@ -652,7 +652,7 @@ declare namespace NetworkMonitor {
|
|
652
652
|
*/
|
653
653
|
packetSize?: PacketSize;
|
654
654
|
/**
|
655
|
-
* The updated IP address family. This
|
655
|
+
* The updated IP address family. This must be either IPV4 or IPV6.
|
656
656
|
*/
|
657
657
|
addressFamily?: AddressFamily;
|
658
658
|
/**
|
package/clients/quicksight.d.ts
CHANGED
@@ -3766,6 +3766,10 @@ declare namespace QuickSight {
|
|
3766
3766
|
* A 10-digit phone number for the author of the Amazon QuickSight account to use for future communications. This field is required if ENTERPPRISE_AND_Q is the selected edition of the new Amazon QuickSight account.
|
3767
3767
|
*/
|
3768
3768
|
ContactNumber?: String;
|
3769
|
+
/**
|
3770
|
+
* The Amazon Resource Name (ARN) for the IAM Identity Center instance.
|
3771
|
+
*/
|
3772
|
+
IAMIdentityCenterInstanceArn?: String;
|
3769
3773
|
}
|
3770
3774
|
export interface CreateAccountSubscriptionResponse {
|
3771
3775
|
/**
|
@@ -9208,7 +9212,7 @@ declare namespace QuickSight {
|
|
9208
9212
|
*/
|
9209
9213
|
SelectedSheets?: SelectedSheetsFilterScopeConfiguration;
|
9210
9214
|
/**
|
9211
|
-
* The configuration
|
9215
|
+
* The configuration that applies a filter to all sheets. When you choose AllSheets as the value for a FilterScopeConfiguration, this filter is applied to all visuals of all sheets in an Analysis, Dashboard, or Template. The AllSheetsFilterScopeConfiguration is chosen.
|
9212
9216
|
*/
|
9213
9217
|
AllSheets?: AllSheetsFilterScopeConfiguration;
|
9214
9218
|
}
|
@@ -169,7 +169,7 @@ declare namespace ResourceGroups {
|
|
169
169
|
}
|
170
170
|
export interface CreateGroupInput {
|
171
171
|
/**
|
172
|
-
* The name of the group, which is the identifier of the group in other operations. You can't change the name of a resource group after you create it. A resource group name can consist of letters, numbers, hyphens, periods, and underscores. The name cannot start with AWS or
|
172
|
+
* The name of the group, which is the identifier of the group in other operations. You can't change the name of a resource group after you create it. A resource group name can consist of letters, numbers, hyphens, periods, and underscores. The name cannot start with AWS, aws, or any other possible capitalization; these are reserved. A resource group name must be unique within each Amazon Web Services Region in your Amazon Web Services account.
|
173
173
|
*/
|
174
174
|
Name: GroupName;
|
175
175
|
/**
|
@@ -477,13 +477,13 @@ declare namespace ResourceGroups {
|
|
477
477
|
*/
|
478
478
|
NextToken?: NextToken;
|
479
479
|
/**
|
480
|
-
* A list of QueryError objects. Each error
|
480
|
+
* A list of QueryError objects. Each error contains an ErrorCode and Message. Possible values for ErrorCode are CLOUDFORMATION_STACK_INACTIVE, CLOUDFORMATION_STACK_NOT_EXISTING, CLOUDFORMATION_STACK_UNASSUMABLE_ROLE and RESOURCE_TYPE_NOT_SUPPORTED.
|
481
481
|
*/
|
482
482
|
QueryErrors?: QueryErrorList;
|
483
483
|
}
|
484
484
|
export interface ListGroupsInput {
|
485
485
|
/**
|
486
|
-
* Filters, formatted as GroupFilter objects, that you want to apply to a ListGroups operation. resource-type - Filter the results to include only those
|
486
|
+
* Filters, formatted as GroupFilter objects, that you want to apply to a ListGroups operation. resource-type - Filter the results to include only those resource groups that have the specified resource type in their ResourceTypeFilter. For example, AWS::EC2::Instance would return any resource group with a ResourceTypeFilter that includes AWS::EC2::Instance. configuration-type - Filter the results to include only those groups that have the specified configuration types attached. The current supported values are: AWS::AppRegistry::Application AWS::AppRegistry::ApplicationResourceGroups AWS::CloudFormation::Stack AWS::EC2::CapacityReservationPool AWS::EC2::HostManagement AWS::NetworkFirewall::RuleGroup
|
487
487
|
*/
|
488
488
|
Filters?: GroupFilterList;
|
489
489
|
/**
|
@@ -537,11 +537,11 @@ declare namespace ResourceGroups {
|
|
537
537
|
*/
|
538
538
|
ErrorCode?: QueryErrorCode;
|
539
539
|
/**
|
540
|
-
* A message that explains the ErrorCode
|
540
|
+
* A message that explains the ErrorCode.
|
541
541
|
*/
|
542
542
|
Message?: QueryErrorMessage;
|
543
543
|
}
|
544
|
-
export type QueryErrorCode = "CLOUDFORMATION_STACK_INACTIVE"|"CLOUDFORMATION_STACK_NOT_EXISTING"|"CLOUDFORMATION_STACK_UNASSUMABLE_ROLE"|string;
|
544
|
+
export type QueryErrorCode = "CLOUDFORMATION_STACK_INACTIVE"|"CLOUDFORMATION_STACK_NOT_EXISTING"|"CLOUDFORMATION_STACK_UNASSUMABLE_ROLE"|"RESOURCE_TYPE_NOT_SUPPORTED"|string;
|
545
545
|
export type QueryErrorList = QueryError[];
|
546
546
|
export type QueryErrorMessage = string;
|
547
547
|
export type QueryType = "TAG_FILTERS_1_0"|"CLOUDFORMATION_STACK_1_0"|string;
|
@@ -614,7 +614,7 @@ declare namespace ResourceGroups {
|
|
614
614
|
*/
|
615
615
|
NextToken?: NextToken;
|
616
616
|
/**
|
617
|
-
* A list of QueryError objects. Each error
|
617
|
+
* A list of QueryError objects. Each error contains an ErrorCode and Message. Possible values for ErrorCode: CLOUDFORMATION_STACK_INACTIVE CLOUDFORMATION_STACK_NOT_EXISTING CLOUDFORMATION_STACK_UNASSUMABLE_ROLE
|
618
618
|
*/
|
619
619
|
QueryErrors?: QueryErrorList;
|
620
620
|
}
|