aws-sdk 2.1638.0 → 2.1640.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.
Files changed (49) hide show
  1. package/README.md +1 -1
  2. package/apis/accessanalyzer-2019-11-01.examples.json +196 -0
  3. package/apis/accessanalyzer-2019-11-01.min.json +254 -111
  4. package/apis/accessanalyzer-2019-11-01.paginators.json +6 -0
  5. package/apis/apptest-2022-12-06.min.json +1917 -0
  6. package/apis/apptest-2022-12-06.paginators.json +40 -0
  7. package/apis/apptest-2022-12-06.waiters2.json +5 -0
  8. package/apis/ec2-2016-11-15.min.json +160 -107
  9. package/apis/guardduty-2017-11-28.min.json +429 -124
  10. package/apis/metadata.json +7 -3
  11. package/apis/networkmanager-2019-07-05.min.json +277 -175
  12. package/apis/osis-2022-01-01.min.json +33 -28
  13. package/apis/pca-connector-scep-2018-05-10.examples.json +5 -0
  14. package/apis/pca-connector-scep-2018-05-10.min.json +456 -0
  15. package/apis/pca-connector-scep-2018-05-10.paginators.json +16 -0
  16. package/apis/pca-connector-scep-2018-05-10.waiters2.json +5 -0
  17. package/apis/redshift-2012-12-01.min.json +7 -1
  18. package/apis/sagemaker-2017-07-24.min.json +302 -288
  19. package/apis/secretsmanager-2017-10-17.min.json +8 -1
  20. package/apis/securitylake-2018-05-10.min.json +7 -1
  21. package/apis/sesv2-2019-09-27.min.json +139 -121
  22. package/clients/accessanalyzer.d.ts +162 -3
  23. package/clients/all.d.ts +2 -1
  24. package/clients/all.js +3 -2
  25. package/clients/apptest.d.ts +2019 -0
  26. package/clients/apptest.js +19 -0
  27. package/clients/ec2.d.ts +57 -3
  28. package/clients/guardduty.d.ts +277 -5
  29. package/clients/networkmanager.d.ts +155 -11
  30. package/clients/osis.d.ts +9 -0
  31. package/clients/pcaconnectorscep.d.ts +486 -0
  32. package/clients/pcaconnectorscep.js +19 -0
  33. package/clients/redshift.d.ts +16 -16
  34. package/clients/sagemaker.d.ts +24 -0
  35. package/clients/secretsmanager.d.ts +18 -13
  36. package/clients/securitylake.d.ts +3 -3
  37. package/clients/sesv2.d.ts +24 -10
  38. package/dist/aws-sdk-core-react-native.js +2 -2
  39. package/dist/aws-sdk-react-native.js +582 -531
  40. package/dist/aws-sdk.js +185 -115
  41. package/dist/aws-sdk.min.js +78 -78
  42. package/lib/config_service_placeholders.d.ts +4 -2
  43. package/lib/core.js +1 -1
  44. package/package.json +1 -1
  45. package/apis/backupstorage-2018-04-10.min.json +0 -522
  46. package/apis/backupstorage-2018-04-10.paginators.json +0 -14
  47. package/clients/backupstorage.d.ts +0 -469
  48. package/clients/backupstorage.js +0 -18
  49. /package/apis/{backupstorage-2018-04-10.examples.json → apptest-2022-12-06.examples.json} +0 -0
@@ -0,0 +1,486 @@
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 PcaConnectorScep extends Service {
9
+ /**
10
+ * Constructs a service object. This object has one method for each API operation.
11
+ */
12
+ constructor(options?: PcaConnectorScep.Types.ClientConfiguration)
13
+ config: Config & PcaConnectorScep.Types.ClientConfiguration;
14
+ /**
15
+ * For general-purpose connectors. Creates a challenge password for the specified connector. The SCEP protocol uses a challenge password to authenticate a request before issuing a certificate from a certificate authority (CA). Your SCEP clients include the challenge password as part of their certificate request to Connector for SCEP. To retrieve the connector Amazon Resource Names (ARNs) for the connectors in your account, call ListConnectors. To create additional challenge passwords for the connector, call CreateChallenge again. We recommend frequently rotating your challenge passwords.
16
+ */
17
+ createChallenge(params: PcaConnectorScep.Types.CreateChallengeRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.CreateChallengeResponse) => void): Request<PcaConnectorScep.Types.CreateChallengeResponse, AWSError>;
18
+ /**
19
+ * For general-purpose connectors. Creates a challenge password for the specified connector. The SCEP protocol uses a challenge password to authenticate a request before issuing a certificate from a certificate authority (CA). Your SCEP clients include the challenge password as part of their certificate request to Connector for SCEP. To retrieve the connector Amazon Resource Names (ARNs) for the connectors in your account, call ListConnectors. To create additional challenge passwords for the connector, call CreateChallenge again. We recommend frequently rotating your challenge passwords.
20
+ */
21
+ createChallenge(callback?: (err: AWSError, data: PcaConnectorScep.Types.CreateChallengeResponse) => void): Request<PcaConnectorScep.Types.CreateChallengeResponse, AWSError>;
22
+ /**
23
+ * Creates a SCEP connector. A SCEP connector links Amazon Web Services Private Certificate Authority to your SCEP-compatible devices and mobile device management (MDM) systems. Before you create a connector, you must complete a set of prerequisites, including creation of a private certificate authority (CA) to use with this connector. For more information, see Connector for SCEP prerequisites.
24
+ */
25
+ createConnector(params: PcaConnectorScep.Types.CreateConnectorRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.CreateConnectorResponse) => void): Request<PcaConnectorScep.Types.CreateConnectorResponse, AWSError>;
26
+ /**
27
+ * Creates a SCEP connector. A SCEP connector links Amazon Web Services Private Certificate Authority to your SCEP-compatible devices and mobile device management (MDM) systems. Before you create a connector, you must complete a set of prerequisites, including creation of a private certificate authority (CA) to use with this connector. For more information, see Connector for SCEP prerequisites.
28
+ */
29
+ createConnector(callback?: (err: AWSError, data: PcaConnectorScep.Types.CreateConnectorResponse) => void): Request<PcaConnectorScep.Types.CreateConnectorResponse, AWSError>;
30
+ /**
31
+ * Deletes the specified Challenge.
32
+ */
33
+ deleteChallenge(params: PcaConnectorScep.Types.DeleteChallengeRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
34
+ /**
35
+ * Deletes the specified Challenge.
36
+ */
37
+ deleteChallenge(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
38
+ /**
39
+ * Deletes the specified Connector. This operation also deletes any challenges associated with the connector.
40
+ */
41
+ deleteConnector(params: PcaConnectorScep.Types.DeleteConnectorRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
42
+ /**
43
+ * Deletes the specified Connector. This operation also deletes any challenges associated with the connector.
44
+ */
45
+ deleteConnector(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
46
+ /**
47
+ * Retrieves the metadata for the specified Challenge.
48
+ */
49
+ getChallengeMetadata(params: PcaConnectorScep.Types.GetChallengeMetadataRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.GetChallengeMetadataResponse) => void): Request<PcaConnectorScep.Types.GetChallengeMetadataResponse, AWSError>;
50
+ /**
51
+ * Retrieves the metadata for the specified Challenge.
52
+ */
53
+ getChallengeMetadata(callback?: (err: AWSError, data: PcaConnectorScep.Types.GetChallengeMetadataResponse) => void): Request<PcaConnectorScep.Types.GetChallengeMetadataResponse, AWSError>;
54
+ /**
55
+ * Retrieves the challenge password for the specified Challenge.
56
+ */
57
+ getChallengePassword(params: PcaConnectorScep.Types.GetChallengePasswordRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.GetChallengePasswordResponse) => void): Request<PcaConnectorScep.Types.GetChallengePasswordResponse, AWSError>;
58
+ /**
59
+ * Retrieves the challenge password for the specified Challenge.
60
+ */
61
+ getChallengePassword(callback?: (err: AWSError, data: PcaConnectorScep.Types.GetChallengePasswordResponse) => void): Request<PcaConnectorScep.Types.GetChallengePasswordResponse, AWSError>;
62
+ /**
63
+ * Retrieves details about the specified Connector. Calling this action returns important details about the connector, such as the public SCEP URL where your clients can request certificates.
64
+ */
65
+ getConnector(params: PcaConnectorScep.Types.GetConnectorRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.GetConnectorResponse) => void): Request<PcaConnectorScep.Types.GetConnectorResponse, AWSError>;
66
+ /**
67
+ * Retrieves details about the specified Connector. Calling this action returns important details about the connector, such as the public SCEP URL where your clients can request certificates.
68
+ */
69
+ getConnector(callback?: (err: AWSError, data: PcaConnectorScep.Types.GetConnectorResponse) => void): Request<PcaConnectorScep.Types.GetConnectorResponse, AWSError>;
70
+ /**
71
+ * Retrieves the challenge metadata for the specified ARN.
72
+ */
73
+ listChallengeMetadata(params: PcaConnectorScep.Types.ListChallengeMetadataRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.ListChallengeMetadataResponse) => void): Request<PcaConnectorScep.Types.ListChallengeMetadataResponse, AWSError>;
74
+ /**
75
+ * Retrieves the challenge metadata for the specified ARN.
76
+ */
77
+ listChallengeMetadata(callback?: (err: AWSError, data: PcaConnectorScep.Types.ListChallengeMetadataResponse) => void): Request<PcaConnectorScep.Types.ListChallengeMetadataResponse, AWSError>;
78
+ /**
79
+ * Lists the connectors belonging to your Amazon Web Services account.
80
+ */
81
+ listConnectors(params: PcaConnectorScep.Types.ListConnectorsRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.ListConnectorsResponse) => void): Request<PcaConnectorScep.Types.ListConnectorsResponse, AWSError>;
82
+ /**
83
+ * Lists the connectors belonging to your Amazon Web Services account.
84
+ */
85
+ listConnectors(callback?: (err: AWSError, data: PcaConnectorScep.Types.ListConnectorsResponse) => void): Request<PcaConnectorScep.Types.ListConnectorsResponse, AWSError>;
86
+ /**
87
+ * Retrieves the tags associated with the specified resource. Tags are key-value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.
88
+ */
89
+ listTagsForResource(params: PcaConnectorScep.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: PcaConnectorScep.Types.ListTagsForResourceResponse) => void): Request<PcaConnectorScep.Types.ListTagsForResourceResponse, AWSError>;
90
+ /**
91
+ * Retrieves the tags associated with the specified resource. Tags are key-value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.
92
+ */
93
+ listTagsForResource(callback?: (err: AWSError, data: PcaConnectorScep.Types.ListTagsForResourceResponse) => void): Request<PcaConnectorScep.Types.ListTagsForResourceResponse, AWSError>;
94
+ /**
95
+ * Adds one or more tags to your resource.
96
+ */
97
+ tagResource(params: PcaConnectorScep.Types.TagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
98
+ /**
99
+ * Adds one or more tags to your resource.
100
+ */
101
+ tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
102
+ /**
103
+ * Removes one or more tags from your resource.
104
+ */
105
+ untagResource(params: PcaConnectorScep.Types.UntagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
106
+ /**
107
+ * Removes one or more tags from your resource.
108
+ */
109
+ untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
110
+ }
111
+ declare namespace PcaConnectorScep {
112
+ export type AzureApplicationId = string;
113
+ export type AzureDomain = string;
114
+ export type CertificateAuthorityArn = string;
115
+ export interface Challenge {
116
+ /**
117
+ * The Amazon Resource Name (ARN) of the challenge.
118
+ */
119
+ Arn?: ChallengeArn;
120
+ /**
121
+ * The Amazon Resource Name (ARN) of the connector.
122
+ */
123
+ ConnectorArn?: ConnectorArn;
124
+ /**
125
+ * The date and time that the challenge was created.
126
+ */
127
+ CreatedAt?: Timestamp;
128
+ /**
129
+ * The date and time that the challenge was updated.
130
+ */
131
+ UpdatedAt?: Timestamp;
132
+ /**
133
+ * The SCEP challenge password, in UUID format.
134
+ */
135
+ Password?: SensitiveString;
136
+ }
137
+ export type ChallengeArn = string;
138
+ export interface ChallengeMetadata {
139
+ /**
140
+ * The Amazon Resource Name (ARN) of the challenge.
141
+ */
142
+ Arn?: ChallengeArn;
143
+ /**
144
+ * The Amazon Resource Name (ARN) of the connector.
145
+ */
146
+ ConnectorArn?: ConnectorArn;
147
+ /**
148
+ * The date and time that the connector was created.
149
+ */
150
+ CreatedAt?: Timestamp;
151
+ /**
152
+ * The date and time that the connector was updated.
153
+ */
154
+ UpdatedAt?: Timestamp;
155
+ }
156
+ export type ChallengeMetadataList = ChallengeMetadataSummary[];
157
+ export interface ChallengeMetadataSummary {
158
+ /**
159
+ * The Amazon Resource Name (ARN) of the challenge.
160
+ */
161
+ Arn?: ChallengeArn;
162
+ /**
163
+ * The Amazon Resource Name (ARN) of the connector.
164
+ */
165
+ ConnectorArn?: ConnectorArn;
166
+ /**
167
+ * The date and time that the challenge was created.
168
+ */
169
+ CreatedAt?: Timestamp;
170
+ /**
171
+ * The date and time that the challenge was updated.
172
+ */
173
+ UpdatedAt?: Timestamp;
174
+ }
175
+ export type ClientToken = string;
176
+ export interface Connector {
177
+ /**
178
+ * The Amazon Resource Name (ARN) of the connector.
179
+ */
180
+ Arn?: ConnectorArn;
181
+ /**
182
+ * The Amazon Resource Name (ARN) of the certificate authority associated with the connector.
183
+ */
184
+ CertificateAuthorityArn?: CertificateAuthorityArn;
185
+ /**
186
+ * The connector type.
187
+ */
188
+ Type?: ConnectorType;
189
+ /**
190
+ * Contains settings relevant to the mobile device management system that you chose for the connector. If you didn't configure MobileDeviceManagement, then the connector is for general-purpose use and this object is empty.
191
+ */
192
+ MobileDeviceManagement?: MobileDeviceManagement;
193
+ /**
194
+ * Contains OpenID Connect (OIDC) parameters for use with Connector for SCEP for Microsoft Intune. For more information about using Connector for SCEP for Microsoft Intune, see Using Connector for SCEP for Microsoft Intune.
195
+ */
196
+ OpenIdConfiguration?: OpenIdConfiguration;
197
+ /**
198
+ * The connector's status.
199
+ */
200
+ Status?: ConnectorStatus;
201
+ /**
202
+ * Information about why connector creation failed, if status is FAILED.
203
+ */
204
+ StatusReason?: ConnectorStatusReason;
205
+ /**
206
+ * The connector's HTTPS public SCEP URL.
207
+ */
208
+ Endpoint?: String;
209
+ /**
210
+ * The date and time that the connector was created.
211
+ */
212
+ CreatedAt?: Timestamp;
213
+ /**
214
+ * The date and time that the connector was updated.
215
+ */
216
+ UpdatedAt?: Timestamp;
217
+ }
218
+ export type ConnectorArn = string;
219
+ export type ConnectorList = ConnectorSummary[];
220
+ export type ConnectorStatus = "CREATING"|"ACTIVE"|"DELETING"|"FAILED"|string;
221
+ export type ConnectorStatusReason = "INTERNAL_FAILURE"|"PRIVATECA_ACCESS_DENIED"|"PRIVATECA_INVALID_STATE"|"PRIVATECA_RESOURCE_NOT_FOUND"|string;
222
+ export interface ConnectorSummary {
223
+ /**
224
+ * The Amazon Resource Name (ARN) of the connector.
225
+ */
226
+ Arn?: ConnectorArn;
227
+ /**
228
+ * The Amazon Resource Name (ARN) of the connector's associated certificate authority.
229
+ */
230
+ CertificateAuthorityArn?: CertificateAuthorityArn;
231
+ /**
232
+ * The connector type.
233
+ */
234
+ Type?: ConnectorType;
235
+ /**
236
+ * Contains settings relevant to the mobile device management system that you chose for the connector. If you didn't configure MobileDeviceManagement, then the connector is for general-purpose use and this object is empty.
237
+ */
238
+ MobileDeviceManagement?: MobileDeviceManagement;
239
+ /**
240
+ * Contains OpenID Connect (OIDC) parameters for use with Microsoft Intune.
241
+ */
242
+ OpenIdConfiguration?: OpenIdConfiguration;
243
+ /**
244
+ * The connector's status. Status can be creating, active, deleting, or failed.
245
+ */
246
+ Status?: ConnectorStatus;
247
+ /**
248
+ * Information about why connector creation failed, if status is FAILED.
249
+ */
250
+ StatusReason?: ConnectorStatusReason;
251
+ /**
252
+ * The connector's HTTPS public SCEP URL.
253
+ */
254
+ Endpoint?: String;
255
+ /**
256
+ * The date and time that the challenge was created.
257
+ */
258
+ CreatedAt?: Timestamp;
259
+ /**
260
+ * The date and time that the challenge was updated.
261
+ */
262
+ UpdatedAt?: Timestamp;
263
+ }
264
+ export type ConnectorType = "GENERAL_PURPOSE"|"INTUNE"|string;
265
+ export interface CreateChallengeRequest {
266
+ /**
267
+ * The Amazon Resource Name (ARN) of the connector that you want to create a challenge for.
268
+ */
269
+ ConnectorArn: ConnectorArn;
270
+ /**
271
+ * Custom string that can be used to distinguish between calls to the CreateChallenge action. Client tokens for CreateChallenge time out after five minutes. Therefore, if you call CreateChallenge multiple times with the same client token within five minutes, Connector for SCEP recognizes that you are requesting only one challenge and will only respond with one. If you change the client token for each call, Connector for SCEP recognizes that you are requesting multiple challenge passwords.
272
+ */
273
+ ClientToken?: ClientToken;
274
+ /**
275
+ * The key-value pairs to associate with the resource.
276
+ */
277
+ Tags?: Tags;
278
+ }
279
+ export interface CreateChallengeResponse {
280
+ /**
281
+ * Returns the challenge details for the specified connector.
282
+ */
283
+ Challenge?: Challenge;
284
+ }
285
+ export interface CreateConnectorRequest {
286
+ /**
287
+ * The Amazon Resource Name (ARN) of the Amazon Web Services Private Certificate Authority certificate authority to use with this connector. Due to security vulnerabilities present in the SCEP protocol, we recommend using a private CA that's dedicated for use with the connector. To retrieve the private CAs associated with your account, you can call ListCertificateAuthorities using the Amazon Web Services Private CA API.
288
+ */
289
+ CertificateAuthorityArn: CertificateAuthorityArn;
290
+ /**
291
+ * If you don't supply a value, by default Connector for SCEP creates a connector for general-purpose use. A general-purpose connector is designed to work with clients or endpoints that support the SCEP protocol, except Connector for SCEP for Microsoft Intune. With connectors for general-purpose use, you manage SCEP challenge passwords using Connector for SCEP. For information about considerations and limitations with using Connector for SCEP, see Considerations and Limitations. If you provide an IntuneConfiguration, Connector for SCEP creates a connector for use with Microsoft Intune, and you manage the challenge passwords using Microsoft Intune. For more information, see Using Connector for SCEP for Microsoft Intune.
292
+ */
293
+ MobileDeviceManagement?: MobileDeviceManagement;
294
+ /**
295
+ * Custom string that can be used to distinguish between calls to the CreateChallenge action. Client tokens for CreateChallenge time out after five minutes. Therefore, if you call CreateChallenge multiple times with the same client token within five minutes, Connector for SCEP recognizes that you are requesting only one challenge and will only respond with one. If you change the client token for each call, Connector for SCEP recognizes that you are requesting multiple challenge passwords.
296
+ */
297
+ ClientToken?: ClientToken;
298
+ /**
299
+ * The key-value pairs to associate with the resource.
300
+ */
301
+ Tags?: Tags;
302
+ }
303
+ export interface CreateConnectorResponse {
304
+ /**
305
+ * Returns the Amazon Resource Name (ARN) of the connector.
306
+ */
307
+ ConnectorArn?: ConnectorArn;
308
+ }
309
+ export interface DeleteChallengeRequest {
310
+ /**
311
+ * The Amazon Resource Name (ARN) of the challenge password to delete.
312
+ */
313
+ ChallengeArn: ChallengeArn;
314
+ }
315
+ export interface DeleteConnectorRequest {
316
+ /**
317
+ * The Amazon Resource Name (ARN) of the connector to delete.
318
+ */
319
+ ConnectorArn: ConnectorArn;
320
+ }
321
+ export interface GetChallengeMetadataRequest {
322
+ /**
323
+ * The Amazon Resource Name (ARN) of the challenge.
324
+ */
325
+ ChallengeArn: ChallengeArn;
326
+ }
327
+ export interface GetChallengeMetadataResponse {
328
+ /**
329
+ * The metadata for the challenge.
330
+ */
331
+ ChallengeMetadata?: ChallengeMetadata;
332
+ }
333
+ export interface GetChallengePasswordRequest {
334
+ /**
335
+ * The Amazon Resource Name (ARN) of the challenge.
336
+ */
337
+ ChallengeArn: ChallengeArn;
338
+ }
339
+ export interface GetChallengePasswordResponse {
340
+ /**
341
+ * The SCEP challenge password.
342
+ */
343
+ Password?: SensitiveString;
344
+ }
345
+ export interface GetConnectorRequest {
346
+ /**
347
+ * The Amazon Resource Name (ARN) of the connector.
348
+ */
349
+ ConnectorArn: ConnectorArn;
350
+ }
351
+ export interface GetConnectorResponse {
352
+ /**
353
+ * The properties of the connector.
354
+ */
355
+ Connector?: Connector;
356
+ }
357
+ export interface IntuneConfiguration {
358
+ /**
359
+ * The directory (tenant) ID from your Microsoft Entra ID app registration.
360
+ */
361
+ AzureApplicationId: AzureApplicationId;
362
+ /**
363
+ * The primary domain from your Microsoft Entra ID app registration.
364
+ */
365
+ Domain: AzureDomain;
366
+ }
367
+ export interface ListChallengeMetadataRequest {
368
+ /**
369
+ * The maximum number of objects that you want Connector for SCEP to return for this request. If more objects are available, in the response, Connector for SCEP provides a NextToken value that you can use in a subsequent call to get the next batch of objects.
370
+ */
371
+ MaxResults?: MaxResults;
372
+ /**
373
+ * When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Connector for SCEP returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.
374
+ */
375
+ NextToken?: NextToken;
376
+ /**
377
+ * The Amazon Resource Name (ARN) of the connector.
378
+ */
379
+ ConnectorArn: ConnectorArn;
380
+ }
381
+ export interface ListChallengeMetadataResponse {
382
+ /**
383
+ * The challenge metadata for the challenges belonging to your Amazon Web Services account.
384
+ */
385
+ Challenges?: ChallengeMetadataList;
386
+ /**
387
+ * When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Connector for SCEP returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.
388
+ */
389
+ NextToken?: NextToken;
390
+ }
391
+ export interface ListConnectorsRequest {
392
+ /**
393
+ * The maximum number of objects that you want Connector for SCEP to return for this request. If more objects are available, in the response, Connector for SCEP provides a NextToken value that you can use in a subsequent call to get the next batch of objects.
394
+ */
395
+ MaxResults?: MaxResults;
396
+ /**
397
+ * When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Connector for SCEP returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.
398
+ */
399
+ NextToken?: NextToken;
400
+ }
401
+ export interface ListConnectorsResponse {
402
+ /**
403
+ * The connectors belonging to your Amazon Web Services account.
404
+ */
405
+ Connectors?: ConnectorList;
406
+ /**
407
+ * When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Connector for SCEP returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.
408
+ */
409
+ NextToken?: NextToken;
410
+ }
411
+ export interface ListTagsForResourceRequest {
412
+ /**
413
+ * The Amazon Resource Name (ARN) of the resource.
414
+ */
415
+ ResourceArn: String;
416
+ }
417
+ export interface ListTagsForResourceResponse {
418
+ /**
419
+ * The key-value pairs to associate with the resource.
420
+ */
421
+ Tags?: Tags;
422
+ }
423
+ export type MaxResults = number;
424
+ export interface MobileDeviceManagement {
425
+ /**
426
+ * Configuration settings for use with Microsoft Intune. For information about using Connector for SCEP for Microsoft Intune, see Using Connector for SCEP for Microsoft Intune.
427
+ */
428
+ Intune?: IntuneConfiguration;
429
+ }
430
+ export type NextToken = string;
431
+ export interface OpenIdConfiguration {
432
+ /**
433
+ * The issuer value to copy into your Microsoft Entra app registration's OIDC.
434
+ */
435
+ Issuer?: String;
436
+ /**
437
+ * The subject value to copy into your Microsoft Entra app registration's OIDC.
438
+ */
439
+ Subject?: String;
440
+ /**
441
+ * The audience value to copy into your Microsoft Entra app registration's OIDC.
442
+ */
443
+ Audience?: String;
444
+ }
445
+ export type SensitiveString = string;
446
+ export type String = string;
447
+ export type TagKeyList = String[];
448
+ export interface TagResourceRequest {
449
+ /**
450
+ * The Amazon Resource Name (ARN) of the resource.
451
+ */
452
+ ResourceArn: String;
453
+ /**
454
+ * The key-value pairs to associate with the resource.
455
+ */
456
+ Tags: Tags;
457
+ }
458
+ export type Tags = {[key: string]: String};
459
+ export type Timestamp = Date;
460
+ export interface UntagResourceRequest {
461
+ /**
462
+ * The Amazon Resource Name (ARN) of the resource.
463
+ */
464
+ ResourceArn: String;
465
+ /**
466
+ * Specifies a list of tag keys that you want to remove from the specified resources.
467
+ */
468
+ TagKeys: TagKeyList;
469
+ }
470
+ /**
471
+ * 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.
472
+ */
473
+ export type apiVersion = "2018-05-10"|"latest"|string;
474
+ export interface ClientApiVersions {
475
+ /**
476
+ * 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.
477
+ */
478
+ apiVersion?: apiVersion;
479
+ }
480
+ export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
481
+ /**
482
+ * Contains interfaces for use with the PcaConnectorScep client.
483
+ */
484
+ export import Types = PcaConnectorScep;
485
+ }
486
+ export = PcaConnectorScep;
@@ -0,0 +1,19 @@
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['pcaconnectorscep'] = {};
7
+ AWS.PcaConnectorScep = Service.defineService('pcaconnectorscep', ['2018-05-10']);
8
+ Object.defineProperty(apiLoader.services['pcaconnectorscep'], '2018-05-10', {
9
+ get: function get() {
10
+ var model = require('../apis/pca-connector-scep-2018-05-10.min.json');
11
+ model.paginators = require('../apis/pca-connector-scep-2018-05-10.paginators.json').pagination;
12
+ model.waiters = require('../apis/pca-connector-scep-2018-05-10.waiters2.json').waiters;
13
+ return model;
14
+ },
15
+ enumerable: true,
16
+ configurable: true
17
+ });
18
+
19
+ module.exports = AWS.PcaConnectorScep;
@@ -1001,11 +1001,11 @@ declare class Redshift extends Service {
1001
1001
  */
1002
1002
  resetClusterParameterGroup(callback?: (err: AWSError, data: Redshift.Types.ClusterParameterGroupNameMessage) => void): Request<Redshift.Types.ClusterParameterGroupNameMessage, AWSError>;
1003
1003
  /**
1004
- * Changes the size of the cluster. You can change the cluster's type, or change the number or type of nodes. The default behavior is to use the elastic resize method. With an elastic resize, your cluster is available for read and write operations more quickly than with the classic resize method. Elastic resize operations have the following restrictions: You can only resize clusters of the following types: dc1.large (if your cluster is in a VPC) dc1.8xlarge (if your cluster is in a VPC) dc2.large dc2.8xlarge ds2.xlarge ds2.8xlarge ra3.xlplus ra3.4xlarge ra3.16xlarge The type of nodes that you add must match the node type for the cluster.
1004
+ * Changes the size of the cluster. You can change the cluster's type, or change the number or type of nodes. The default behavior is to use the elastic resize method. With an elastic resize, your cluster is available for read and write operations more quickly than with the classic resize method. Elastic resize operations have the following restrictions: You can only resize clusters of the following types: dc2.large dc2.8xlarge ra3.xlplus ra3.4xlarge ra3.16xlarge The type of nodes that you add must match the node type for the cluster.
1005
1005
  */
1006
1006
  resizeCluster(params: Redshift.Types.ResizeClusterMessage, callback?: (err: AWSError, data: Redshift.Types.ResizeClusterResult) => void): Request<Redshift.Types.ResizeClusterResult, AWSError>;
1007
1007
  /**
1008
- * Changes the size of the cluster. You can change the cluster's type, or change the number or type of nodes. The default behavior is to use the elastic resize method. With an elastic resize, your cluster is available for read and write operations more quickly than with the classic resize method. Elastic resize operations have the following restrictions: You can only resize clusters of the following types: dc1.large (if your cluster is in a VPC) dc1.8xlarge (if your cluster is in a VPC) dc2.large dc2.8xlarge ds2.xlarge ds2.8xlarge ra3.xlplus ra3.4xlarge ra3.16xlarge The type of nodes that you add must match the node type for the cluster.
1008
+ * Changes the size of the cluster. You can change the cluster's type, or change the number or type of nodes. The default behavior is to use the elastic resize method. With an elastic resize, your cluster is available for read and write operations more quickly than with the classic resize method. Elastic resize operations have the following restrictions: You can only resize clusters of the following types: dc2.large dc2.8xlarge ra3.xlplus ra3.4xlarge ra3.16xlarge The type of nodes that you add must match the node type for the cluster.
1009
1009
  */
1010
1010
  resizeCluster(callback?: (err: AWSError, data: Redshift.Types.ResizeClusterResult) => void): Request<Redshift.Types.ResizeClusterResult, AWSError>;
1011
1011
  /**
@@ -1988,7 +1988,7 @@ declare namespace Redshift {
1988
1988
  */
1989
1989
  ClusterType?: String;
1990
1990
  /**
1991
- * The node type to be provisioned for the cluster. For information about node types, go to Working with Clusters in the Amazon Redshift Cluster Management Guide. Valid Values: ds2.xlarge | ds2.8xlarge | dc1.large | dc1.8xlarge | dc2.large | dc2.8xlarge | ra3.xlplus | ra3.4xlarge | ra3.16xlarge
1991
+ * The node type to be provisioned for the cluster. For information about node types, go to Working with Clusters in the Amazon Redshift Cluster Management Guide. Valid Values: dc2.large | dc2.8xlarge | ra3.xlplus | ra3.4xlarge | ra3.16xlarge
1992
1992
  */
1993
1993
  NodeType: String;
1994
1994
  /**
@@ -2032,7 +2032,7 @@ declare namespace Redshift {
2032
2032
  */
2033
2033
  ManualSnapshotRetentionPeriod?: IntegerOptional;
2034
2034
  /**
2035
- * The port number on which the cluster accepts incoming connections. The cluster is accessible only via the JDBC and ODBC connection strings. Part of the connection string requires the port on which the cluster will listen for incoming connections. Default: 5439 Valid Values: For clusters with ra3 nodes - Select a port within the ranges 5431-5455 or 8191-8215. (If you have an existing cluster with ra3 nodes, it isn't required that you change the port to these ranges.) For clusters with ds2 or dc2 nodes - Select a port within the range 1150-65535.
2035
+ * The port number on which the cluster accepts incoming connections. The cluster is accessible only via the JDBC and ODBC connection strings. Part of the connection string requires the port on which the cluster will listen for incoming connections. Default: 5439 Valid Values: For clusters with ra3 nodes - Select a port within the ranges 5431-5455 or 8191-8215. (If you have an existing cluster with ra3 nodes, it isn't required that you change the port to these ranges.) For clusters with dc2 nodes - Select a port within the range 1150-65535.
2036
2036
  */
2037
2037
  Port?: IntegerOptional;
2038
2038
  /**
@@ -4465,7 +4465,7 @@ declare namespace Redshift {
4465
4465
  */
4466
4466
  ClusterType?: String;
4467
4467
  /**
4468
- * The new node type of the cluster. If you specify a new node type, you must also specify the number of nodes parameter. For more information about resizing clusters, go to Resizing Clusters in Amazon Redshift in the Amazon Redshift Cluster Management Guide. Valid Values: ds2.xlarge | ds2.8xlarge | dc1.large | dc1.8xlarge | dc2.large | dc2.8xlarge | ra3.xlplus | ra3.4xlarge | ra3.16xlarge
4468
+ * The new node type of the cluster. If you specify a new node type, you must also specify the number of nodes parameter. For more information about resizing clusters, go to Resizing Clusters in Amazon Redshift in the Amazon Redshift Cluster Management Guide. Valid Values: dc2.large | dc2.8xlarge | ra3.xlplus | ra3.4xlarge | ra3.16xlarge
4469
4469
  */
4470
4470
  NodeType?: String;
4471
4471
  /**
@@ -4553,7 +4553,7 @@ declare namespace Redshift {
4553
4553
  */
4554
4554
  AvailabilityZone?: String;
4555
4555
  /**
4556
- * The option to change the port of an Amazon Redshift cluster. Valid Values: For clusters with ra3 nodes - Select a port within the ranges 5431-5455 or 8191-8215. (If you have an existing cluster with ra3 nodes, it isn't required that you change the port to these ranges.) For clusters with ds2 or dc2 nodes - Select a port within the range 1150-65535.
4556
+ * The option to change the port of an Amazon Redshift cluster. Valid Values: For clusters with ra3 nodes - Select a port within the ranges 5431-5455 or 8191-8215. (If you have an existing cluster with ra3 nodes, it isn't required that you change the port to these ranges.) For clusters with dc2 nodes - Select a port within the range 1150-65535.
4557
4557
  */
4558
4558
  Port?: IntegerOptional;
4559
4559
  /**
@@ -4838,7 +4838,7 @@ declare namespace Redshift {
4838
4838
  export type NetworkInterfaceList = NetworkInterface[];
4839
4839
  export interface NodeConfigurationOption {
4840
4840
  /**
4841
- * The node type, such as, "ds2.8xlarge".
4841
+ * The node type, such as, "ra3.4xlarge".
4842
4842
  */
4843
4843
  NodeType?: String;
4844
4844
  /**
@@ -5332,7 +5332,7 @@ declare namespace Redshift {
5332
5332
  */
5333
5333
  SourceReservedNodeId?: String;
5334
5334
  /**
5335
- * The source reserved-node type, for example ds2.xlarge.
5335
+ * The source reserved-node type, for example ra3.4xlarge.
5336
5336
  */
5337
5337
  SourceReservedNodeType?: String;
5338
5338
  /**
@@ -5567,7 +5567,7 @@ declare namespace Redshift {
5567
5567
  */
5568
5568
  SnapshotClusterIdentifier?: String;
5569
5569
  /**
5570
- * The port number on which the cluster accepts connections. Default: The same port as the original cluster. Valid values: For clusters with ds2 or dc2 nodes, must be within the range 1150-65535. For clusters with ra3 nodes, must be within the ranges 5431-5455 or 8191-8215.
5570
+ * The port number on which the cluster accepts connections. Default: The same port as the original cluster. Valid values: For clusters with DC2 nodes, must be within the range 1150-65535. For clusters with ra3 nodes, must be within the ranges 5431-5455 or 8191-8215.
5571
5571
  */
5572
5572
  Port?: IntegerOptional;
5573
5573
  /**
@@ -5631,7 +5631,7 @@ declare namespace Redshift {
5631
5631
  */
5632
5632
  KmsKeyId?: String;
5633
5633
  /**
5634
- * The node type that the restored cluster will be provisioned with. Default: The node type of the cluster from which the snapshot was taken. You can modify this if you are using any DS node type. In that case, you can choose to restore into another DS node type of the same size. For example, you can restore ds1.8xlarge into ds2.8xlarge, or ds1.xlarge into ds2.xlarge. If you have a DC instance type, you must restore into that same instance type and size. In other words, you can only restore a dc1.large instance type into another dc1.large instance type or dc2.large instance type. You can't restore dc1.8xlarge to dc2.8xlarge. First restore to a dc1.8xlarge cluster, then resize to a dc2.8large cluster. For more information about node types, see About Clusters and Nodes in the Amazon Redshift Cluster Management Guide.
5634
+ * The node type that the restored cluster will be provisioned with. If you have a DC instance type, you must restore into that same instance type and size. In other words, you can only restore a dc2.large node type into another dc2 type. For more information about node types, see About Clusters and Nodes in the Amazon Redshift Cluster Management Guide.
5635
5635
  */
5636
5636
  NodeType?: String;
5637
5637
  /**
@@ -5708,23 +5708,23 @@ declare namespace Redshift {
5708
5708
  */
5709
5709
  Status?: String;
5710
5710
  /**
5711
- * The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.
5711
+ * The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 node types.
5712
5712
  */
5713
5713
  CurrentRestoreRateInMegaBytesPerSecond?: Double;
5714
5714
  /**
5715
- * The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.
5715
+ * The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 node types.
5716
5716
  */
5717
5717
  SnapshotSizeInMegaBytes?: Long;
5718
5718
  /**
5719
- * The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.
5719
+ * The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 node types.
5720
5720
  */
5721
5721
  ProgressInMegaBytes?: Long;
5722
5722
  /**
5723
- * The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.
5723
+ * The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 node types.
5724
5724
  */
5725
5725
  ElapsedTimeInSeconds?: Long;
5726
5726
  /**
5727
- * The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.
5727
+ * The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 node types.
5728
5728
  */
5729
5729
  EstimatedTimeToCompletionInSeconds?: Long;
5730
5730
  }
@@ -5870,7 +5870,7 @@ declare namespace Redshift {
5870
5870
  */
5871
5871
  ScheduledActionName?: String;
5872
5872
  /**
5873
- * A JSON format string of the Amazon Redshift API operation with input parameters. "{\"ResizeCluster\":{\"NodeType\":\"ds2.8xlarge\",\"ClusterIdentifier\":\"my-test-cluster\",\"NumberOfNodes\":3}}".
5873
+ * A JSON format string of the Amazon Redshift API operation with input parameters. "{\"ResizeCluster\":{\"NodeType\":\"ra3.4xlarge\",\"ClusterIdentifier\":\"my-test-cluster\",\"NumberOfNodes\":3}}".
5874
5874
  */
5875
5875
  TargetAction?: ScheduledActionType;
5876
5876
  /**