aws-sdk 2.1656.0 → 2.1658.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/batch-2016-08-10.min.json +62 -52
- package/apis/bedrock-2023-04-20.min.json +140 -86
- package/apis/bedrock-agent-2023-06-05.min.json +1991 -171
- package/apis/bedrock-agent-2023-06-05.paginators.json +24 -0
- package/apis/bedrock-agent-runtime-2023-07-26.min.json +642 -216
- package/apis/bedrock-agent-runtime-2023-07-26.paginators.json +6 -0
- package/apis/bedrock-runtime-2023-09-30.min.json +329 -192
- package/apis/datazone-2018-05-10.min.json +8 -2
- package/apis/ec2-2016-11-15.min.json +79 -67
- package/apis/fsx-2018-03-01.min.json +7 -1
- package/apis/glue-2017-03-31.min.json +407 -368
- package/apis/groundstation-2019-05-23.min.json +7 -1
- package/apis/license-manager-linux-subscriptions-2018-05-10.min.json +236 -16
- package/apis/license-manager-linux-subscriptions-2018-05-10.paginators.json +6 -0
- package/apis/mediaconnect-2018-11-14.min.json +106 -94
- package/apis/opensearch-2021-01-01.min.json +141 -98
- package/apis/sagemaker-2017-07-24.min.json +1129 -801
- package/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/clients/batch.d.ts +12 -0
- package/clients/bedrock.d.ts +63 -14
- package/clients/bedrockagent.d.ts +2172 -171
- package/clients/bedrockagentruntime.d.ts +396 -11
- package/clients/bedrockruntime.d.ts +149 -6
- package/clients/ec2.d.ts +28 -3
- package/clients/fsx.d.ts +22 -18
- package/clients/glue.d.ts +48 -1
- package/clients/licensemanagerlinuxsubscriptions.d.ts +249 -10
- package/clients/mediaconnect.d.ts +13 -0
- package/clients/opensearch.d.ts +53 -0
- package/clients/sagemaker.d.ts +389 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +19 -19
- package/dist/aws-sdk.js +82 -70
- package/dist/aws-sdk.min.js +76 -76
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -12,6 +12,14 @@ declare class BedrockRuntime extends Service {
|
|
12
12
|
*/
|
13
13
|
constructor(options?: BedrockRuntime.Types.ClientConfiguration)
|
14
14
|
config: Config & BedrockRuntime.Types.ClientConfiguration;
|
15
|
+
/**
|
16
|
+
* The action to apply a guardrail.
|
17
|
+
*/
|
18
|
+
applyGuardrail(params: BedrockRuntime.Types.ApplyGuardrailRequest, callback?: (err: AWSError, data: BedrockRuntime.Types.ApplyGuardrailResponse) => void): Request<BedrockRuntime.Types.ApplyGuardrailResponse, AWSError>;
|
19
|
+
/**
|
20
|
+
* The action to apply a guardrail.
|
21
|
+
*/
|
22
|
+
applyGuardrail(callback?: (err: AWSError, data: BedrockRuntime.Types.ApplyGuardrailResponse) => void): Request<BedrockRuntime.Types.ApplyGuardrailResponse, AWSError>;
|
15
23
|
/**
|
16
24
|
* Sends messages to the specified Amazon Bedrock model. Converse provides a consistent interface that works with all models that support messages. This allows you to write code once and use it with different models. Should a model have unique inference parameters, you can also pass those unique parameters to the model. For information about the Converse API, see Use the Converse API in the Amazon Bedrock User Guide. To use a guardrail, see Use a guardrail with the Converse API in the Amazon Bedrock User Guide. To use a tool with a model, see Tool use (Function calling) in the Amazon Bedrock User Guide For example code, see Converse API examples in the Amazon Bedrock User Guide. This operation requires permission for the bedrock:InvokeModel action.
|
17
25
|
*/
|
@@ -48,6 +56,42 @@ declare class BedrockRuntime extends Service {
|
|
48
56
|
declare namespace BedrockRuntime {
|
49
57
|
export interface AnyToolChoice {
|
50
58
|
}
|
59
|
+
export interface ApplyGuardrailRequest {
|
60
|
+
/**
|
61
|
+
* The guardrail identifier used in the request to apply the guardrail.
|
62
|
+
*/
|
63
|
+
guardrailIdentifier: GuardrailIdentifier;
|
64
|
+
/**
|
65
|
+
* The guardrail version used in the request to apply the guardrail.
|
66
|
+
*/
|
67
|
+
guardrailVersion: GuardrailVersion;
|
68
|
+
/**
|
69
|
+
* The source of data used in the request to apply the guardrail.
|
70
|
+
*/
|
71
|
+
source: GuardrailContentSource;
|
72
|
+
/**
|
73
|
+
* The content details used in the request to apply the guardrail.
|
74
|
+
*/
|
75
|
+
content: GuardrailContentBlockList;
|
76
|
+
}
|
77
|
+
export interface ApplyGuardrailResponse {
|
78
|
+
/**
|
79
|
+
* The usage details in the response from the guardrail.
|
80
|
+
*/
|
81
|
+
usage: GuardrailUsage;
|
82
|
+
/**
|
83
|
+
* The action taken in the response from the guardrail.
|
84
|
+
*/
|
85
|
+
action: GuardrailAction;
|
86
|
+
/**
|
87
|
+
* The output details in the response from the guardrail.
|
88
|
+
*/
|
89
|
+
outputs: GuardrailOutputContentList;
|
90
|
+
/**
|
91
|
+
* The assessment details in the response from the guardrail.
|
92
|
+
*/
|
93
|
+
assessments: GuardrailAssessmentList;
|
94
|
+
}
|
51
95
|
export interface AutoToolChoice {
|
52
96
|
}
|
53
97
|
export type Body = Buffer|Uint8Array|Blob|string;
|
@@ -65,7 +109,7 @@ declare namespace BedrockRuntime {
|
|
65
109
|
*/
|
66
110
|
document?: DocumentBlock;
|
67
111
|
/**
|
68
|
-
* Information about a tool use request from a model.
|
112
|
+
* Information about a tool use request from a model.
|
69
113
|
*/
|
70
114
|
toolUse?: ToolUseBlock;
|
71
115
|
/**
|
@@ -279,7 +323,7 @@ declare namespace BedrockRuntime {
|
|
279
323
|
*/
|
280
324
|
format: DocumentFormat;
|
281
325
|
/**
|
282
|
-
* A name for the document.
|
326
|
+
* A name for the document. The name can only contain the following characters: Alphanumeric characters Whitespace characters (no more than one in a row) Hyphens Parentheses Square brackets This field is vulnerable to prompt injections, because the model might inadvertently interpret it as instructions. Therefore, we recommend that you specify a neutral name.
|
283
327
|
*/
|
284
328
|
name: DocumentBlockNameString;
|
285
329
|
/**
|
@@ -291,11 +335,12 @@ declare namespace BedrockRuntime {
|
|
291
335
|
export type DocumentFormat = "pdf"|"csv"|"doc"|"docx"|"xls"|"xlsx"|"html"|"txt"|"md"|string;
|
292
336
|
export interface DocumentSource {
|
293
337
|
/**
|
294
|
-
*
|
338
|
+
* The raw bytes for the document. If you use an Amazon Web Services SDK, you don't need to encode the bytes in base64.
|
295
339
|
*/
|
296
340
|
bytes?: DocumentSourceBytesBlob;
|
297
341
|
}
|
298
342
|
export type DocumentSourceBytesBlob = Buffer|Uint8Array|Blob|string;
|
343
|
+
export type GuardrailAction = "NONE"|"GUARDRAIL_INTERVENED"|string;
|
299
344
|
export interface GuardrailAssessment {
|
300
345
|
/**
|
301
346
|
* The topic policy.
|
@@ -313,6 +358,10 @@ declare namespace BedrockRuntime {
|
|
313
358
|
* The sensitive information policy.
|
314
359
|
*/
|
315
360
|
sensitiveInformationPolicy?: GuardrailSensitiveInformationPolicyAssessment;
|
361
|
+
/**
|
362
|
+
* The contextual grounding policy used for the guardrail assessment.
|
363
|
+
*/
|
364
|
+
contextualGroundingPolicy?: GuardrailContextualGroundingPolicyAssessment;
|
316
365
|
}
|
317
366
|
export type GuardrailAssessmentList = GuardrailAssessment[];
|
318
367
|
export type GuardrailAssessmentListMap = {[key: string]: GuardrailAssessmentList};
|
@@ -331,6 +380,13 @@ declare namespace BedrockRuntime {
|
|
331
380
|
*/
|
332
381
|
trace?: GuardrailTrace;
|
333
382
|
}
|
383
|
+
export interface GuardrailContentBlock {
|
384
|
+
/**
|
385
|
+
* Text within content block to be evaluated by the guardrail.
|
386
|
+
*/
|
387
|
+
text?: GuardrailTextBlock;
|
388
|
+
}
|
389
|
+
export type GuardrailContentBlockList = GuardrailContentBlock[];
|
334
390
|
export interface GuardrailContentFilter {
|
335
391
|
/**
|
336
392
|
* The guardrail type.
|
@@ -355,17 +411,57 @@ declare namespace BedrockRuntime {
|
|
355
411
|
*/
|
356
412
|
filters: GuardrailContentFilterList;
|
357
413
|
}
|
414
|
+
export type GuardrailContentPolicyUnitsProcessed = number;
|
415
|
+
export type GuardrailContentQualifier = "grounding_source"|"query"|"guard_content"|string;
|
416
|
+
export type GuardrailContentQualifierList = GuardrailContentQualifier[];
|
417
|
+
export type GuardrailContentSource = "INPUT"|"OUTPUT"|string;
|
418
|
+
export interface GuardrailContextualGroundingFilter {
|
419
|
+
/**
|
420
|
+
* The contextual grounding filter type.
|
421
|
+
*/
|
422
|
+
type: GuardrailContextualGroundingFilterType;
|
423
|
+
/**
|
424
|
+
* The threshold used by contextual grounding filter to determine whether the content is grounded or not.
|
425
|
+
*/
|
426
|
+
threshold: GuardrailContextualGroundingFilterThresholdDouble;
|
427
|
+
/**
|
428
|
+
* The score generated by contextual grounding filter.
|
429
|
+
*/
|
430
|
+
score: GuardrailContextualGroundingFilterScoreDouble;
|
431
|
+
/**
|
432
|
+
* The action performed by the guardrails contextual grounding filter.
|
433
|
+
*/
|
434
|
+
action: GuardrailContextualGroundingPolicyAction;
|
435
|
+
}
|
436
|
+
export type GuardrailContextualGroundingFilterScoreDouble = number;
|
437
|
+
export type GuardrailContextualGroundingFilterThresholdDouble = number;
|
438
|
+
export type GuardrailContextualGroundingFilterType = "GROUNDING"|"RELEVANCE"|string;
|
439
|
+
export type GuardrailContextualGroundingFilters = GuardrailContextualGroundingFilter[];
|
440
|
+
export type GuardrailContextualGroundingPolicyAction = "BLOCKED"|"NONE"|string;
|
441
|
+
export interface GuardrailContextualGroundingPolicyAssessment {
|
442
|
+
/**
|
443
|
+
* The filter details for the guardrails contextual grounding filter.
|
444
|
+
*/
|
445
|
+
filters?: GuardrailContextualGroundingFilters;
|
446
|
+
}
|
447
|
+
export type GuardrailContextualGroundingPolicyUnitsProcessed = number;
|
358
448
|
export interface GuardrailConverseContentBlock {
|
359
449
|
/**
|
360
450
|
* The text to guard.
|
361
451
|
*/
|
362
452
|
text?: GuardrailConverseTextBlock;
|
363
453
|
}
|
454
|
+
export type GuardrailConverseContentQualifier = "grounding_source"|"query"|"guard_content"|string;
|
455
|
+
export type GuardrailConverseContentQualifierList = GuardrailConverseContentQualifier[];
|
364
456
|
export interface GuardrailConverseTextBlock {
|
365
457
|
/**
|
366
458
|
* The text that you want to guard.
|
367
459
|
*/
|
368
460
|
text: String;
|
461
|
+
/**
|
462
|
+
* The qualifier details for the guardrails contextual grounding filter.
|
463
|
+
*/
|
464
|
+
qualifiers?: GuardrailConverseContentQualifierList;
|
369
465
|
}
|
370
466
|
export interface GuardrailCustomWord {
|
371
467
|
/**
|
@@ -395,6 +491,13 @@ declare namespace BedrockRuntime {
|
|
395
491
|
}
|
396
492
|
export type GuardrailManagedWordList = GuardrailManagedWord[];
|
397
493
|
export type GuardrailManagedWordType = "PROFANITY"|string;
|
494
|
+
export interface GuardrailOutputContent {
|
495
|
+
/**
|
496
|
+
* The specific text for the output content produced by the guardrail.
|
497
|
+
*/
|
498
|
+
text?: GuardrailOutputText;
|
499
|
+
}
|
500
|
+
export type GuardrailOutputContentList = GuardrailOutputContent[];
|
398
501
|
export type GuardrailOutputText = string;
|
399
502
|
export interface GuardrailPiiEntityFilter {
|
400
503
|
/**
|
@@ -442,6 +545,8 @@ declare namespace BedrockRuntime {
|
|
442
545
|
*/
|
443
546
|
regexes: GuardrailRegexFilterList;
|
444
547
|
}
|
548
|
+
export type GuardrailSensitiveInformationPolicyFreeUnitsProcessed = number;
|
549
|
+
export type GuardrailSensitiveInformationPolicyUnitsProcessed = number;
|
445
550
|
export interface GuardrailStreamConfiguration {
|
446
551
|
/**
|
447
552
|
* The identifier for the guardrail.
|
@@ -461,6 +566,16 @@ declare namespace BedrockRuntime {
|
|
461
566
|
streamProcessingMode?: GuardrailStreamProcessingMode;
|
462
567
|
}
|
463
568
|
export type GuardrailStreamProcessingMode = "sync"|"async"|string;
|
569
|
+
export interface GuardrailTextBlock {
|
570
|
+
/**
|
571
|
+
* The input text details to be evaluated by the guardrail.
|
572
|
+
*/
|
573
|
+
text: String;
|
574
|
+
/**
|
575
|
+
* The qualifiers describing the text block.
|
576
|
+
*/
|
577
|
+
qualifiers?: GuardrailContentQualifierList;
|
578
|
+
}
|
464
579
|
export interface GuardrailTopic {
|
465
580
|
/**
|
466
581
|
* The name for the guardrail.
|
@@ -483,6 +598,7 @@ declare namespace BedrockRuntime {
|
|
483
598
|
*/
|
484
599
|
topics: GuardrailTopicList;
|
485
600
|
}
|
601
|
+
export type GuardrailTopicPolicyUnitsProcessed = number;
|
486
602
|
export type GuardrailTopicType = "DENY"|string;
|
487
603
|
export type GuardrailTrace = "enabled"|"disabled"|string;
|
488
604
|
export interface GuardrailTraceAssessment {
|
@@ -499,6 +615,32 @@ declare namespace BedrockRuntime {
|
|
499
615
|
*/
|
500
616
|
outputAssessments?: GuardrailAssessmentListMap;
|
501
617
|
}
|
618
|
+
export interface GuardrailUsage {
|
619
|
+
/**
|
620
|
+
* The topic policy units processed by the guardrail.
|
621
|
+
*/
|
622
|
+
topicPolicyUnits: GuardrailTopicPolicyUnitsProcessed;
|
623
|
+
/**
|
624
|
+
* The content policy units processed by the guardrail.
|
625
|
+
*/
|
626
|
+
contentPolicyUnits: GuardrailContentPolicyUnitsProcessed;
|
627
|
+
/**
|
628
|
+
* The word policy units processed by the guardrail.
|
629
|
+
*/
|
630
|
+
wordPolicyUnits: GuardrailWordPolicyUnitsProcessed;
|
631
|
+
/**
|
632
|
+
* The sensitive information policy units processed by the guardrail.
|
633
|
+
*/
|
634
|
+
sensitiveInformationPolicyUnits: GuardrailSensitiveInformationPolicyUnitsProcessed;
|
635
|
+
/**
|
636
|
+
* The sensitive information policy free units processed by the guardrail.
|
637
|
+
*/
|
638
|
+
sensitiveInformationPolicyFreeUnits: GuardrailSensitiveInformationPolicyFreeUnitsProcessed;
|
639
|
+
/**
|
640
|
+
* The contextual grounding policy units processed by the guardrail.
|
641
|
+
*/
|
642
|
+
contextualGroundingPolicyUnits: GuardrailContextualGroundingPolicyUnitsProcessed;
|
643
|
+
}
|
502
644
|
export type GuardrailVersion = string;
|
503
645
|
export type GuardrailWordPolicyAction = "BLOCKED"|string;
|
504
646
|
export interface GuardrailWordPolicyAssessment {
|
@@ -511,6 +653,7 @@ declare namespace BedrockRuntime {
|
|
511
653
|
*/
|
512
654
|
managedWordLists: GuardrailManagedWordList;
|
513
655
|
}
|
656
|
+
export type GuardrailWordPolicyUnitsProcessed = number;
|
514
657
|
export interface ImageBlock {
|
515
658
|
/**
|
516
659
|
* The format of the image.
|
@@ -524,7 +667,7 @@ declare namespace BedrockRuntime {
|
|
524
667
|
export type ImageFormat = "png"|"jpeg"|"gif"|"webp"|string;
|
525
668
|
export interface ImageSource {
|
526
669
|
/**
|
527
|
-
* The raw image bytes for the image. If you use an AWS SDK, you don't need to
|
670
|
+
* The raw image bytes for the image. If you use an AWS SDK, you don't need to encode the image bytes in base64.
|
528
671
|
*/
|
529
672
|
bytes?: ImageSourceBytesBlob;
|
530
673
|
}
|
@@ -642,7 +785,7 @@ declare namespace BedrockRuntime {
|
|
642
785
|
*/
|
643
786
|
role: ConversationRole;
|
644
787
|
/**
|
645
|
-
* The message content.
|
788
|
+
* The message content. Note the following restrictions: You can include up to 20 images. Each image's size, height, and width must be no more than 3.75 MB, 8000 px, and 8000 px, respectively. You can include up to five documents. Each document's size must be no more than 4.5 MB. If you include a ContentBlock with a document field in the array, you must also include a ContentBlock with a text field. You can only include images and documents if the role is user.
|
646
789
|
*/
|
647
790
|
content: ContentBlocks;
|
648
791
|
}
|
@@ -705,7 +848,7 @@ declare namespace BedrockRuntime {
|
|
705
848
|
*/
|
706
849
|
text?: NonEmptyString;
|
707
850
|
/**
|
708
|
-
* A content block to assess with the guardrail. Use with the Converse
|
851
|
+
* A content block to assess with the guardrail. Use with the Converse or ConverseStream API operations. For more information, see Use a guardrail with the Converse API in the Amazon Bedrock User Guide.
|
709
852
|
*/
|
710
853
|
guardContent?: GuardrailConverseContentBlock;
|
711
854
|
}
|
package/clients/ec2.d.ts
CHANGED
@@ -9650,7 +9650,7 @@ declare namespace EC2 {
|
|
9650
9650
|
*/
|
9651
9651
|
IpamScopeId: IpamScopeId;
|
9652
9652
|
/**
|
9653
|
-
* In IPAM, the locale is the Amazon Web Services Region
|
9653
|
+
* In IPAM, the locale is the Amazon Web Services Region or, for IPAM IPv4 pools in the public scope, the network border group for an Amazon Web Services Local Zone where you want to make an IPAM pool available for allocations (supported Local Zones). If you do not choose a locale, resources in Regions others than the IPAM's home region cannot use CIDRs from this pool. Possible values: Any Amazon Web Services Region, such as us-east-1.
|
9654
9654
|
*/
|
9655
9655
|
Locale?: String;
|
9656
9656
|
/**
|
@@ -10405,6 +10405,10 @@ declare namespace EC2 {
|
|
10405
10405
|
* The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.
|
10406
10406
|
*/
|
10407
10407
|
TagSpecifications?: TagSpecificationList;
|
10408
|
+
/**
|
10409
|
+
* The Availability Zone (AZ) or Local Zone (LZ) network border group that the resource that the IP address is assigned to is in. Defaults to an AZ network border group. For more information on available Local Zones, see Local Zone availability in the Amazon EC2 User Guide.
|
10410
|
+
*/
|
10411
|
+
NetworkBorderGroup?: String;
|
10408
10412
|
}
|
10409
10413
|
export interface CreatePublicIpv4PoolResult {
|
10410
10414
|
/**
|
@@ -12819,6 +12823,10 @@ declare namespace EC2 {
|
|
12819
12823
|
* The ID of the public IPv4 pool you want to delete.
|
12820
12824
|
*/
|
12821
12825
|
PoolId: Ipv4PoolEc2Id;
|
12826
|
+
/**
|
12827
|
+
* The Availability Zone (AZ) or Local Zone (LZ) network border group that the resource that the IP address is assigned to is in. Defaults to an AZ network border group. For more information on available Local Zones, see Local Zone availability in the Amazon EC2 User Guide.
|
12828
|
+
*/
|
12829
|
+
NetworkBorderGroup?: String;
|
12822
12830
|
}
|
12823
12831
|
export interface DeletePublicIpv4PoolResult {
|
12824
12832
|
/**
|
@@ -25860,7 +25868,7 @@ declare namespace EC2 {
|
|
25860
25868
|
*/
|
25861
25869
|
Tags?: IpamPublicAddressTags;
|
25862
25870
|
/**
|
25863
|
-
* The network border group that the resource that the IP address is assigned to is in.
|
25871
|
+
* The Availability Zone (AZ) or Local Zone (LZ) network border group that the resource that the IP address is assigned to is in. Defaults to an AZ network border group. For more information on available Local Zones, see Local Zone availability in the Amazon EC2 User Guide.
|
25864
25872
|
*/
|
25865
25873
|
NetworkBorderGroup?: String;
|
25866
25874
|
/**
|
@@ -25910,10 +25918,18 @@ declare namespace EC2 {
|
|
25910
25918
|
* The VPC ID.
|
25911
25919
|
*/
|
25912
25920
|
VpcId?: String;
|
25921
|
+
/**
|
25922
|
+
* For elastic IP addresses, this is the status of an attached network interface.
|
25923
|
+
*/
|
25924
|
+
NetworkInterfaceAttachmentStatus?: IpamNetworkInterfaceAttachmentStatus;
|
25913
25925
|
/**
|
25914
25926
|
* The last successful resource discovery time.
|
25915
25927
|
*/
|
25916
25928
|
SampleTime?: MillisecondDateTime;
|
25929
|
+
/**
|
25930
|
+
* The Availability Zone ID.
|
25931
|
+
*/
|
25932
|
+
AvailabilityZoneId?: String;
|
25917
25933
|
}
|
25918
25934
|
export type IpamDiscoveredResourceCidrSet = IpamDiscoveredResourceCidr[];
|
25919
25935
|
export type IpamDiscoveryFailureCode = "assume-role-failure"|"throttling-failure"|"unauthorized-failure"|string;
|
@@ -25931,6 +25947,7 @@ declare namespace EC2 {
|
|
25931
25947
|
export type IpamManagementState = "managed"|"unmanaged"|"ignored"|string;
|
25932
25948
|
export type IpamMaxResults = number;
|
25933
25949
|
export type IpamNetmaskLength = number;
|
25950
|
+
export type IpamNetworkInterfaceAttachmentStatus = "available"|"in-use"|string;
|
25934
25951
|
export interface IpamOperatingRegion {
|
25935
25952
|
/**
|
25936
25953
|
* The name of the operating Region.
|
@@ -25973,7 +25990,7 @@ declare namespace EC2 {
|
|
25973
25990
|
*/
|
25974
25991
|
IpamRegion?: String;
|
25975
25992
|
/**
|
25976
|
-
* The locale of the IPAM pool. In IPAM, the locale is the Amazon Web Services Region
|
25993
|
+
* The locale of the IPAM pool. In IPAM, the locale is the Amazon Web Services Region or, for IPAM IPv4 pools in the public scope, the network border group for an Amazon Web Services Local Zone where you want to make an IPAM pool available for allocations (supported Local Zones). If you choose an Amazon Web Services Region for locale that has not been configured as an operating Region for the IPAM, you'll get an error.
|
25977
25994
|
*/
|
25978
25995
|
Locale?: String;
|
25979
25996
|
/**
|
@@ -26242,6 +26259,10 @@ declare namespace EC2 {
|
|
26242
26259
|
* The ID of a VPC.
|
26243
26260
|
*/
|
26244
26261
|
VpcId?: String;
|
26262
|
+
/**
|
26263
|
+
* The Availability Zone ID.
|
26264
|
+
*/
|
26265
|
+
AvailabilityZoneId?: String;
|
26245
26266
|
}
|
26246
26267
|
export type IpamResourceCidrSet = IpamResourceCidr[];
|
26247
26268
|
export interface IpamResourceDiscovery {
|
@@ -32272,6 +32293,10 @@ declare namespace EC2 {
|
|
32272
32293
|
* The netmask length of the CIDR you would like to allocate to the public IPv4 pool.
|
32273
32294
|
*/
|
32274
32295
|
NetmaskLength: Integer;
|
32296
|
+
/**
|
32297
|
+
* The Availability Zone (AZ) or Local Zone (LZ) network border group that the resource that the IP address is assigned to is in. Defaults to an AZ network border group. For more information on available Local Zones, see Local Zone availability in the Amazon EC2 User Guide.
|
32298
|
+
*/
|
32299
|
+
NetworkBorderGroup?: String;
|
32275
32300
|
}
|
32276
32301
|
export interface ProvisionPublicIpv4PoolCidrResult {
|
32277
32302
|
/**
|
package/clients/fsx.d.ts
CHANGED
@@ -390,7 +390,7 @@ declare namespace FSx {
|
|
390
390
|
export interface AdministrativeAction {
|
391
391
|
AdministrativeActionType?: AdministrativeActionType;
|
392
392
|
/**
|
393
|
-
* The percentage-complete status of a STORAGE_OPTIMIZATION administrative action. Does not apply to any other administrative action type.
|
393
|
+
* The percentage-complete status of a STORAGE_OPTIMIZATION or DOWNLOAD_DATA_FROM_BACKUP administrative action. Does not apply to any other administrative action type.
|
394
394
|
*/
|
395
395
|
ProgressPercent?: ProgressPercent;
|
396
396
|
/**
|
@@ -398,7 +398,7 @@ declare namespace FSx {
|
|
398
398
|
*/
|
399
399
|
RequestTime?: RequestTime;
|
400
400
|
/**
|
401
|
-
* The status of the administrative action, as follows: FAILED - Amazon FSx failed to process the administrative action successfully. IN_PROGRESS - Amazon FSx is processing the administrative action. PENDING - Amazon FSx is waiting to process the administrative action. COMPLETED - Amazon FSx has finished processing the administrative task. UPDATED_OPTIMIZING - For a storage-capacity increase update, Amazon FSx has updated the file system with the new storage capacity, and is now performing the storage-optimization process.
|
401
|
+
* The status of the administrative action, as follows: FAILED - Amazon FSx failed to process the administrative action successfully. IN_PROGRESS - Amazon FSx is processing the administrative action. PENDING - Amazon FSx is waiting to process the administrative action. COMPLETED - Amazon FSx has finished processing the administrative task. For a backup restore to a second-generation FSx for ONTAP file system, indicates that all data has been downloaded to the volume, and clients now have read-write access to volume. UPDATED_OPTIMIZING - For a storage-capacity increase update, Amazon FSx has updated the file system with the new storage capacity, and is now performing the storage-optimization process. PENDING - For a backup restore to a second-generation FSx for ONTAP file system, indicates that the file metadata is being downloaded onto the volume. The volume's Lifecycle state is CREATING. IN_PROGRESS - For a backup restore to a second-generation FSx for ONTAP file system, indicates that all metadata has been downloaded to the new volume and client can access data with read-only access while Amazon FSx downloads the file data to the volume. Track the progress of this process with the ProgressPercent element.
|
402
402
|
*/
|
403
403
|
Status?: Status;
|
404
404
|
/**
|
@@ -423,12 +423,12 @@ declare namespace FSx {
|
|
423
423
|
*/
|
424
424
|
Message?: ErrorMessage;
|
425
425
|
}
|
426
|
-
export type AdministrativeActionType = "FILE_SYSTEM_UPDATE"|"STORAGE_OPTIMIZATION"|"FILE_SYSTEM_ALIAS_ASSOCIATION"|"FILE_SYSTEM_ALIAS_DISASSOCIATION"|"VOLUME_UPDATE"|"SNAPSHOT_UPDATE"|"RELEASE_NFS_V3_LOCKS"|"VOLUME_RESTORE"|"THROUGHPUT_OPTIMIZATION"|"IOPS_OPTIMIZATION"|"STORAGE_TYPE_OPTIMIZATION"|"MISCONFIGURED_STATE_RECOVERY"|"VOLUME_UPDATE_WITH_SNAPSHOT"|"VOLUME_INITIALIZE_WITH_SNAPSHOT"|string;
|
426
|
+
export type AdministrativeActionType = "FILE_SYSTEM_UPDATE"|"STORAGE_OPTIMIZATION"|"FILE_SYSTEM_ALIAS_ASSOCIATION"|"FILE_SYSTEM_ALIAS_DISASSOCIATION"|"VOLUME_UPDATE"|"SNAPSHOT_UPDATE"|"RELEASE_NFS_V3_LOCKS"|"VOLUME_RESTORE"|"THROUGHPUT_OPTIMIZATION"|"IOPS_OPTIMIZATION"|"STORAGE_TYPE_OPTIMIZATION"|"MISCONFIGURED_STATE_RECOVERY"|"VOLUME_UPDATE_WITH_SNAPSHOT"|"VOLUME_INITIALIZE_WITH_SNAPSHOT"|"DOWNLOAD_DATA_FROM_BACKUP"|string;
|
427
427
|
export type AdministrativeActions = AdministrativeAction[];
|
428
428
|
export type Aggregate = string;
|
429
429
|
export interface AggregateConfiguration {
|
430
430
|
/**
|
431
|
-
* The list of aggregates that this volume resides on. Aggregates are storage pools which make up your primary storage tier. Each high-availability (HA) pair has one aggregate. The names of the aggregates map to the names of the aggregates in the ONTAP CLI and REST API. For FlexVols, there will always be a single entry. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The strings in the value of Aggregates are not are not formatted as aggrX, where X is a number between 1 and
|
431
|
+
* The list of aggregates that this volume resides on. Aggregates are storage pools which make up your primary storage tier. Each high-availability (HA) pair has one aggregate. The names of the aggregates map to the names of the aggregates in the ONTAP CLI and REST API. For FlexVols, there will always be a single entry. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The strings in the value of Aggregates are not are not formatted as aggrX, where X is a number between 1 and 12. The value of Aggregates contains aggregates that are not present. One or more of the aggregates supplied are too close to the volume limit to support adding more volumes.
|
432
432
|
*/
|
433
433
|
Aggregates?: Aggregates;
|
434
434
|
/**
|
@@ -928,7 +928,7 @@ declare namespace FSx {
|
|
928
928
|
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
929
929
|
DailyAutomaticBackupStartTime?: DailyTime;
|
930
930
|
/**
|
931
|
-
* Specifies the FSx for ONTAP file system deployment type to use in creating the file system. MULTI_AZ_1 -
|
931
|
+
* Specifies the FSx for ONTAP file system deployment type to use in creating the file system. MULTI_AZ_1 - A high availability file system configured for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ) unavailability. This is a first-generation FSx for ONTAP file system. MULTI_AZ_2 - A high availability file system configured for Multi-AZ redundancy to tolerate temporary AZ unavailability. This is a second-generation FSx for ONTAP file system. SINGLE_AZ_1 - A file system configured for Single-AZ redundancy. This is a first-generation FSx for ONTAP file system. SINGLE_AZ_2 - A file system configured with multiple high-availability (HA) pairs for Single-AZ redundancy. This is a second-generation FSx for ONTAP file system. For information about the use cases for Multi-AZ and Single-AZ deployments, refer to Choosing a file system deployment type.
|
932
932
|
*/
|
933
933
|
DeploymentType: OntapDeploymentType;
|
934
934
|
/**
|
@@ -944,7 +944,7 @@ declare namespace FSx {
|
|
944
944
|
*/
|
945
945
|
DiskIopsConfiguration?: DiskIopsConfiguration;
|
946
946
|
/**
|
947
|
-
* Required when DeploymentType is set to MULTI_AZ_1. This specifies the subnet in which you want the preferred file server to be located.
|
947
|
+
* Required when DeploymentType is set to MULTI_AZ_1 or MULTI_AZ_2. This specifies the subnet in which you want the preferred file server to be located.
|
948
948
|
*/
|
949
949
|
PreferredSubnetId?: SubnetId;
|
950
950
|
/**
|
@@ -957,11 +957,11 @@ declare namespace FSx {
|
|
957
957
|
ThroughputCapacity?: MegabytesPerSecond;
|
958
958
|
WeeklyMaintenanceStartTime?: WeeklyTime;
|
959
959
|
/**
|
960
|
-
* Specifies how many high-availability (HA) pairs of file servers will power your file system.
|
960
|
+
* Specifies how many high-availability (HA) pairs of file servers will power your file system. First-generation file systems are powered by 1 HA pair. Second-generation multi-AZ file systems are powered by 1 HA pair. Second generation single-AZ file systems are powered by up to 12 HA pairs. The default value is 1. The value of this property affects the values of StorageCapacity, Iops, and ThroughputCapacity. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide. Block storage protocol support (iSCSI and NVMe over TCP) is disabled on file systems with more than 6 HA pairs. For more information, see Using block storage protocols. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of HAPairs is less than 1 or greater than 12. The value of HAPairs is greater than 1 and the value of DeploymentType is SINGLE_AZ_1, MULTI_AZ_1, or MULTI_AZ_2.
|
961
961
|
*/
|
962
962
|
HAPairs?: HAPairs;
|
963
963
|
/**
|
964
|
-
* Use to choose the throughput capacity per HA pair, rather than the total throughput for the file system. You can define either the ThroughputCapacityPerHAPair or the ThroughputCapacity when creating a file system, but not both. This field and ThroughputCapacity are the same for
|
964
|
+
* Use to choose the throughput capacity per HA pair, rather than the total throughput for the file system. You can define either the ThroughputCapacityPerHAPair or the ThroughputCapacity when creating a file system, but not both. This field and ThroughputCapacity are the same for file systems powered by one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1 file systems, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 1536, 3072, or 6144 MBps. For MULTI_AZ_2, valid values are 384, 768, 1536, 3072, or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value for file systems with one HA pair. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is not a valid HA pair (a value between 1 and 12). The value of ThroughputCapacityPerHAPair is not a valid value.
|
965
965
|
*/
|
966
966
|
ThroughputCapacityPerHAPair?: ThroughputCapacityPerHAPair;
|
967
967
|
}
|
@@ -977,7 +977,7 @@ declare namespace FSx {
|
|
977
977
|
CopyTagsToVolumes?: Flag;
|
978
978
|
DailyAutomaticBackupStartTime?: DailyTime;
|
979
979
|
/**
|
980
|
-
* Specifies the file system deployment type.
|
980
|
+
* Specifies the file system deployment type. Valid values are the following: MULTI_AZ_1- Creates file systems with high availability and durability by replicating your data and supporting failover across multiple Availability Zones in the same Amazon Web Services Region. SINGLE_AZ_HA_2- Creates file systems with high availability and throughput capacities of 160 - 10,240 MB/s using an NVMe L2ARC cache by deploying a primary and standby file system within the same Availability Zone. SINGLE_AZ_HA_1- Creates file systems with high availability and throughput capacities of 64 - 4,096 MB/s by deploying a primary and standby file system within the same Availability Zone. SINGLE_AZ_2- Creates file systems with throughput capacities of 160 - 10,240 MB/s using an NVMe L2ARC cache that automatically recover within a single Availability Zone. SINGLE_AZ_1- Creates file systems with throughput capacities of 64 - 4,096 MBs that automatically recover within a single Availability Zone. For a list of which Amazon Web Services Regions each deployment type is available in, see Deployment type availability. For more information on the differences in performance between deployment types, see File system performance in the Amazon FSx for OpenZFS User Guide.
|
981
981
|
*/
|
982
982
|
DeploymentType: OpenZFSDeploymentType;
|
983
983
|
/**
|
@@ -2063,7 +2063,7 @@ declare namespace FSx {
|
|
2063
2063
|
*/
|
2064
2064
|
Lifecycle?: FileCacheLifecycle;
|
2065
2065
|
/**
|
2066
|
-
* A structure providing details of any failures that occurred.
|
2066
|
+
* A structure providing details of any failures that occurred in creating a cache.
|
2067
2067
|
*/
|
2068
2068
|
FailureDetails?: FileCacheFailureDetails;
|
2069
2069
|
/**
|
@@ -2451,13 +2451,13 @@ declare namespace FSx {
|
|
2451
2451
|
export type NetworkInterfaceIds = NetworkInterfaceId[];
|
2452
2452
|
export type NextToken = string;
|
2453
2453
|
export type NfsVersion = "NFS3"|string;
|
2454
|
-
export type OntapDeploymentType = "MULTI_AZ_1"|"SINGLE_AZ_1"|"SINGLE_AZ_2"|string;
|
2454
|
+
export type OntapDeploymentType = "MULTI_AZ_1"|"SINGLE_AZ_1"|"SINGLE_AZ_2"|"MULTI_AZ_2"|string;
|
2455
2455
|
export type OntapEndpointIpAddresses = IpAddress[];
|
2456
2456
|
export interface OntapFileSystemConfiguration {
|
2457
2457
|
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
2458
2458
|
DailyAutomaticBackupStartTime?: DailyTime;
|
2459
2459
|
/**
|
2460
|
-
* Specifies the FSx for ONTAP file system deployment type in use in the file system. MULTI_AZ_1 -
|
2460
|
+
* Specifies the FSx for ONTAP file system deployment type in use in the file system. MULTI_AZ_1 - A high availability file system configured for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ) unavailability. This is a first-generation FSx for ONTAP file system. MULTI_AZ_2 - A high availability file system configured for Multi-AZ redundancy to tolerate temporary AZ unavailability. This is a second-generation FSx for ONTAP file system. SINGLE_AZ_1 - A file system configured for Single-AZ redundancy. This is a first-generation FSx for ONTAP file system. SINGLE_AZ_2 - A file system configured with multiple high-availability (HA) pairs for Single-AZ redundancy. This is a second-generation FSx for ONTAP file system. For information about the use cases for Multi-AZ and Single-AZ deployments, refer to Choosing Multi-AZ or Single-AZ file system deployment.
|
2461
2461
|
*/
|
2462
2462
|
DeploymentType?: OntapDeploymentType;
|
2463
2463
|
/**
|
@@ -2484,11 +2484,11 @@ declare namespace FSx {
|
|
2484
2484
|
*/
|
2485
2485
|
FsxAdminPassword?: AdminPassword;
|
2486
2486
|
/**
|
2487
|
-
* Specifies how many high-availability (HA) file server pairs the file system will have. The default value is 1. The value of this property affects the values of StorageCapacity, Iops, and ThroughputCapacity. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of HAPairs is less than 1 or greater than 12. The value of HAPairs is greater than 1 and the value of DeploymentType is SINGLE_AZ_1 or
|
2487
|
+
* Specifies how many high-availability (HA) file server pairs the file system will have. The default value is 1. The value of this property affects the values of StorageCapacity, Iops, and ThroughputCapacity. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of HAPairs is less than 1 or greater than 12. The value of HAPairs is greater than 1 and the value of DeploymentType is SINGLE_AZ_1, MULTI_AZ_1, or MULTI_AZ_2.
|
2488
2488
|
*/
|
2489
2489
|
HAPairs?: HAPairs;
|
2490
2490
|
/**
|
2491
|
-
* Use to choose the throughput capacity per HA pair. When the value of HAPairs is equal to 1, the value of ThroughputCapacityPerHAPair is the total throughput for the file system. This field and ThroughputCapacity cannot be defined in the same API call, but one is required. This field and ThroughputCapacity are the same for file systems with one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 3072 or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is a valid HA pair (a value between
|
2491
|
+
* Use to choose the throughput capacity per HA pair. When the value of HAPairs is equal to 1, the value of ThroughputCapacityPerHAPair is the total throughput for the file system. This field and ThroughputCapacity cannot be defined in the same API call, but one is required. This field and ThroughputCapacity are the same for file systems with one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1 file systems, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 1536, 3072, or 6144 MBps. For MULTI_AZ_2, valid values are 384, 768, 1536, 3072, or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is not a valid HA pair (a value between 1 and 12). The value of ThroughputCapacityPerHAPair is not a valid value.
|
2492
2492
|
*/
|
2493
2493
|
ThroughputCapacityPerHAPair?: ThroughputCapacityPerHAPair;
|
2494
2494
|
}
|
@@ -2599,7 +2599,7 @@ declare namespace FSx {
|
|
2599
2599
|
ReadOnly?: ReadOnly;
|
2600
2600
|
}
|
2601
2601
|
export type OpenZFSDataCompressionType = "NONE"|"ZSTD"|"LZ4"|string;
|
2602
|
-
export type OpenZFSDeploymentType = "SINGLE_AZ_1"|"SINGLE_AZ_2"|"MULTI_AZ_1"|string;
|
2602
|
+
export type OpenZFSDeploymentType = "SINGLE_AZ_1"|"SINGLE_AZ_2"|"SINGLE_AZ_HA_1"|"SINGLE_AZ_HA_2"|"MULTI_AZ_1"|string;
|
2603
2603
|
export interface OpenZFSFileSystemConfiguration {
|
2604
2604
|
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
2605
2605
|
/**
|
@@ -2612,7 +2612,7 @@ declare namespace FSx {
|
|
2612
2612
|
CopyTagsToVolumes?: Flag;
|
2613
2613
|
DailyAutomaticBackupStartTime?: DailyTime;
|
2614
2614
|
/**
|
2615
|
-
* Specifies the file-system deployment type. Amazon FSx for OpenZFS supports
 MULTI_AZ_1,
|
2615
|
+
* Specifies the file-system deployment type. Amazon FSx for OpenZFS supports
 MULTI_AZ_1, SINGLE_AZ_HA_2, SINGLE_AZ_HA_1, SINGLE_AZ_2, and SINGLE_AZ_1.
|
2616
2616
|
*/
|
2617
2617
|
DeploymentType?: OpenZFSDeploymentType;
|
2618
2618
|
/**
|
@@ -3000,7 +3000,7 @@ declare namespace FSx {
|
|
3000
3000
|
FileSystem?: FileSystem;
|
3001
3001
|
}
|
3002
3002
|
export type StartTime = Date;
|
3003
|
-
export type Status = "FAILED"|"IN_PROGRESS"|"PENDING"|"COMPLETED"|"UPDATED_OPTIMIZING"|string;
|
3003
|
+
export type Status = "FAILED"|"IN_PROGRESS"|"PENDING"|"COMPLETED"|"UPDATED_OPTIMIZING"|"OPTIMIZING"|string;
|
3004
3004
|
export type StorageCapacity = number;
|
3005
3005
|
export type StorageType = "SSD"|"HDD"|string;
|
3006
3006
|
export interface StorageVirtualMachine {
|
@@ -3270,9 +3270,13 @@ declare namespace FSx {
|
|
3270
3270
|
*/
|
3271
3271
|
RemoveRouteTableIds?: RouteTableIds;
|
3272
3272
|
/**
|
3273
|
-
* Use to choose the throughput capacity per HA pair, rather than the total throughput for the file system. This field and ThroughputCapacity cannot be defined in the same API call, but one is required. This field and ThroughputCapacity are the same for file systems with one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 3072 or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value for file systems with one HA pair. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is a valid HA pair (a value between
|
3273
|
+
* Use to choose the throughput capacity per HA pair, rather than the total throughput for the file system. This field and ThroughputCapacity cannot be defined in the same API call, but one is required. This field and ThroughputCapacity are the same for file systems with one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1 file systems, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 1536, 3072, or 6144 MBps. For MULTI_AZ_2, valid values are 384, 768, 1536, 3072, or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value for file systems with one HA pair. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is not a valid HA pair (a value between 1 and 12). The value of ThroughputCapacityPerHAPair is not a valid value.
|
3274
3274
|
*/
|
3275
3275
|
ThroughputCapacityPerHAPair?: ThroughputCapacityPerHAPair;
|
3276
|
+
/**
|
3277
|
+
* Use to update the number of high-availability (HA) pairs for a second-generation single-AZ file system. If you increase the number of HA pairs for your file system, you must specify proportional increases for StorageCapacity, Iops, and ThroughputCapacity. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide. Block storage protocol support (iSCSI and NVMe over TCP) is disabled on file systems with more than 6 HA pairs. For more information, see Using block storage protocols.
|
3278
|
+
*/
|
3279
|
+
HAPairs?: HAPairs;
|
3276
3280
|
}
|
3277
3281
|
export interface UpdateFileSystemOpenZFSConfiguration {
|
3278
3282
|
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
package/clients/glue.d.ts
CHANGED
@@ -3546,6 +3546,21 @@ declare namespace Glue {
|
|
3546
3546
|
*/
|
3547
3547
|
CrawlState?: CrawlState;
|
3548
3548
|
}
|
3549
|
+
export interface ConditionExpression {
|
3550
|
+
/**
|
3551
|
+
* The condition of the condition expression.
|
3552
|
+
*/
|
3553
|
+
Condition: DatabrewCondition;
|
3554
|
+
/**
|
3555
|
+
* The value of the condition expression.
|
3556
|
+
*/
|
3557
|
+
Value?: DatabrewConditionValue;
|
3558
|
+
/**
|
3559
|
+
* The target column of the condition expressions.
|
3560
|
+
*/
|
3561
|
+
TargetColumn: TargetColumn;
|
3562
|
+
}
|
3563
|
+
export type ConditionExpressionList = ConditionExpression[];
|
3549
3564
|
export type ConditionList = Condition[];
|
3550
3565
|
export type ConfigValueString = string;
|
3551
3566
|
export type ConfigurationMap = {[key: string]: ConfigurationObject};
|
@@ -5590,6 +5605,8 @@ declare namespace Glue {
|
|
5590
5605
|
}
|
5591
5606
|
export type DatabaseList = Database[];
|
5592
5607
|
export type DatabaseName = string;
|
5608
|
+
export type DatabrewCondition = string;
|
5609
|
+
export type DatabrewConditionValue = string;
|
5593
5610
|
export interface Datatype {
|
5594
5611
|
/**
|
5595
5612
|
* The datatype of the value.
|
@@ -10740,6 +10757,7 @@ declare namespace Glue {
|
|
10740
10757
|
*/
|
10741
10758
|
IcebergInput?: IcebergInput;
|
10742
10759
|
}
|
10760
|
+
export type Operation = string;
|
10743
10761
|
export interface Option {
|
10744
10762
|
/**
|
10745
10763
|
* Specifies the value of the option.
|
@@ -10857,6 +10875,9 @@ declare namespace Glue {
|
|
10857
10875
|
export type PageSize = number;
|
10858
10876
|
export type PaginationToken = string;
|
10859
10877
|
export type ParamType = "str"|"int"|"float"|"complex"|"bool"|"list"|"null"|string;
|
10878
|
+
export type ParameterMap = {[key: string]: ParameterValue};
|
10879
|
+
export type ParameterName = string;
|
10880
|
+
export type ParameterValue = string;
|
10860
10881
|
export type ParametersMap = {[key: string]: ParametersMapValue};
|
10861
10882
|
export type ParametersMapValue = string;
|
10862
10883
|
export type ParquetCompressionType = "snappy"|"lzo"|"gzip"|"uncompressed"|"none"|string;
|
@@ -11273,7 +11294,21 @@ declare namespace Glue {
|
|
11273
11294
|
/**
|
11274
11295
|
* A reference to the DataBrew recipe used by the node.
|
11275
11296
|
*/
|
11276
|
-
RecipeReference
|
11297
|
+
RecipeReference?: RecipeReference;
|
11298
|
+
/**
|
11299
|
+
* Transform steps used in the recipe node.
|
11300
|
+
*/
|
11301
|
+
RecipeSteps?: RecipeSteps;
|
11302
|
+
}
|
11303
|
+
export interface RecipeAction {
|
11304
|
+
/**
|
11305
|
+
* The operation of the recipe action.
|
11306
|
+
*/
|
11307
|
+
Operation: Operation;
|
11308
|
+
/**
|
11309
|
+
* The parameters of the recipe action.
|
11310
|
+
*/
|
11311
|
+
Parameters?: ParameterMap;
|
11277
11312
|
}
|
11278
11313
|
export interface RecipeReference {
|
11279
11314
|
/**
|
@@ -11285,6 +11320,17 @@ declare namespace Glue {
|
|
11285
11320
|
*/
|
11286
11321
|
RecipeVersion: RecipeVersion;
|
11287
11322
|
}
|
11323
|
+
export interface RecipeStep {
|
11324
|
+
/**
|
11325
|
+
* The transformation action of the recipe step.
|
11326
|
+
*/
|
11327
|
+
Action: RecipeAction;
|
11328
|
+
/**
|
11329
|
+
* The condition expressions for the recipe step.
|
11330
|
+
*/
|
11331
|
+
ConditionExpressions?: ConditionExpressionList;
|
11332
|
+
}
|
11333
|
+
export type RecipeSteps = RecipeStep[];
|
11288
11334
|
export type RecipeVersion = string;
|
11289
11335
|
export type RecordsCount = number;
|
11290
11336
|
export type RecrawlBehavior = "CRAWL_EVERYTHING"|"CRAWL_NEW_FOLDERS_ONLY"|"CRAWL_EVENT_MODE"|string;
|
@@ -13618,6 +13664,7 @@ declare namespace Glue {
|
|
13618
13664
|
}
|
13619
13665
|
export type TagValue = string;
|
13620
13666
|
export type TagsMap = {[key: string]: TagValue};
|
13667
|
+
export type TargetColumn = string;
|
13621
13668
|
export type TargetFormat = "json"|"csv"|"avro"|"orc"|"parquet"|"hudi"|"delta"|string;
|
13622
13669
|
export interface TaskRun {
|
13623
13670
|
/**
|