@aws-sdk/client-redshift 3.687.0 → 3.692.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/dist-cjs/index.js +91 -0
- package/dist-es/models/models_0.js +10 -0
- package/dist-es/protocols/Aws_query.js +83 -1
- package/dist-types/commands/CreateRedshiftIdcApplicationCommand.d.ts +14 -0
- package/dist-types/commands/DescribeClusterParametersCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClustersCommand.d.ts +2 -1
- package/dist-types/commands/DescribeRedshiftIdcApplicationsCommand.d.ts +7 -0
- package/dist-types/commands/ModifyRedshiftIdcApplicationCommand.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +602 -645
- package/dist-types/models/models_1.d.ts +588 -492
- package/dist-types/ts3.4/commands/DescribeClusterParametersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +2 -1
- package/dist-types/ts3.4/models/models_0.d.ts +578 -561
- package/dist-types/ts3.4/models/models_1.d.ts +507 -492
- package/package.json +36 -36
|
@@ -28,12 +28,12 @@ export interface RecurringCharge {
|
|
|
28
28
|
* frequency.</p>
|
|
29
29
|
* @public
|
|
30
30
|
*/
|
|
31
|
-
RecurringChargeAmount?: number;
|
|
31
|
+
RecurringChargeAmount?: number | undefined;
|
|
32
32
|
/**
|
|
33
33
|
* <p>The frequency at which the recurring charge amount is applied.</p>
|
|
34
34
|
* @public
|
|
35
35
|
*/
|
|
36
|
-
RecurringChargeFrequency?: string;
|
|
36
|
+
RecurringChargeFrequency?: string | undefined;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
39
|
* @public
|
|
@@ -57,48 +57,48 @@ export interface ReservedNode {
|
|
|
57
57
|
* <p>The unique identifier for the reservation.</p>
|
|
58
58
|
* @public
|
|
59
59
|
*/
|
|
60
|
-
ReservedNodeId?: string;
|
|
60
|
+
ReservedNodeId?: string | undefined;
|
|
61
61
|
/**
|
|
62
62
|
* <p>The identifier for the reserved node offering.</p>
|
|
63
63
|
* @public
|
|
64
64
|
*/
|
|
65
|
-
ReservedNodeOfferingId?: string;
|
|
65
|
+
ReservedNodeOfferingId?: string | undefined;
|
|
66
66
|
/**
|
|
67
67
|
* <p>The node type of the reserved node.</p>
|
|
68
68
|
* @public
|
|
69
69
|
*/
|
|
70
|
-
NodeType?: string;
|
|
70
|
+
NodeType?: string | undefined;
|
|
71
71
|
/**
|
|
72
72
|
* <p>The time the reservation started. You purchase a reserved node offering for a
|
|
73
73
|
* duration. This is the start time of that duration.</p>
|
|
74
74
|
* @public
|
|
75
75
|
*/
|
|
76
|
-
StartTime?: Date;
|
|
76
|
+
StartTime?: Date | undefined;
|
|
77
77
|
/**
|
|
78
78
|
* <p>The duration of the node reservation in seconds.</p>
|
|
79
79
|
* @public
|
|
80
80
|
*/
|
|
81
|
-
Duration?: number;
|
|
81
|
+
Duration?: number | undefined;
|
|
82
82
|
/**
|
|
83
83
|
* <p>The fixed cost Amazon Redshift charges you for this reserved node.</p>
|
|
84
84
|
* @public
|
|
85
85
|
*/
|
|
86
|
-
FixedPrice?: number;
|
|
86
|
+
FixedPrice?: number | undefined;
|
|
87
87
|
/**
|
|
88
88
|
* <p>The hourly rate Amazon Redshift charges you for this reserved node.</p>
|
|
89
89
|
* @public
|
|
90
90
|
*/
|
|
91
|
-
UsagePrice?: number;
|
|
91
|
+
UsagePrice?: number | undefined;
|
|
92
92
|
/**
|
|
93
93
|
* <p>The currency code for the reserved cluster.</p>
|
|
94
94
|
* @public
|
|
95
95
|
*/
|
|
96
|
-
CurrencyCode?: string;
|
|
96
|
+
CurrencyCode?: string | undefined;
|
|
97
97
|
/**
|
|
98
98
|
* <p>The number of reserved compute nodes.</p>
|
|
99
99
|
* @public
|
|
100
100
|
*/
|
|
101
|
-
NodeCount?: number;
|
|
101
|
+
NodeCount?: number | undefined;
|
|
102
102
|
/**
|
|
103
103
|
* <p>The state of the reserved compute node.</p>
|
|
104
104
|
* <p>Possible Values:</p>
|
|
@@ -124,23 +124,23 @@ export interface ReservedNode {
|
|
|
124
124
|
* </ul>
|
|
125
125
|
* @public
|
|
126
126
|
*/
|
|
127
|
-
State?: string;
|
|
127
|
+
State?: string | undefined;
|
|
128
128
|
/**
|
|
129
129
|
* <p>The anticipated utilization of the reserved node, as defined in the reserved node
|
|
130
130
|
* offering.</p>
|
|
131
131
|
* @public
|
|
132
132
|
*/
|
|
133
|
-
OfferingType?: string;
|
|
133
|
+
OfferingType?: string | undefined;
|
|
134
134
|
/**
|
|
135
135
|
* <p>The recurring charges for the reserved node.</p>
|
|
136
136
|
* @public
|
|
137
137
|
*/
|
|
138
|
-
RecurringCharges?: RecurringCharge[];
|
|
138
|
+
RecurringCharges?: RecurringCharge[] | undefined;
|
|
139
139
|
/**
|
|
140
140
|
* <p></p>
|
|
141
141
|
* @public
|
|
142
142
|
*/
|
|
143
|
-
ReservedNodeOfferingType?: ReservedNodeOfferingType;
|
|
143
|
+
ReservedNodeOfferingType?: ReservedNodeOfferingType | undefined;
|
|
144
144
|
}
|
|
145
145
|
/**
|
|
146
146
|
* @public
|
|
@@ -150,7 +150,7 @@ export interface AcceptReservedNodeExchangeOutputMessage {
|
|
|
150
150
|
* <p></p>
|
|
151
151
|
* @public
|
|
152
152
|
*/
|
|
153
|
-
ExchangedReservedNode?: ReservedNode;
|
|
153
|
+
ExchangedReservedNode?: ReservedNode | undefined;
|
|
154
154
|
}
|
|
155
155
|
/**
|
|
156
156
|
* <p>Your request cannot be completed because a dependent internal service is
|
|
@@ -271,7 +271,7 @@ export interface AttributeValueTarget {
|
|
|
271
271
|
* <p>The value of the attribute.</p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
AttributeValue?: string;
|
|
274
|
+
AttributeValue?: string | undefined;
|
|
275
275
|
}
|
|
276
276
|
/**
|
|
277
277
|
* <p>A name value pair that describes an aspect of an account. </p>
|
|
@@ -282,12 +282,12 @@ export interface AccountAttribute {
|
|
|
282
282
|
* <p>The name of the attribute.</p>
|
|
283
283
|
* @public
|
|
284
284
|
*/
|
|
285
|
-
AttributeName?: string;
|
|
285
|
+
AttributeName?: string | undefined;
|
|
286
286
|
/**
|
|
287
287
|
* <p>A list of attribute values.</p>
|
|
288
288
|
* @public
|
|
289
289
|
*/
|
|
290
|
-
AttributeValues?: AttributeValueTarget[];
|
|
290
|
+
AttributeValues?: AttributeValueTarget[] | undefined;
|
|
291
291
|
}
|
|
292
292
|
/**
|
|
293
293
|
* @public
|
|
@@ -297,7 +297,7 @@ export interface AccountAttributeList {
|
|
|
297
297
|
* <p>A list of attributes assigned to an account.</p>
|
|
298
298
|
* @public
|
|
299
299
|
*/
|
|
300
|
-
AccountAttributes?: AccountAttribute[];
|
|
300
|
+
AccountAttributes?: AccountAttribute[] | undefined;
|
|
301
301
|
}
|
|
302
302
|
/**
|
|
303
303
|
* <p>Describes an Amazon Web Services account authorized to restore a snapshot.</p>
|
|
@@ -309,13 +309,13 @@ export interface AccountWithRestoreAccess {
|
|
|
309
309
|
* snapshot.</p>
|
|
310
310
|
* @public
|
|
311
311
|
*/
|
|
312
|
-
AccountId?: string;
|
|
312
|
+
AccountId?: string | undefined;
|
|
313
313
|
/**
|
|
314
314
|
* <p>The identifier of an Amazon Web Services support account authorized to restore a
|
|
315
315
|
* snapshot. For Amazon Web Services Support, the identifier is <code>amazon-redshift-support</code>. </p>
|
|
316
316
|
* @public
|
|
317
317
|
*/
|
|
318
|
-
AccountAlias?: string;
|
|
318
|
+
AccountAlias?: string | undefined;
|
|
319
319
|
}
|
|
320
320
|
/**
|
|
321
321
|
* @public
|
|
@@ -376,12 +376,12 @@ export interface PartnerIntegrationOutputMessage {
|
|
|
376
376
|
* <p>The name of the database that receives data from the partner.</p>
|
|
377
377
|
* @public
|
|
378
378
|
*/
|
|
379
|
-
DatabaseName?: string;
|
|
379
|
+
DatabaseName?: string | undefined;
|
|
380
380
|
/**
|
|
381
381
|
* <p>The name of the partner that is authorized to send data.</p>
|
|
382
382
|
* @public
|
|
383
383
|
*/
|
|
384
|
-
PartnerName?: string;
|
|
384
|
+
PartnerName?: string | undefined;
|
|
385
385
|
}
|
|
386
386
|
/**
|
|
387
387
|
* <p>The name of the partner was not found.</p>
|
|
@@ -442,12 +442,12 @@ export interface AquaConfiguration {
|
|
|
442
442
|
* <p>This field is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).</p>
|
|
443
443
|
* @public
|
|
444
444
|
*/
|
|
445
|
-
AquaStatus?: AquaStatus;
|
|
445
|
+
AquaStatus?: AquaStatus | undefined;
|
|
446
446
|
/**
|
|
447
447
|
* <p>This field is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).</p>
|
|
448
448
|
* @public
|
|
449
449
|
*/
|
|
450
|
-
AquaConfigurationStatus?: AquaConfigurationStatus;
|
|
450
|
+
AquaConfigurationStatus?: AquaConfigurationStatus | undefined;
|
|
451
451
|
}
|
|
452
452
|
/**
|
|
453
453
|
* @public
|
|
@@ -462,23 +462,23 @@ export interface AssociateDataShareConsumerMessage {
|
|
|
462
462
|
* <p>A value that specifies whether the datashare is associated with the entire account.</p>
|
|
463
463
|
* @public
|
|
464
464
|
*/
|
|
465
|
-
AssociateEntireAccount?: boolean;
|
|
465
|
+
AssociateEntireAccount?: boolean | undefined;
|
|
466
466
|
/**
|
|
467
467
|
* <p>The Amazon Resource Name (ARN) of the consumer namespace associated with the
|
|
468
468
|
* datashare.</p>
|
|
469
469
|
* @public
|
|
470
470
|
*/
|
|
471
|
-
ConsumerArn?: string;
|
|
471
|
+
ConsumerArn?: string | undefined;
|
|
472
472
|
/**
|
|
473
473
|
* <p>From a datashare consumer account, associates a datashare with all existing and future namespaces in the specified Amazon Web Services Region.</p>
|
|
474
474
|
* @public
|
|
475
475
|
*/
|
|
476
|
-
ConsumerRegion?: string;
|
|
476
|
+
ConsumerRegion?: string | undefined;
|
|
477
477
|
/**
|
|
478
478
|
* <p>If set to true, allows write operations for a datashare.</p>
|
|
479
479
|
* @public
|
|
480
480
|
*/
|
|
481
|
-
AllowWrites?: boolean;
|
|
481
|
+
AllowWrites?: boolean | undefined;
|
|
482
482
|
}
|
|
483
483
|
/**
|
|
484
484
|
* @public
|
|
@@ -507,37 +507,37 @@ export interface DataShareAssociation {
|
|
|
507
507
|
* datashare.</p>
|
|
508
508
|
* @public
|
|
509
509
|
*/
|
|
510
|
-
ConsumerIdentifier?: string;
|
|
510
|
+
ConsumerIdentifier?: string | undefined;
|
|
511
511
|
/**
|
|
512
512
|
* <p>The status of the datashare that is associated.</p>
|
|
513
513
|
* @public
|
|
514
514
|
*/
|
|
515
|
-
Status?: DataShareStatus;
|
|
515
|
+
Status?: DataShareStatus | undefined;
|
|
516
516
|
/**
|
|
517
517
|
* <p>The Amazon Web Services Region of the consumer accounts that have an association with a producer datashare.</p>
|
|
518
518
|
* @public
|
|
519
519
|
*/
|
|
520
|
-
ConsumerRegion?: string;
|
|
520
|
+
ConsumerRegion?: string | undefined;
|
|
521
521
|
/**
|
|
522
522
|
* <p>The creation date of the datashare that is associated.</p>
|
|
523
523
|
* @public
|
|
524
524
|
*/
|
|
525
|
-
CreatedDate?: Date;
|
|
525
|
+
CreatedDate?: Date | undefined;
|
|
526
526
|
/**
|
|
527
527
|
* <p>The status change data of the datashare that is associated.</p>
|
|
528
528
|
* @public
|
|
529
529
|
*/
|
|
530
|
-
StatusChangeDate?: Date;
|
|
530
|
+
StatusChangeDate?: Date | undefined;
|
|
531
531
|
/**
|
|
532
532
|
* <p>Specifies whether write operations were allowed during data share authorization.</p>
|
|
533
533
|
* @public
|
|
534
534
|
*/
|
|
535
|
-
ProducerAllowedWrites?: boolean;
|
|
535
|
+
ProducerAllowedWrites?: boolean | undefined;
|
|
536
536
|
/**
|
|
537
537
|
* <p>Specifies whether write operations were allowed during data share association.</p>
|
|
538
538
|
* @public
|
|
539
539
|
*/
|
|
540
|
-
ConsumerAcceptedWrites?: boolean;
|
|
540
|
+
ConsumerAcceptedWrites?: boolean | undefined;
|
|
541
541
|
}
|
|
542
542
|
/**
|
|
543
543
|
* @public
|
|
@@ -547,28 +547,28 @@ export interface DataShare {
|
|
|
547
547
|
* <p>The Amazon Resource Name (ARN) of the datashare that the consumer is to use.</p>
|
|
548
548
|
* @public
|
|
549
549
|
*/
|
|
550
|
-
DataShareArn?: string;
|
|
550
|
+
DataShareArn?: string | undefined;
|
|
551
551
|
/**
|
|
552
552
|
* <p>The Amazon Resource Name (ARN) of the producer namespace.</p>
|
|
553
553
|
* @public
|
|
554
554
|
*/
|
|
555
|
-
ProducerArn?: string;
|
|
555
|
+
ProducerArn?: string | undefined;
|
|
556
556
|
/**
|
|
557
557
|
* <p>A value that specifies whether the datashare can be shared to a publicly accessible cluster.</p>
|
|
558
558
|
* @public
|
|
559
559
|
*/
|
|
560
|
-
AllowPubliclyAccessibleConsumers?: boolean;
|
|
560
|
+
AllowPubliclyAccessibleConsumers?: boolean | undefined;
|
|
561
561
|
/**
|
|
562
562
|
* <p>A value that specifies when the datashare has an association between producer and data
|
|
563
563
|
* consumers.</p>
|
|
564
564
|
* @public
|
|
565
565
|
*/
|
|
566
|
-
DataShareAssociations?: DataShareAssociation[];
|
|
566
|
+
DataShareAssociations?: DataShareAssociation[] | undefined;
|
|
567
567
|
/**
|
|
568
568
|
* <p>The identifier of a datashare to show its managing entity.</p>
|
|
569
569
|
* @public
|
|
570
570
|
*/
|
|
571
|
-
ManagedBy?: string;
|
|
571
|
+
ManagedBy?: string | undefined;
|
|
572
572
|
}
|
|
573
573
|
/**
|
|
574
574
|
* <p>There is an error with the datashare.</p>
|
|
@@ -616,12 +616,12 @@ export interface ClusterAssociatedToSchedule {
|
|
|
616
616
|
* <p></p>
|
|
617
617
|
* @public
|
|
618
618
|
*/
|
|
619
|
-
ClusterIdentifier?: string;
|
|
619
|
+
ClusterIdentifier?: string | undefined;
|
|
620
620
|
/**
|
|
621
621
|
* <p></p>
|
|
622
622
|
* @public
|
|
623
623
|
*/
|
|
624
|
-
ScheduleAssociationState?: ScheduleState;
|
|
624
|
+
ScheduleAssociationState?: ScheduleState | undefined;
|
|
625
625
|
}
|
|
626
626
|
/**
|
|
627
627
|
* <p>A cluster ID and custom domain name tied to a specific certificate. These are typically
|
|
@@ -633,12 +633,12 @@ export interface CertificateAssociation {
|
|
|
633
633
|
* <p>The custom domain name for the certificate association.</p>
|
|
634
634
|
* @public
|
|
635
635
|
*/
|
|
636
|
-
CustomDomainName?: string;
|
|
636
|
+
CustomDomainName?: string | undefined;
|
|
637
637
|
/**
|
|
638
638
|
* <p>The cluster identifier for the certificate association.</p>
|
|
639
639
|
* @public
|
|
640
640
|
*/
|
|
641
|
-
ClusterIdentifier?: string;
|
|
641
|
+
ClusterIdentifier?: string | undefined;
|
|
642
642
|
}
|
|
643
643
|
/**
|
|
644
644
|
* <p>Contains information about the custom domain name association.</p>
|
|
@@ -649,17 +649,17 @@ export interface Association {
|
|
|
649
649
|
* <p>The Amazon Resource Name (ARN) for the certificate associated with the custom domain.</p>
|
|
650
650
|
* @public
|
|
651
651
|
*/
|
|
652
|
-
CustomDomainCertificateArn?: string;
|
|
652
|
+
CustomDomainCertificateArn?: string | undefined;
|
|
653
653
|
/**
|
|
654
654
|
* <p>The expiration date for the certificate.</p>
|
|
655
655
|
* @public
|
|
656
656
|
*/
|
|
657
|
-
CustomDomainCertificateExpiryDate?: Date;
|
|
657
|
+
CustomDomainCertificateExpiryDate?: Date | undefined;
|
|
658
658
|
/**
|
|
659
659
|
* <p>A list of all associated clusters and domain names tied to a specific certificate.</p>
|
|
660
660
|
* @public
|
|
661
661
|
*/
|
|
662
|
-
CertificateAssociations?: CertificateAssociation[];
|
|
662
|
+
CertificateAssociations?: CertificateAssociation[] | undefined;
|
|
663
663
|
}
|
|
664
664
|
/**
|
|
665
665
|
* <p>Describes an authentication profile.</p>
|
|
@@ -670,13 +670,13 @@ export interface AuthenticationProfile {
|
|
|
670
670
|
* <p>The name of the authentication profile.</p>
|
|
671
671
|
* @public
|
|
672
672
|
*/
|
|
673
|
-
AuthenticationProfileName?: string;
|
|
673
|
+
AuthenticationProfileName?: string | undefined;
|
|
674
674
|
/**
|
|
675
675
|
* <p>The content of the authentication profile in JSON format.
|
|
676
676
|
* The maximum length of the JSON string is determined by a quota for your account.</p>
|
|
677
677
|
* @public
|
|
678
678
|
*/
|
|
679
|
-
AuthenticationProfileContent?: string;
|
|
679
|
+
AuthenticationProfileContent?: string | undefined;
|
|
680
680
|
}
|
|
681
681
|
/**
|
|
682
682
|
* <p>The authentication profile already exists.</p>
|
|
@@ -779,12 +779,12 @@ export interface AuthorizeClusterSecurityGroupIngressMessage {
|
|
|
779
779
|
* <p>The IP range to be added the Amazon Redshift security group.</p>
|
|
780
780
|
* @public
|
|
781
781
|
*/
|
|
782
|
-
CIDRIP?: string;
|
|
782
|
+
CIDRIP?: string | undefined;
|
|
783
783
|
/**
|
|
784
784
|
* <p>The EC2 security group to be added the Amazon Redshift security group.</p>
|
|
785
785
|
* @public
|
|
786
786
|
*/
|
|
787
|
-
EC2SecurityGroupName?: string;
|
|
787
|
+
EC2SecurityGroupName?: string | undefined;
|
|
788
788
|
/**
|
|
789
789
|
* <p>The Amazon Web Services account number of the owner of the security group specified by the
|
|
790
790
|
* <i>EC2SecurityGroupName</i> parameter. The Amazon Web Services Access Key ID is not an
|
|
@@ -793,7 +793,7 @@ export interface AuthorizeClusterSecurityGroupIngressMessage {
|
|
|
793
793
|
* </p>
|
|
794
794
|
* @public
|
|
795
795
|
*/
|
|
796
|
-
EC2SecurityGroupOwnerId?: string;
|
|
796
|
+
EC2SecurityGroupOwnerId?: string | undefined;
|
|
797
797
|
}
|
|
798
798
|
/**
|
|
799
799
|
* <p>A tag consisting of a name/value pair for a resource.</p>
|
|
@@ -804,12 +804,12 @@ export interface Tag {
|
|
|
804
804
|
* <p>The key, or name, for the resource tag.</p>
|
|
805
805
|
* @public
|
|
806
806
|
*/
|
|
807
|
-
Key?: string;
|
|
807
|
+
Key?: string | undefined;
|
|
808
808
|
/**
|
|
809
809
|
* <p>The value for the resource tag.</p>
|
|
810
810
|
* @public
|
|
811
811
|
*/
|
|
812
|
-
Value?: string;
|
|
812
|
+
Value?: string | undefined;
|
|
813
813
|
}
|
|
814
814
|
/**
|
|
815
815
|
* <p>Describes an Amazon EC2 security group.</p>
|
|
@@ -820,23 +820,23 @@ export interface EC2SecurityGroup {
|
|
|
820
820
|
* <p>The status of the EC2 security group.</p>
|
|
821
821
|
* @public
|
|
822
822
|
*/
|
|
823
|
-
Status?: string;
|
|
823
|
+
Status?: string | undefined;
|
|
824
824
|
/**
|
|
825
825
|
* <p>The name of the EC2 Security Group.</p>
|
|
826
826
|
* @public
|
|
827
827
|
*/
|
|
828
|
-
EC2SecurityGroupName?: string;
|
|
828
|
+
EC2SecurityGroupName?: string | undefined;
|
|
829
829
|
/**
|
|
830
830
|
* <p>The Amazon Web Services account ID of the owner of the EC2 security group specified in the
|
|
831
831
|
* <code>EC2SecurityGroupName</code> field. </p>
|
|
832
832
|
* @public
|
|
833
833
|
*/
|
|
834
|
-
EC2SecurityGroupOwnerId?: string;
|
|
834
|
+
EC2SecurityGroupOwnerId?: string | undefined;
|
|
835
835
|
/**
|
|
836
836
|
* <p>The list of tags for the EC2 security group.</p>
|
|
837
837
|
* @public
|
|
838
838
|
*/
|
|
839
|
-
Tags?: Tag[];
|
|
839
|
+
Tags?: Tag[] | undefined;
|
|
840
840
|
}
|
|
841
841
|
/**
|
|
842
842
|
* <p>Describes an IP range used in a security group.</p>
|
|
@@ -847,17 +847,17 @@ export interface IPRange {
|
|
|
847
847
|
* <p>The status of the IP range, for example, "authorized".</p>
|
|
848
848
|
* @public
|
|
849
849
|
*/
|
|
850
|
-
Status?: string;
|
|
850
|
+
Status?: string | undefined;
|
|
851
851
|
/**
|
|
852
852
|
* <p>The IP range in Classless Inter-Domain Routing (CIDR) notation.</p>
|
|
853
853
|
* @public
|
|
854
854
|
*/
|
|
855
|
-
CIDRIP?: string;
|
|
855
|
+
CIDRIP?: string | undefined;
|
|
856
856
|
/**
|
|
857
857
|
* <p>The list of tags for the IP range.</p>
|
|
858
858
|
* @public
|
|
859
859
|
*/
|
|
860
|
-
Tags?: Tag[];
|
|
860
|
+
Tags?: Tag[] | undefined;
|
|
861
861
|
}
|
|
862
862
|
/**
|
|
863
863
|
* <p>Describes a security group.</p>
|
|
@@ -869,29 +869,29 @@ export interface ClusterSecurityGroup {
|
|
|
869
869
|
* applied.</p>
|
|
870
870
|
* @public
|
|
871
871
|
*/
|
|
872
|
-
ClusterSecurityGroupName?: string;
|
|
872
|
+
ClusterSecurityGroupName?: string | undefined;
|
|
873
873
|
/**
|
|
874
874
|
* <p>A description of the security group.</p>
|
|
875
875
|
* @public
|
|
876
876
|
*/
|
|
877
|
-
Description?: string;
|
|
877
|
+
Description?: string | undefined;
|
|
878
878
|
/**
|
|
879
879
|
* <p>A list of EC2 security groups that are permitted to access clusters associated with
|
|
880
880
|
* this cluster security group.</p>
|
|
881
881
|
* @public
|
|
882
882
|
*/
|
|
883
|
-
EC2SecurityGroups?: EC2SecurityGroup[];
|
|
883
|
+
EC2SecurityGroups?: EC2SecurityGroup[] | undefined;
|
|
884
884
|
/**
|
|
885
885
|
* <p>A list of IP ranges (CIDR blocks) that are permitted to access clusters associated
|
|
886
886
|
* with this cluster security group.</p>
|
|
887
887
|
* @public
|
|
888
888
|
*/
|
|
889
|
-
IPRanges?: IPRange[];
|
|
889
|
+
IPRanges?: IPRange[] | undefined;
|
|
890
890
|
/**
|
|
891
891
|
* <p>The list of tags for the cluster security group.</p>
|
|
892
892
|
* @public
|
|
893
893
|
*/
|
|
894
|
-
Tags?: Tag[];
|
|
894
|
+
Tags?: Tag[] | undefined;
|
|
895
895
|
}
|
|
896
896
|
/**
|
|
897
897
|
* @public
|
|
@@ -901,7 +901,7 @@ export interface AuthorizeClusterSecurityGroupIngressResult {
|
|
|
901
901
|
* <p>Describes a security group.</p>
|
|
902
902
|
* @public
|
|
903
903
|
*/
|
|
904
|
-
ClusterSecurityGroup?: ClusterSecurityGroup;
|
|
904
|
+
ClusterSecurityGroup?: ClusterSecurityGroup | undefined;
|
|
905
905
|
}
|
|
906
906
|
/**
|
|
907
907
|
* <p>The cluster security group name does not refer to an existing cluster security
|
|
@@ -947,7 +947,7 @@ export interface AuthorizeDataShareMessage {
|
|
|
947
947
|
* <p>If set to true, allows write operations for a datashare.</p>
|
|
948
948
|
* @public
|
|
949
949
|
*/
|
|
950
|
-
AllowWrites?: boolean;
|
|
950
|
+
AllowWrites?: boolean | undefined;
|
|
951
951
|
}
|
|
952
952
|
/**
|
|
953
953
|
* <p>The authorized token issuer for the Amazon Redshift IAM Identity Center application.</p>
|
|
@@ -958,13 +958,13 @@ export interface AuthorizedTokenIssuer {
|
|
|
958
958
|
* <p>The ARN for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.</p>
|
|
959
959
|
* @public
|
|
960
960
|
*/
|
|
961
|
-
TrustedTokenIssuerArn?: string;
|
|
961
|
+
TrustedTokenIssuerArn?: string | undefined;
|
|
962
962
|
/**
|
|
963
963
|
* <p>The list of audiences for the authorized token issuer for integrating Amazon Redshift
|
|
964
964
|
* with IDC Identity Center.</p>
|
|
965
965
|
* @public
|
|
966
966
|
*/
|
|
967
|
-
AuthorizedAudiencesList?: string[];
|
|
967
|
+
AuthorizedAudiencesList?: string[] | undefined;
|
|
968
968
|
}
|
|
969
969
|
/**
|
|
970
970
|
* @public
|
|
@@ -974,7 +974,7 @@ export interface AuthorizeEndpointAccessMessage {
|
|
|
974
974
|
* <p>The cluster identifier of the cluster to grant access to.</p>
|
|
975
975
|
* @public
|
|
976
976
|
*/
|
|
977
|
-
ClusterIdentifier?: string;
|
|
977
|
+
ClusterIdentifier?: string | undefined;
|
|
978
978
|
/**
|
|
979
979
|
* <p>The Amazon Web Services account ID to grant access to.</p>
|
|
980
980
|
* @public
|
|
@@ -984,7 +984,7 @@ export interface AuthorizeEndpointAccessMessage {
|
|
|
984
984
|
* <p>The virtual private cloud (VPC) identifiers to grant access to.</p>
|
|
985
985
|
* @public
|
|
986
986
|
*/
|
|
987
|
-
VpcIds?: string[];
|
|
987
|
+
VpcIds?: string[] | undefined;
|
|
988
988
|
}
|
|
989
989
|
/**
|
|
990
990
|
* <p>Describes an endpoint authorization for authorizing Redshift-managed VPC endpoint access to a cluster across Amazon Web Services accounts.</p>
|
|
@@ -995,47 +995,47 @@ export interface EndpointAuthorization {
|
|
|
995
995
|
* <p>The Amazon Web Services account ID of the cluster owner.</p>
|
|
996
996
|
* @public
|
|
997
997
|
*/
|
|
998
|
-
Grantor?: string;
|
|
998
|
+
Grantor?: string | undefined;
|
|
999
999
|
/**
|
|
1000
1000
|
* <p>The Amazon Web Services account ID of the grantee of the cluster.</p>
|
|
1001
1001
|
* @public
|
|
1002
1002
|
*/
|
|
1003
|
-
Grantee?: string;
|
|
1003
|
+
Grantee?: string | undefined;
|
|
1004
1004
|
/**
|
|
1005
1005
|
* <p>The cluster identifier.</p>
|
|
1006
1006
|
* @public
|
|
1007
1007
|
*/
|
|
1008
|
-
ClusterIdentifier?: string;
|
|
1008
|
+
ClusterIdentifier?: string | undefined;
|
|
1009
1009
|
/**
|
|
1010
1010
|
* <p>The time (UTC) when the authorization was created.</p>
|
|
1011
1011
|
* @public
|
|
1012
1012
|
*/
|
|
1013
|
-
AuthorizeTime?: Date;
|
|
1013
|
+
AuthorizeTime?: Date | undefined;
|
|
1014
1014
|
/**
|
|
1015
1015
|
* <p>The status of the cluster.</p>
|
|
1016
1016
|
* @public
|
|
1017
1017
|
*/
|
|
1018
|
-
ClusterStatus?: string;
|
|
1018
|
+
ClusterStatus?: string | undefined;
|
|
1019
1019
|
/**
|
|
1020
1020
|
* <p>The status of the authorization action.</p>
|
|
1021
1021
|
* @public
|
|
1022
1022
|
*/
|
|
1023
|
-
Status?: AuthorizationStatus;
|
|
1023
|
+
Status?: AuthorizationStatus | undefined;
|
|
1024
1024
|
/**
|
|
1025
1025
|
* <p>Indicates whether all VPCs in the grantee account are allowed access to the cluster.</p>
|
|
1026
1026
|
* @public
|
|
1027
1027
|
*/
|
|
1028
|
-
AllowedAllVPCs?: boolean;
|
|
1028
|
+
AllowedAllVPCs?: boolean | undefined;
|
|
1029
1029
|
/**
|
|
1030
1030
|
* <p>The VPCs allowed access to the cluster.</p>
|
|
1031
1031
|
* @public
|
|
1032
1032
|
*/
|
|
1033
|
-
AllowedVPCs?: string[];
|
|
1033
|
+
AllowedVPCs?: string[] | undefined;
|
|
1034
1034
|
/**
|
|
1035
1035
|
* <p>The number of Redshift-managed VPC endpoints created for the authorization.</p>
|
|
1036
1036
|
* @public
|
|
1037
1037
|
*/
|
|
1038
|
-
EndpointCount?: number;
|
|
1038
|
+
EndpointCount?: number | undefined;
|
|
1039
1039
|
}
|
|
1040
1040
|
/**
|
|
1041
1041
|
* <p>The authorization already exists for this endpoint.</p>
|
|
@@ -1094,12 +1094,12 @@ export interface AuthorizeSnapshotAccessMessage {
|
|
|
1094
1094
|
* <p>The identifier of the snapshot the account is authorized to restore.</p>
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
SnapshotIdentifier?: string;
|
|
1097
|
+
SnapshotIdentifier?: string | undefined;
|
|
1098
1098
|
/**
|
|
1099
1099
|
* <p>The Amazon Resource Name (ARN) of the snapshot to authorize access to.</p>
|
|
1100
1100
|
* @public
|
|
1101
1101
|
*/
|
|
1102
|
-
SnapshotArn?: string;
|
|
1102
|
+
SnapshotArn?: string | undefined;
|
|
1103
1103
|
/**
|
|
1104
1104
|
* <p>The identifier of the cluster the snapshot was created from.</p>
|
|
1105
1105
|
* <ul>
|
|
@@ -1116,7 +1116,7 @@ export interface AuthorizeSnapshotAccessMessage {
|
|
|
1116
1116
|
* </ul>
|
|
1117
1117
|
* @public
|
|
1118
1118
|
*/
|
|
1119
|
-
SnapshotClusterIdentifier?: string;
|
|
1119
|
+
SnapshotClusterIdentifier?: string | undefined;
|
|
1120
1120
|
/**
|
|
1121
1121
|
* <p>The identifier of the Amazon Web Services account authorized to restore the specified
|
|
1122
1122
|
* snapshot.</p>
|
|
@@ -1134,18 +1134,18 @@ export interface Snapshot {
|
|
|
1134
1134
|
* <p>The snapshot identifier that is provided in the request.</p>
|
|
1135
1135
|
* @public
|
|
1136
1136
|
*/
|
|
1137
|
-
SnapshotIdentifier?: string;
|
|
1137
|
+
SnapshotIdentifier?: string | undefined;
|
|
1138
1138
|
/**
|
|
1139
1139
|
* <p>The identifier of the cluster for which the snapshot was taken.</p>
|
|
1140
1140
|
* @public
|
|
1141
1141
|
*/
|
|
1142
|
-
ClusterIdentifier?: string;
|
|
1142
|
+
ClusterIdentifier?: string | undefined;
|
|
1143
1143
|
/**
|
|
1144
1144
|
* <p>The time (in UTC format) when Amazon Redshift began the snapshot. A snapshot contains a
|
|
1145
1145
|
* copy of the cluster data as of this exact time.</p>
|
|
1146
1146
|
* @public
|
|
1147
1147
|
*/
|
|
1148
|
-
SnapshotCreateTime?: Date;
|
|
1148
|
+
SnapshotCreateTime?: Date | undefined;
|
|
1149
1149
|
/**
|
|
1150
1150
|
* <p>The snapshot status. The value of the status depends on the API operation used: </p>
|
|
1151
1151
|
* <ul>
|
|
@@ -1165,147 +1165,147 @@ export interface Snapshot {
|
|
|
1165
1165
|
* </ul>
|
|
1166
1166
|
* @public
|
|
1167
1167
|
*/
|
|
1168
|
-
Status?: string;
|
|
1168
|
+
Status?: string | undefined;
|
|
1169
1169
|
/**
|
|
1170
1170
|
* <p>The port that the cluster is listening on.</p>
|
|
1171
1171
|
* @public
|
|
1172
1172
|
*/
|
|
1173
|
-
Port?: number;
|
|
1173
|
+
Port?: number | undefined;
|
|
1174
1174
|
/**
|
|
1175
1175
|
* <p>The Availability Zone in which the cluster was created.</p>
|
|
1176
1176
|
* @public
|
|
1177
1177
|
*/
|
|
1178
|
-
AvailabilityZone?: string;
|
|
1178
|
+
AvailabilityZone?: string | undefined;
|
|
1179
1179
|
/**
|
|
1180
1180
|
* <p>The time (UTC) when the cluster was originally created.</p>
|
|
1181
1181
|
* @public
|
|
1182
1182
|
*/
|
|
1183
|
-
ClusterCreateTime?: Date;
|
|
1183
|
+
ClusterCreateTime?: Date | undefined;
|
|
1184
1184
|
/**
|
|
1185
1185
|
* <p>The admin user name for the cluster.</p>
|
|
1186
1186
|
* @public
|
|
1187
1187
|
*/
|
|
1188
|
-
MasterUsername?: string;
|
|
1188
|
+
MasterUsername?: string | undefined;
|
|
1189
1189
|
/**
|
|
1190
1190
|
* <p>The version ID of the Amazon Redshift engine that is running on the cluster.</p>
|
|
1191
1191
|
* @public
|
|
1192
1192
|
*/
|
|
1193
|
-
ClusterVersion?: string;
|
|
1193
|
+
ClusterVersion?: string | undefined;
|
|
1194
1194
|
/**
|
|
1195
1195
|
* <p>The cluster version of the cluster used to create the snapshot. For example, 1.0.15503. </p>
|
|
1196
1196
|
* @public
|
|
1197
1197
|
*/
|
|
1198
|
-
EngineFullVersion?: string;
|
|
1198
|
+
EngineFullVersion?: string | undefined;
|
|
1199
1199
|
/**
|
|
1200
1200
|
* <p>The snapshot type. Snapshots created using <a>CreateClusterSnapshot</a>
|
|
1201
1201
|
* and <a>CopyClusterSnapshot</a> are of type "manual". </p>
|
|
1202
1202
|
* @public
|
|
1203
1203
|
*/
|
|
1204
|
-
SnapshotType?: string;
|
|
1204
|
+
SnapshotType?: string | undefined;
|
|
1205
1205
|
/**
|
|
1206
1206
|
* <p>The node type of the nodes in the cluster.</p>
|
|
1207
1207
|
* @public
|
|
1208
1208
|
*/
|
|
1209
|
-
NodeType?: string;
|
|
1209
|
+
NodeType?: string | undefined;
|
|
1210
1210
|
/**
|
|
1211
1211
|
* <p>The number of nodes in the cluster.</p>
|
|
1212
1212
|
* @public
|
|
1213
1213
|
*/
|
|
1214
|
-
NumberOfNodes?: number;
|
|
1214
|
+
NumberOfNodes?: number | undefined;
|
|
1215
1215
|
/**
|
|
1216
1216
|
* <p>The name of the database that was created when the cluster was created.</p>
|
|
1217
1217
|
* @public
|
|
1218
1218
|
*/
|
|
1219
|
-
DBName?: string;
|
|
1219
|
+
DBName?: string | undefined;
|
|
1220
1220
|
/**
|
|
1221
1221
|
* <p>The VPC identifier of the cluster if the snapshot is from a cluster in a VPC.
|
|
1222
1222
|
* Otherwise, this field is not in the output.</p>
|
|
1223
1223
|
* @public
|
|
1224
1224
|
*/
|
|
1225
|
-
VpcId?: string;
|
|
1225
|
+
VpcId?: string | undefined;
|
|
1226
1226
|
/**
|
|
1227
1227
|
* <p>If <code>true</code>, the data in the snapshot is encrypted at rest.</p>
|
|
1228
1228
|
* @public
|
|
1229
1229
|
*/
|
|
1230
|
-
Encrypted?: boolean;
|
|
1230
|
+
Encrypted?: boolean | undefined;
|
|
1231
1231
|
/**
|
|
1232
1232
|
* <p>The Key Management Service (KMS) key ID of the encryption key that was used to
|
|
1233
1233
|
* encrypt data in the cluster from which the snapshot was taken.</p>
|
|
1234
1234
|
* @public
|
|
1235
1235
|
*/
|
|
1236
|
-
KmsKeyId?: string;
|
|
1236
|
+
KmsKeyId?: string | undefined;
|
|
1237
1237
|
/**
|
|
1238
1238
|
* <p>A boolean that indicates whether the snapshot data is encrypted using the HSM keys
|
|
1239
1239
|
* of the source cluster. <code>true</code> indicates that the data is encrypted using HSM
|
|
1240
1240
|
* keys.</p>
|
|
1241
1241
|
* @public
|
|
1242
1242
|
*/
|
|
1243
|
-
EncryptedWithHSM?: boolean;
|
|
1243
|
+
EncryptedWithHSM?: boolean | undefined;
|
|
1244
1244
|
/**
|
|
1245
1245
|
* <p>A list of the Amazon Web Services accounts authorized to restore the snapshot. Returns
|
|
1246
1246
|
* <code>null</code> if no accounts are authorized. Visible only to the snapshot owner.
|
|
1247
1247
|
* </p>
|
|
1248
1248
|
* @public
|
|
1249
1249
|
*/
|
|
1250
|
-
AccountsWithRestoreAccess?: AccountWithRestoreAccess[];
|
|
1250
|
+
AccountsWithRestoreAccess?: AccountWithRestoreAccess[] | undefined;
|
|
1251
1251
|
/**
|
|
1252
1252
|
* <p>For manual snapshots, the Amazon Web Services account used to create or copy the snapshot.
|
|
1253
1253
|
* For automatic snapshots, the owner of the cluster. The owner can perform all snapshot
|
|
1254
1254
|
* actions, such as sharing a manual snapshot.</p>
|
|
1255
1255
|
* @public
|
|
1256
1256
|
*/
|
|
1257
|
-
OwnerAccount?: string;
|
|
1257
|
+
OwnerAccount?: string | undefined;
|
|
1258
1258
|
/**
|
|
1259
1259
|
* <p>The size of the complete set of backup data that would be used to restore the
|
|
1260
1260
|
* cluster.</p>
|
|
1261
1261
|
* @public
|
|
1262
1262
|
*/
|
|
1263
|
-
TotalBackupSizeInMegaBytes?: number;
|
|
1263
|
+
TotalBackupSizeInMegaBytes?: number | undefined;
|
|
1264
1264
|
/**
|
|
1265
1265
|
* <p>The size of the incremental backup.</p>
|
|
1266
1266
|
* @public
|
|
1267
1267
|
*/
|
|
1268
|
-
ActualIncrementalBackupSizeInMegaBytes?: number;
|
|
1268
|
+
ActualIncrementalBackupSizeInMegaBytes?: number | undefined;
|
|
1269
1269
|
/**
|
|
1270
1270
|
* <p>The number of megabytes that have been transferred to the snapshot
|
|
1271
1271
|
* backup.</p>
|
|
1272
1272
|
* @public
|
|
1273
1273
|
*/
|
|
1274
|
-
BackupProgressInMegaBytes?: number;
|
|
1274
|
+
BackupProgressInMegaBytes?: number | undefined;
|
|
1275
1275
|
/**
|
|
1276
1276
|
* <p>The number of megabytes per second being transferred to the snapshot backup.
|
|
1277
1277
|
* Returns <code>0</code> for a completed backup. </p>
|
|
1278
1278
|
* @public
|
|
1279
1279
|
*/
|
|
1280
|
-
CurrentBackupRateInMegaBytesPerSecond?: number;
|
|
1280
|
+
CurrentBackupRateInMegaBytesPerSecond?: number | undefined;
|
|
1281
1281
|
/**
|
|
1282
1282
|
* <p>The estimate of the time remaining before the snapshot backup will complete.
|
|
1283
1283
|
* Returns <code>0</code> for a completed backup. </p>
|
|
1284
1284
|
* @public
|
|
1285
1285
|
*/
|
|
1286
|
-
EstimatedSecondsToCompletion?: number;
|
|
1286
|
+
EstimatedSecondsToCompletion?: number | undefined;
|
|
1287
1287
|
/**
|
|
1288
1288
|
* <p>The amount of time an in-progress snapshot backup has been running, or the amount
|
|
1289
1289
|
* of time it took a completed backup to finish.</p>
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
ElapsedTimeInSeconds?: number;
|
|
1292
|
+
ElapsedTimeInSeconds?: number | undefined;
|
|
1293
1293
|
/**
|
|
1294
1294
|
* <p>The source region from which the snapshot was copied.</p>
|
|
1295
1295
|
* @public
|
|
1296
1296
|
*/
|
|
1297
|
-
SourceRegion?: string;
|
|
1297
|
+
SourceRegion?: string | undefined;
|
|
1298
1298
|
/**
|
|
1299
1299
|
* <p>The list of tags for the cluster snapshot.</p>
|
|
1300
1300
|
* @public
|
|
1301
1301
|
*/
|
|
1302
|
-
Tags?: Tag[];
|
|
1302
|
+
Tags?: Tag[] | undefined;
|
|
1303
1303
|
/**
|
|
1304
1304
|
* <p>The list of node types that this cluster snapshot is able to restore
|
|
1305
1305
|
* into.</p>
|
|
1306
1306
|
* @public
|
|
1307
1307
|
*/
|
|
1308
|
-
RestorableNodeTypes?: string[];
|
|
1308
|
+
RestorableNodeTypes?: string[] | undefined;
|
|
1309
1309
|
/**
|
|
1310
1310
|
* <p>An option that specifies whether to create the cluster with enhanced VPC routing
|
|
1311
1311
|
* enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a
|
|
@@ -1315,44 +1315,44 @@ export interface Snapshot {
|
|
|
1315
1315
|
* <p>Default: false</p>
|
|
1316
1316
|
* @public
|
|
1317
1317
|
*/
|
|
1318
|
-
EnhancedVpcRouting?: boolean;
|
|
1318
|
+
EnhancedVpcRouting?: boolean | undefined;
|
|
1319
1319
|
/**
|
|
1320
1320
|
* <p>The name of the maintenance track for the snapshot.</p>
|
|
1321
1321
|
* @public
|
|
1322
1322
|
*/
|
|
1323
|
-
MaintenanceTrackName?: string;
|
|
1323
|
+
MaintenanceTrackName?: string | undefined;
|
|
1324
1324
|
/**
|
|
1325
1325
|
* <p>The number of days that a manual snapshot is retained. If the value is -1, the manual
|
|
1326
1326
|
* snapshot is retained indefinitely. </p>
|
|
1327
1327
|
* <p>The value must be either -1 or an integer between 1 and 3,653.</p>
|
|
1328
1328
|
* @public
|
|
1329
1329
|
*/
|
|
1330
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
1330
|
+
ManualSnapshotRetentionPeriod?: number | undefined;
|
|
1331
1331
|
/**
|
|
1332
1332
|
* <p>The number of days until a manual snapshot will pass its retention period.</p>
|
|
1333
1333
|
* @public
|
|
1334
1334
|
*/
|
|
1335
|
-
ManualSnapshotRemainingDays?: number;
|
|
1335
|
+
ManualSnapshotRemainingDays?: number | undefined;
|
|
1336
1336
|
/**
|
|
1337
1337
|
* <p>A timestamp representing the start of the retention period for the snapshot.</p>
|
|
1338
1338
|
* @public
|
|
1339
1339
|
*/
|
|
1340
|
-
SnapshotRetentionStartTime?: Date;
|
|
1340
|
+
SnapshotRetentionStartTime?: Date | undefined;
|
|
1341
1341
|
/**
|
|
1342
1342
|
* <p>The Amazon Resource Name (ARN) for the cluster's admin user credentials secret.</p>
|
|
1343
1343
|
* @public
|
|
1344
1344
|
*/
|
|
1345
|
-
MasterPasswordSecretArn?: string;
|
|
1345
|
+
MasterPasswordSecretArn?: string | undefined;
|
|
1346
1346
|
/**
|
|
1347
1347
|
* <p>The ID of the Key Management Service (KMS) key used to encrypt and store the cluster's admin credentials secret.</p>
|
|
1348
1348
|
* @public
|
|
1349
1349
|
*/
|
|
1350
|
-
MasterPasswordSecretKmsKeyId?: string;
|
|
1350
|
+
MasterPasswordSecretKmsKeyId?: string | undefined;
|
|
1351
1351
|
/**
|
|
1352
1352
|
* <p>The Amazon Resource Name (ARN) of the snapshot.</p>
|
|
1353
1353
|
* @public
|
|
1354
1354
|
*/
|
|
1355
|
-
SnapshotArn?: string;
|
|
1355
|
+
SnapshotArn?: string | undefined;
|
|
1356
1356
|
}
|
|
1357
1357
|
/**
|
|
1358
1358
|
* @public
|
|
@@ -1362,7 +1362,7 @@ export interface AuthorizeSnapshotAccessResult {
|
|
|
1362
1362
|
* <p>Describes a snapshot.</p>
|
|
1363
1363
|
* @public
|
|
1364
1364
|
*/
|
|
1365
|
-
Snapshot?: Snapshot;
|
|
1365
|
+
Snapshot?: Snapshot | undefined;
|
|
1366
1366
|
}
|
|
1367
1367
|
/**
|
|
1368
1368
|
* <p>The snapshot identifier does not refer to an existing cluster snapshot.</p>
|
|
@@ -1423,7 +1423,7 @@ export interface SupportedPlatform {
|
|
|
1423
1423
|
* <p></p>
|
|
1424
1424
|
* @public
|
|
1425
1425
|
*/
|
|
1426
|
-
Name?: string;
|
|
1426
|
+
Name?: string | undefined;
|
|
1427
1427
|
}
|
|
1428
1428
|
/**
|
|
1429
1429
|
* <p>Describes an availability zone.</p>
|
|
@@ -1434,12 +1434,12 @@ export interface AvailabilityZone {
|
|
|
1434
1434
|
* <p>The name of the availability zone.</p>
|
|
1435
1435
|
* @public
|
|
1436
1436
|
*/
|
|
1437
|
-
Name?: string;
|
|
1437
|
+
Name?: string | undefined;
|
|
1438
1438
|
/**
|
|
1439
1439
|
* <p></p>
|
|
1440
1440
|
* @public
|
|
1441
1441
|
*/
|
|
1442
|
-
SupportedPlatforms?: SupportedPlatform[];
|
|
1442
|
+
SupportedPlatforms?: SupportedPlatform[] | undefined;
|
|
1443
1443
|
}
|
|
1444
1444
|
/**
|
|
1445
1445
|
* <p></p>
|
|
@@ -1461,7 +1461,7 @@ export interface DeleteClusterSnapshotMessage {
|
|
|
1461
1461
|
* <p>Constraints: Must be the name of valid cluster.</p>
|
|
1462
1462
|
* @public
|
|
1463
1463
|
*/
|
|
1464
|
-
SnapshotClusterIdentifier?: string;
|
|
1464
|
+
SnapshotClusterIdentifier?: string | undefined;
|
|
1465
1465
|
}
|
|
1466
1466
|
/**
|
|
1467
1467
|
* @public
|
|
@@ -1482,22 +1482,22 @@ export interface SnapshotErrorMessage {
|
|
|
1482
1482
|
* <p>A unique identifier for the snapshot returning the error.</p>
|
|
1483
1483
|
* @public
|
|
1484
1484
|
*/
|
|
1485
|
-
SnapshotIdentifier?: string;
|
|
1485
|
+
SnapshotIdentifier?: string | undefined;
|
|
1486
1486
|
/**
|
|
1487
1487
|
* <p>A unique identifier for the cluster.</p>
|
|
1488
1488
|
* @public
|
|
1489
1489
|
*/
|
|
1490
|
-
SnapshotClusterIdentifier?: string;
|
|
1490
|
+
SnapshotClusterIdentifier?: string | undefined;
|
|
1491
1491
|
/**
|
|
1492
1492
|
* <p>The failure code for the error.</p>
|
|
1493
1493
|
* @public
|
|
1494
1494
|
*/
|
|
1495
|
-
FailureCode?: string;
|
|
1495
|
+
FailureCode?: string | undefined;
|
|
1496
1496
|
/**
|
|
1497
1497
|
* <p>The text message describing the error.</p>
|
|
1498
1498
|
* @public
|
|
1499
1499
|
*/
|
|
1500
|
-
FailureReason?: string;
|
|
1500
|
+
FailureReason?: string | undefined;
|
|
1501
1501
|
}
|
|
1502
1502
|
/**
|
|
1503
1503
|
* @public
|
|
@@ -1507,12 +1507,12 @@ export interface BatchDeleteClusterSnapshotsResult {
|
|
|
1507
1507
|
* <p>A list of the snapshot identifiers that were deleted. </p>
|
|
1508
1508
|
* @public
|
|
1509
1509
|
*/
|
|
1510
|
-
Resources?: string[];
|
|
1510
|
+
Resources?: string[] | undefined;
|
|
1511
1511
|
/**
|
|
1512
1512
|
* <p>A list of any errors returned.</p>
|
|
1513
1513
|
* @public
|
|
1514
1514
|
*/
|
|
1515
|
-
Errors?: SnapshotErrorMessage[];
|
|
1515
|
+
Errors?: SnapshotErrorMessage[] | undefined;
|
|
1516
1516
|
}
|
|
1517
1517
|
/**
|
|
1518
1518
|
* <p>The maximum number for a batch delete of snapshots has been reached. The limit is
|
|
@@ -1558,13 +1558,13 @@ export interface BatchModifyClusterSnapshotsMessage {
|
|
|
1558
1558
|
* you want to suppress the errors and delete the snapshots, use the force option. </p>
|
|
1559
1559
|
* @public
|
|
1560
1560
|
*/
|
|
1561
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
1561
|
+
ManualSnapshotRetentionPeriod?: number | undefined;
|
|
1562
1562
|
/**
|
|
1563
1563
|
* <p>A boolean value indicating whether to override an exception if the retention period
|
|
1564
1564
|
* has passed. </p>
|
|
1565
1565
|
* @public
|
|
1566
1566
|
*/
|
|
1567
|
-
Force?: boolean;
|
|
1567
|
+
Force?: boolean | undefined;
|
|
1568
1568
|
}
|
|
1569
1569
|
/**
|
|
1570
1570
|
* @public
|
|
@@ -1574,12 +1574,12 @@ export interface BatchModifyClusterSnapshotsOutputMessage {
|
|
|
1574
1574
|
* <p>A list of the snapshots that were modified.</p>
|
|
1575
1575
|
* @public
|
|
1576
1576
|
*/
|
|
1577
|
-
Resources?: string[];
|
|
1577
|
+
Resources?: string[] | undefined;
|
|
1578
1578
|
/**
|
|
1579
1579
|
* <p>A list of any errors returned.</p>
|
|
1580
1580
|
* @public
|
|
1581
1581
|
*/
|
|
1582
|
-
Errors?: SnapshotErrorMessage[];
|
|
1582
|
+
Errors?: SnapshotErrorMessage[] | undefined;
|
|
1583
1583
|
}
|
|
1584
1584
|
/**
|
|
1585
1585
|
* <p>The retention period specified is either in the past or is not a valid value.</p>
|
|
@@ -1639,20 +1639,20 @@ export interface ResizeProgressMessage {
|
|
|
1639
1639
|
* complete.</p>
|
|
1640
1640
|
* @public
|
|
1641
1641
|
*/
|
|
1642
|
-
TargetNodeType?: string;
|
|
1642
|
+
TargetNodeType?: string | undefined;
|
|
1643
1643
|
/**
|
|
1644
1644
|
* <p>The number of nodes that the cluster will have after the resize operation is
|
|
1645
1645
|
* complete.</p>
|
|
1646
1646
|
* @public
|
|
1647
1647
|
*/
|
|
1648
|
-
TargetNumberOfNodes?: number;
|
|
1648
|
+
TargetNumberOfNodes?: number | undefined;
|
|
1649
1649
|
/**
|
|
1650
1650
|
* <p>The cluster type after the resize operation is complete.</p>
|
|
1651
1651
|
* <p>Valid Values: <code>multi-node</code> | <code>single-node</code>
|
|
1652
1652
|
* </p>
|
|
1653
1653
|
* @public
|
|
1654
1654
|
*/
|
|
1655
|
-
TargetClusterType?: string;
|
|
1655
|
+
TargetClusterType?: string | undefined;
|
|
1656
1656
|
/**
|
|
1657
1657
|
* <p>The status of the resize operation.</p>
|
|
1658
1658
|
* <p>Valid Values: <code>NONE</code> | <code>IN_PROGRESS</code> | <code>FAILED</code> |
|
|
@@ -1660,38 +1660,38 @@ export interface ResizeProgressMessage {
|
|
|
1660
1660
|
* </p>
|
|
1661
1661
|
* @public
|
|
1662
1662
|
*/
|
|
1663
|
-
Status?: string;
|
|
1663
|
+
Status?: string | undefined;
|
|
1664
1664
|
/**
|
|
1665
1665
|
* <p>The names of tables that have been completely imported .</p>
|
|
1666
1666
|
* <p>Valid Values: List of table names.</p>
|
|
1667
1667
|
* @public
|
|
1668
1668
|
*/
|
|
1669
|
-
ImportTablesCompleted?: string[];
|
|
1669
|
+
ImportTablesCompleted?: string[] | undefined;
|
|
1670
1670
|
/**
|
|
1671
1671
|
* <p>The names of tables that are being currently imported.</p>
|
|
1672
1672
|
* <p>Valid Values: List of table names.</p>
|
|
1673
1673
|
* @public
|
|
1674
1674
|
*/
|
|
1675
|
-
ImportTablesInProgress?: string[];
|
|
1675
|
+
ImportTablesInProgress?: string[] | undefined;
|
|
1676
1676
|
/**
|
|
1677
1677
|
* <p>The names of tables that have not been yet imported.</p>
|
|
1678
1678
|
* <p>Valid Values: List of table names</p>
|
|
1679
1679
|
* @public
|
|
1680
1680
|
*/
|
|
1681
|
-
ImportTablesNotStarted?: string[];
|
|
1681
|
+
ImportTablesNotStarted?: string[] | undefined;
|
|
1682
1682
|
/**
|
|
1683
1683
|
* <p>The average rate of the resize operation over the last few minutes, measured in
|
|
1684
1684
|
* megabytes per second. After the resize operation completes, this value shows the average
|
|
1685
1685
|
* rate of the entire resize operation.</p>
|
|
1686
1686
|
* @public
|
|
1687
1687
|
*/
|
|
1688
|
-
AvgResizeRateInMegaBytesPerSecond?: number;
|
|
1688
|
+
AvgResizeRateInMegaBytesPerSecond?: number | undefined;
|
|
1689
1689
|
/**
|
|
1690
1690
|
* <p>The estimated total amount of data, in megabytes, on the cluster before the resize
|
|
1691
1691
|
* operation began.</p>
|
|
1692
1692
|
* @public
|
|
1693
1693
|
*/
|
|
1694
|
-
TotalResizeDataInMegaBytes?: number;
|
|
1694
|
+
TotalResizeDataInMegaBytes?: number | undefined;
|
|
1695
1695
|
/**
|
|
1696
1696
|
* <p>While the resize operation is in progress, this value shows the current amount of
|
|
1697
1697
|
* data, in megabytes, that has been processed so far. When the resize operation is
|
|
@@ -1700,14 +1700,14 @@ export interface ResizeProgressMessage {
|
|
|
1700
1700
|
* before resize).</p>
|
|
1701
1701
|
* @public
|
|
1702
1702
|
*/
|
|
1703
|
-
ProgressInMegaBytes?: number;
|
|
1703
|
+
ProgressInMegaBytes?: number | undefined;
|
|
1704
1704
|
/**
|
|
1705
1705
|
* <p>The amount of seconds that have elapsed since the resize operation began. After the
|
|
1706
1706
|
* resize operation completes, this value shows the total actual time, in seconds, for the
|
|
1707
1707
|
* resize operation.</p>
|
|
1708
1708
|
* @public
|
|
1709
1709
|
*/
|
|
1710
|
-
ElapsedTimeInSeconds?: number;
|
|
1710
|
+
ElapsedTimeInSeconds?: number | undefined;
|
|
1711
1711
|
/**
|
|
1712
1712
|
* <p>The estimated time remaining, in seconds, until the resize operation is complete.
|
|
1713
1713
|
* This value is calculated based on the average resize rate and the estimated amount of
|
|
@@ -1715,30 +1715,30 @@ export interface ResizeProgressMessage {
|
|
|
1715
1715
|
* be 0.</p>
|
|
1716
1716
|
* @public
|
|
1717
1717
|
*/
|
|
1718
|
-
EstimatedTimeToCompletionInSeconds?: number;
|
|
1718
|
+
EstimatedTimeToCompletionInSeconds?: number | undefined;
|
|
1719
1719
|
/**
|
|
1720
1720
|
* <p>An enum with possible values of <code>ClassicResize</code> and
|
|
1721
1721
|
* <code>ElasticResize</code>. These values describe the type of resize operation being
|
|
1722
1722
|
* performed. </p>
|
|
1723
1723
|
* @public
|
|
1724
1724
|
*/
|
|
1725
|
-
ResizeType?: string;
|
|
1725
|
+
ResizeType?: string | undefined;
|
|
1726
1726
|
/**
|
|
1727
1727
|
* <p>An optional string to provide additional details about the resize action.</p>
|
|
1728
1728
|
* @public
|
|
1729
1729
|
*/
|
|
1730
|
-
Message?: string;
|
|
1730
|
+
Message?: string | undefined;
|
|
1731
1731
|
/**
|
|
1732
1732
|
* <p>The type of encryption for the cluster after the resize is complete.</p>
|
|
1733
1733
|
* <p>Possible values are <code>KMS</code> and <code>None</code>. </p>
|
|
1734
1734
|
* @public
|
|
1735
1735
|
*/
|
|
1736
|
-
TargetEncryptionType?: string;
|
|
1736
|
+
TargetEncryptionType?: string | undefined;
|
|
1737
1737
|
/**
|
|
1738
1738
|
* <p>The percent of data transferred from source cluster to target cluster.</p>
|
|
1739
1739
|
* @public
|
|
1740
1740
|
*/
|
|
1741
|
-
DataTransferProgressPercent?: number;
|
|
1741
|
+
DataTransferProgressPercent?: number | undefined;
|
|
1742
1742
|
}
|
|
1743
1743
|
/**
|
|
1744
1744
|
* <p>The identifier of a node in a cluster.</p>
|
|
@@ -1749,17 +1749,17 @@ export interface ClusterNode {
|
|
|
1749
1749
|
* <p>Whether the node is a leader node or a compute node.</p>
|
|
1750
1750
|
* @public
|
|
1751
1751
|
*/
|
|
1752
|
-
NodeRole?: string;
|
|
1752
|
+
NodeRole?: string | undefined;
|
|
1753
1753
|
/**
|
|
1754
1754
|
* <p>The private IP address of a node within a cluster.</p>
|
|
1755
1755
|
* @public
|
|
1756
1756
|
*/
|
|
1757
|
-
PrivateIPAddress?: string;
|
|
1757
|
+
PrivateIPAddress?: string | undefined;
|
|
1758
1758
|
/**
|
|
1759
1759
|
* <p>The public IP address of a node within a cluster.</p>
|
|
1760
1760
|
* @public
|
|
1761
1761
|
*/
|
|
1762
|
-
PublicIPAddress?: string;
|
|
1762
|
+
PublicIPAddress?: string | undefined;
|
|
1763
1763
|
}
|
|
1764
1764
|
/**
|
|
1765
1765
|
* <p>Describes the status of a parameter group.</p>
|
|
@@ -1770,7 +1770,7 @@ export interface ClusterParameterStatus {
|
|
|
1770
1770
|
* <p>The name of the parameter.</p>
|
|
1771
1771
|
* @public
|
|
1772
1772
|
*/
|
|
1773
|
-
ParameterName?: string;
|
|
1773
|
+
ParameterName?: string | undefined;
|
|
1774
1774
|
/**
|
|
1775
1775
|
* <p>The status of the parameter that indicates whether the parameter is in sync with
|
|
1776
1776
|
* the database, waiting for a cluster reboot, or encountered an error when being
|
|
@@ -1815,13 +1815,13 @@ export interface ClusterParameterStatus {
|
|
|
1815
1815
|
* </ul>
|
|
1816
1816
|
* @public
|
|
1817
1817
|
*/
|
|
1818
|
-
ParameterApplyStatus?: string;
|
|
1818
|
+
ParameterApplyStatus?: string | undefined;
|
|
1819
1819
|
/**
|
|
1820
1820
|
* <p>The error that prevented the parameter from being applied to the
|
|
1821
1821
|
* database.</p>
|
|
1822
1822
|
* @public
|
|
1823
1823
|
*/
|
|
1824
|
-
ParameterApplyErrorDescription?: string;
|
|
1824
|
+
ParameterApplyErrorDescription?: string | undefined;
|
|
1825
1825
|
}
|
|
1826
1826
|
/**
|
|
1827
1827
|
* <p>Describes the status of a parameter group.</p>
|
|
@@ -1832,12 +1832,12 @@ export interface ClusterParameterGroupStatus {
|
|
|
1832
1832
|
* <p>The name of the cluster parameter group.</p>
|
|
1833
1833
|
* @public
|
|
1834
1834
|
*/
|
|
1835
|
-
ParameterGroupName?: string;
|
|
1835
|
+
ParameterGroupName?: string | undefined;
|
|
1836
1836
|
/**
|
|
1837
1837
|
* <p>The status of parameter updates.</p>
|
|
1838
1838
|
* @public
|
|
1839
1839
|
*/
|
|
1840
|
-
ParameterApplyStatus?: string;
|
|
1840
|
+
ParameterApplyStatus?: string | undefined;
|
|
1841
1841
|
/**
|
|
1842
1842
|
* <p>The list of parameter statuses.</p>
|
|
1843
1843
|
* <p>
|
|
@@ -1846,7 +1846,7 @@ export interface ClusterParameterGroupStatus {
|
|
|
1846
1846
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
|
|
1847
1847
|
* @public
|
|
1848
1848
|
*/
|
|
1849
|
-
ClusterParameterStatusList?: ClusterParameterStatus[];
|
|
1849
|
+
ClusterParameterStatusList?: ClusterParameterStatus[] | undefined;
|
|
1850
1850
|
}
|
|
1851
1851
|
/**
|
|
1852
1852
|
* <p>Describes a cluster security group.</p>
|
|
@@ -1857,12 +1857,12 @@ export interface ClusterSecurityGroupMembership {
|
|
|
1857
1857
|
* <p>The name of the cluster security group.</p>
|
|
1858
1858
|
* @public
|
|
1859
1859
|
*/
|
|
1860
|
-
ClusterSecurityGroupName?: string;
|
|
1860
|
+
ClusterSecurityGroupName?: string | undefined;
|
|
1861
1861
|
/**
|
|
1862
1862
|
* <p>The status of the cluster security group.</p>
|
|
1863
1863
|
* @public
|
|
1864
1864
|
*/
|
|
1865
|
-
Status?: string;
|
|
1865
|
+
Status?: string | undefined;
|
|
1866
1866
|
}
|
|
1867
1867
|
/**
|
|
1868
1868
|
* <p>Returns the destination region and retention period that are configured for
|
|
@@ -1875,13 +1875,13 @@ export interface ClusterSnapshotCopyStatus {
|
|
|
1875
1875
|
* snapshot copy is enabled.</p>
|
|
1876
1876
|
* @public
|
|
1877
1877
|
*/
|
|
1878
|
-
DestinationRegion?: string;
|
|
1878
|
+
DestinationRegion?: string | undefined;
|
|
1879
1879
|
/**
|
|
1880
1880
|
* <p>The number of days that automated snapshots are retained in the destination region
|
|
1881
1881
|
* after they are copied from a source region.</p>
|
|
1882
1882
|
* @public
|
|
1883
1883
|
*/
|
|
1884
|
-
RetentionPeriod?: number;
|
|
1884
|
+
RetentionPeriod?: number | undefined;
|
|
1885
1885
|
/**
|
|
1886
1886
|
* <p>The number of days that automated snapshots are retained in the destination region
|
|
1887
1887
|
* after they are copied from a source region. If the value is -1, the manual snapshot is
|
|
@@ -1889,12 +1889,12 @@ export interface ClusterSnapshotCopyStatus {
|
|
|
1889
1889
|
* <p>The value must be either -1 or an integer between 1 and 3,653.</p>
|
|
1890
1890
|
* @public
|
|
1891
1891
|
*/
|
|
1892
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
1892
|
+
ManualSnapshotRetentionPeriod?: number | undefined;
|
|
1893
1893
|
/**
|
|
1894
1894
|
* <p>The name of the snapshot copy grant.</p>
|
|
1895
1895
|
* @public
|
|
1896
1896
|
*/
|
|
1897
|
-
SnapshotCopyGrantName?: string;
|
|
1897
|
+
SnapshotCopyGrantName?: string | undefined;
|
|
1898
1898
|
}
|
|
1899
1899
|
/**
|
|
1900
1900
|
* <p>Describes the status of a cluster while it is in the process of resizing with an
|
|
@@ -1907,32 +1907,32 @@ export interface DataTransferProgress {
|
|
|
1907
1907
|
* <code>transferringdata</code>.</p>
|
|
1908
1908
|
* @public
|
|
1909
1909
|
*/
|
|
1910
|
-
Status?: string;
|
|
1910
|
+
Status?: string | undefined;
|
|
1911
1911
|
/**
|
|
1912
1912
|
* <p>Describes the data transfer rate in MB's per second.</p>
|
|
1913
1913
|
* @public
|
|
1914
1914
|
*/
|
|
1915
|
-
CurrentRateInMegaBytesPerSecond?: number;
|
|
1915
|
+
CurrentRateInMegaBytesPerSecond?: number | undefined;
|
|
1916
1916
|
/**
|
|
1917
1917
|
* <p>Describes the total amount of data to be transfered in megabytes.</p>
|
|
1918
1918
|
* @public
|
|
1919
1919
|
*/
|
|
1920
|
-
TotalDataInMegaBytes?: number;
|
|
1920
|
+
TotalDataInMegaBytes?: number | undefined;
|
|
1921
1921
|
/**
|
|
1922
1922
|
* <p>Describes the total amount of data that has been transfered in MB's.</p>
|
|
1923
1923
|
* @public
|
|
1924
1924
|
*/
|
|
1925
|
-
DataTransferredInMegaBytes?: number;
|
|
1925
|
+
DataTransferredInMegaBytes?: number | undefined;
|
|
1926
1926
|
/**
|
|
1927
1927
|
* <p>Describes the estimated number of seconds remaining to complete the transfer.</p>
|
|
1928
1928
|
* @public
|
|
1929
1929
|
*/
|
|
1930
|
-
EstimatedTimeToCompletionInSeconds?: number;
|
|
1930
|
+
EstimatedTimeToCompletionInSeconds?: number | undefined;
|
|
1931
1931
|
/**
|
|
1932
1932
|
* <p>Describes the number of seconds that have elapsed during the data transfer.</p>
|
|
1933
1933
|
* @public
|
|
1934
1934
|
*/
|
|
1935
|
-
ElapsedTimeInSeconds?: number;
|
|
1935
|
+
ElapsedTimeInSeconds?: number | undefined;
|
|
1936
1936
|
}
|
|
1937
1937
|
/**
|
|
1938
1938
|
* <p>Describes a deferred maintenance window</p>
|
|
@@ -1943,17 +1943,17 @@ export interface DeferredMaintenanceWindow {
|
|
|
1943
1943
|
* <p>A unique identifier for the maintenance window.</p>
|
|
1944
1944
|
* @public
|
|
1945
1945
|
*/
|
|
1946
|
-
DeferMaintenanceIdentifier?: string;
|
|
1946
|
+
DeferMaintenanceIdentifier?: string | undefined;
|
|
1947
1947
|
/**
|
|
1948
1948
|
* <p> A timestamp for the beginning of the time period when we defer maintenance.</p>
|
|
1949
1949
|
* @public
|
|
1950
1950
|
*/
|
|
1951
|
-
DeferMaintenanceStartTime?: Date;
|
|
1951
|
+
DeferMaintenanceStartTime?: Date | undefined;
|
|
1952
1952
|
/**
|
|
1953
1953
|
* <p> A timestamp for the end of the time period when we defer maintenance.</p>
|
|
1954
1954
|
* @public
|
|
1955
1955
|
*/
|
|
1956
|
-
DeferMaintenanceEndTime?: Date;
|
|
1956
|
+
DeferMaintenanceEndTime?: Date | undefined;
|
|
1957
1957
|
}
|
|
1958
1958
|
/**
|
|
1959
1959
|
* <p>Describes the status of the elastic IP (EIP) address.</p>
|
|
@@ -1964,12 +1964,12 @@ export interface ElasticIpStatus {
|
|
|
1964
1964
|
* <p>The elastic IP (EIP) address for the cluster.</p>
|
|
1965
1965
|
* @public
|
|
1966
1966
|
*/
|
|
1967
|
-
ElasticIp?: string;
|
|
1967
|
+
ElasticIp?: string | undefined;
|
|
1968
1968
|
/**
|
|
1969
1969
|
* <p>The status of the elastic IP (EIP) address.</p>
|
|
1970
1970
|
* @public
|
|
1971
1971
|
*/
|
|
1972
|
-
Status?: string;
|
|
1972
|
+
Status?: string | undefined;
|
|
1973
1973
|
}
|
|
1974
1974
|
/**
|
|
1975
1975
|
* <p>Describes a network interface. </p>
|
|
@@ -1980,27 +1980,27 @@ export interface NetworkInterface {
|
|
|
1980
1980
|
* <p>The network interface identifier. </p>
|
|
1981
1981
|
* @public
|
|
1982
1982
|
*/
|
|
1983
|
-
NetworkInterfaceId?: string;
|
|
1983
|
+
NetworkInterfaceId?: string | undefined;
|
|
1984
1984
|
/**
|
|
1985
1985
|
* <p>The subnet identifier. </p>
|
|
1986
1986
|
* @public
|
|
1987
1987
|
*/
|
|
1988
|
-
SubnetId?: string;
|
|
1988
|
+
SubnetId?: string | undefined;
|
|
1989
1989
|
/**
|
|
1990
1990
|
* <p>The IPv4 address of the network interface within the subnet. </p>
|
|
1991
1991
|
* @public
|
|
1992
1992
|
*/
|
|
1993
|
-
PrivateIpAddress?: string;
|
|
1993
|
+
PrivateIpAddress?: string | undefined;
|
|
1994
1994
|
/**
|
|
1995
1995
|
* <p>The Availability Zone. </p>
|
|
1996
1996
|
* @public
|
|
1997
1997
|
*/
|
|
1998
|
-
AvailabilityZone?: string;
|
|
1998
|
+
AvailabilityZone?: string | undefined;
|
|
1999
1999
|
/**
|
|
2000
2000
|
* <p>The IPv6 address of the network interface within the subnet. </p>
|
|
2001
2001
|
* @public
|
|
2002
2002
|
*/
|
|
2003
|
-
Ipv6Address?: string;
|
|
2003
|
+
Ipv6Address?: string | undefined;
|
|
2004
2004
|
}
|
|
2005
2005
|
/**
|
|
2006
2006
|
* <p>The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.</p>
|
|
@@ -2011,17 +2011,17 @@ export interface VpcEndpoint {
|
|
|
2011
2011
|
* <p>The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.</p>
|
|
2012
2012
|
* @public
|
|
2013
2013
|
*/
|
|
2014
|
-
VpcEndpointId?: string;
|
|
2014
|
+
VpcEndpointId?: string | undefined;
|
|
2015
2015
|
/**
|
|
2016
2016
|
* <p>The VPC identifier that the endpoint is associated. </p>
|
|
2017
2017
|
* @public
|
|
2018
2018
|
*/
|
|
2019
|
-
VpcId?: string;
|
|
2019
|
+
VpcId?: string | undefined;
|
|
2020
2020
|
/**
|
|
2021
2021
|
* <p>One or more network interfaces of the endpoint. Also known as an interface endpoint. </p>
|
|
2022
2022
|
* @public
|
|
2023
2023
|
*/
|
|
2024
|
-
NetworkInterfaces?: NetworkInterface[];
|
|
2024
|
+
NetworkInterfaces?: NetworkInterface[] | undefined;
|
|
2025
2025
|
}
|
|
2026
2026
|
/**
|
|
2027
2027
|
* <p>Describes a connection endpoint.</p>
|
|
@@ -2032,17 +2032,17 @@ export interface Endpoint {
|
|
|
2032
2032
|
* <p>The DNS address of the Cluster.</p>
|
|
2033
2033
|
* @public
|
|
2034
2034
|
*/
|
|
2035
|
-
Address?: string;
|
|
2035
|
+
Address?: string | undefined;
|
|
2036
2036
|
/**
|
|
2037
2037
|
* <p>The port that the database engine is listening on.</p>
|
|
2038
2038
|
* @public
|
|
2039
2039
|
*/
|
|
2040
|
-
Port?: number;
|
|
2040
|
+
Port?: number | undefined;
|
|
2041
2041
|
/**
|
|
2042
2042
|
* <p>Describes a connection endpoint.</p>
|
|
2043
2043
|
* @public
|
|
2044
2044
|
*/
|
|
2045
|
-
VpcEndpoints?: VpcEndpoint[];
|
|
2045
|
+
VpcEndpoints?: VpcEndpoint[] | undefined;
|
|
2046
2046
|
}
|
|
2047
2047
|
/**
|
|
2048
2048
|
* <p>Describes the status of changes to HSM settings.</p>
|
|
@@ -2054,20 +2054,20 @@ export interface HsmStatus {
|
|
|
2054
2054
|
* retrieve the data encryption keys stored in an HSM.</p>
|
|
2055
2055
|
* @public
|
|
2056
2056
|
*/
|
|
2057
|
-
HsmClientCertificateIdentifier?: string;
|
|
2057
|
+
HsmClientCertificateIdentifier?: string | undefined;
|
|
2058
2058
|
/**
|
|
2059
2059
|
* <p>Specifies the name of the HSM configuration that contains the information the
|
|
2060
2060
|
* Amazon Redshift cluster can use to retrieve and store keys in an HSM.</p>
|
|
2061
2061
|
* @public
|
|
2062
2062
|
*/
|
|
2063
|
-
HsmConfigurationIdentifier?: string;
|
|
2063
|
+
HsmConfigurationIdentifier?: string | undefined;
|
|
2064
2064
|
/**
|
|
2065
2065
|
* <p>Reports whether the Amazon Redshift cluster has finished applying any HSM settings
|
|
2066
2066
|
* changes specified in a modify cluster command.</p>
|
|
2067
2067
|
* <p>Values: active, applying</p>
|
|
2068
2068
|
* @public
|
|
2069
2069
|
*/
|
|
2070
|
-
Status?: string;
|
|
2070
|
+
Status?: string | undefined;
|
|
2071
2071
|
}
|
|
2072
2072
|
/**
|
|
2073
2073
|
* <p>An Identity and Access Management (IAM) role that can be used by the associated
|
|
@@ -2080,7 +2080,7 @@ export interface ClusterIamRole {
|
|
|
2080
2080
|
* <code>arn:aws:iam::123456789012:role/RedshiftCopyUnload</code>. </p>
|
|
2081
2081
|
* @public
|
|
2082
2082
|
*/
|
|
2083
|
-
IamRoleArn?: string;
|
|
2083
|
+
IamRoleArn?: string | undefined;
|
|
2084
2084
|
/**
|
|
2085
2085
|
* <p>A value that describes the status of the IAM role's association with an Amazon
|
|
2086
2086
|
* Redshift cluster.</p>
|
|
@@ -2103,7 +2103,7 @@ export interface ClusterIamRole {
|
|
|
2103
2103
|
* </ul>
|
|
2104
2104
|
* @public
|
|
2105
2105
|
*/
|
|
2106
|
-
ApplyStatus?: string;
|
|
2106
|
+
ApplyStatus?: string | undefined;
|
|
2107
2107
|
}
|
|
2108
2108
|
/**
|
|
2109
2109
|
* <p>The AvailabilityZone and ClusterNodes information of the secondary compute unit.</p>
|
|
@@ -2114,12 +2114,12 @@ export interface SecondaryClusterInfo {
|
|
|
2114
2114
|
* <p>The name of the Availability Zone in which the secondary compute unit of the cluster is located.</p>
|
|
2115
2115
|
* @public
|
|
2116
2116
|
*/
|
|
2117
|
-
AvailabilityZone?: string;
|
|
2117
|
+
AvailabilityZone?: string | undefined;
|
|
2118
2118
|
/**
|
|
2119
2119
|
* <p>The nodes in the secondary compute unit.</p>
|
|
2120
2120
|
* @public
|
|
2121
2121
|
*/
|
|
2122
|
-
ClusterNodes?: ClusterNode[];
|
|
2122
|
+
ClusterNodes?: ClusterNode[] | undefined;
|
|
2123
2123
|
}
|
|
2124
2124
|
/**
|
|
2125
2125
|
* <p>Describes cluster attributes that are in a pending state. A change to one or more
|
|
@@ -2132,44 +2132,44 @@ export interface PendingModifiedValues {
|
|
|
2132
2132
|
* cluster.</p>
|
|
2133
2133
|
* @public
|
|
2134
2134
|
*/
|
|
2135
|
-
MasterUserPassword?: string;
|
|
2135
|
+
MasterUserPassword?: string | undefined;
|
|
2136
2136
|
/**
|
|
2137
2137
|
* <p>The pending or in-progress change of the cluster's node type.</p>
|
|
2138
2138
|
* @public
|
|
2139
2139
|
*/
|
|
2140
|
-
NodeType?: string;
|
|
2140
|
+
NodeType?: string | undefined;
|
|
2141
2141
|
/**
|
|
2142
2142
|
* <p>The pending or in-progress change of the number of nodes in the cluster.</p>
|
|
2143
2143
|
* @public
|
|
2144
2144
|
*/
|
|
2145
|
-
NumberOfNodes?: number;
|
|
2145
|
+
NumberOfNodes?: number | undefined;
|
|
2146
2146
|
/**
|
|
2147
2147
|
* <p>The pending or in-progress change of the cluster type.</p>
|
|
2148
2148
|
* @public
|
|
2149
2149
|
*/
|
|
2150
|
-
ClusterType?: string;
|
|
2150
|
+
ClusterType?: string | undefined;
|
|
2151
2151
|
/**
|
|
2152
2152
|
* <p>The pending or in-progress change of the service version.</p>
|
|
2153
2153
|
* @public
|
|
2154
2154
|
*/
|
|
2155
|
-
ClusterVersion?: string;
|
|
2155
|
+
ClusterVersion?: string | undefined;
|
|
2156
2156
|
/**
|
|
2157
2157
|
* <p>The pending or in-progress change of the automated snapshot retention
|
|
2158
2158
|
* period.</p>
|
|
2159
2159
|
* @public
|
|
2160
2160
|
*/
|
|
2161
|
-
AutomatedSnapshotRetentionPeriod?: number;
|
|
2161
|
+
AutomatedSnapshotRetentionPeriod?: number | undefined;
|
|
2162
2162
|
/**
|
|
2163
2163
|
* <p>The pending or in-progress change of the new identifier for the cluster.</p>
|
|
2164
2164
|
* @public
|
|
2165
2165
|
*/
|
|
2166
|
-
ClusterIdentifier?: string;
|
|
2166
|
+
ClusterIdentifier?: string | undefined;
|
|
2167
2167
|
/**
|
|
2168
2168
|
* <p>The pending or in-progress change of the ability to connect to the cluster from the
|
|
2169
2169
|
* public network.</p>
|
|
2170
2170
|
* @public
|
|
2171
2171
|
*/
|
|
2172
|
-
PubliclyAccessible?: boolean;
|
|
2172
|
+
PubliclyAccessible?: boolean | undefined;
|
|
2173
2173
|
/**
|
|
2174
2174
|
* <p>An option that specifies whether to create the cluster with enhanced VPC routing
|
|
2175
2175
|
* enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a
|
|
@@ -2179,18 +2179,18 @@ export interface PendingModifiedValues {
|
|
|
2179
2179
|
* <p>Default: false</p>
|
|
2180
2180
|
* @public
|
|
2181
2181
|
*/
|
|
2182
|
-
EnhancedVpcRouting?: boolean;
|
|
2182
|
+
EnhancedVpcRouting?: boolean | undefined;
|
|
2183
2183
|
/**
|
|
2184
2184
|
* <p>The name of the maintenance track that the cluster will change to during the next
|
|
2185
2185
|
* maintenance window.</p>
|
|
2186
2186
|
* @public
|
|
2187
2187
|
*/
|
|
2188
|
-
MaintenanceTrackName?: string;
|
|
2188
|
+
MaintenanceTrackName?: string | undefined;
|
|
2189
2189
|
/**
|
|
2190
2190
|
* <p>The encryption type for a cluster. Possible values are: KMS and None. </p>
|
|
2191
2191
|
* @public
|
|
2192
2192
|
*/
|
|
2193
|
-
EncryptionType?: string;
|
|
2193
|
+
EncryptionType?: string | undefined;
|
|
2194
2194
|
}
|
|
2195
2195
|
/**
|
|
2196
2196
|
* @public
|
|
@@ -2219,47 +2219,47 @@ export interface ReservedNodeExchangeStatus {
|
|
|
2219
2219
|
* <p>The identifier of the reserved-node exchange request.</p>
|
|
2220
2220
|
* @public
|
|
2221
2221
|
*/
|
|
2222
|
-
ReservedNodeExchangeRequestId?: string;
|
|
2222
|
+
ReservedNodeExchangeRequestId?: string | undefined;
|
|
2223
2223
|
/**
|
|
2224
2224
|
* <p>The status of the reserved-node exchange request. Statuses include in-progress and requested.</p>
|
|
2225
2225
|
* @public
|
|
2226
2226
|
*/
|
|
2227
|
-
Status?: ReservedNodeExchangeStatusType;
|
|
2227
|
+
Status?: ReservedNodeExchangeStatusType | undefined;
|
|
2228
2228
|
/**
|
|
2229
2229
|
* <p>A date and time that indicate when the reserved-node exchange was requested.</p>
|
|
2230
2230
|
* @public
|
|
2231
2231
|
*/
|
|
2232
|
-
RequestTime?: Date;
|
|
2232
|
+
RequestTime?: Date | undefined;
|
|
2233
2233
|
/**
|
|
2234
2234
|
* <p>The identifier of the source reserved node.</p>
|
|
2235
2235
|
* @public
|
|
2236
2236
|
*/
|
|
2237
|
-
SourceReservedNodeId?: string;
|
|
2237
|
+
SourceReservedNodeId?: string | undefined;
|
|
2238
2238
|
/**
|
|
2239
2239
|
* <p>The source reserved-node type, for example ra3.4xlarge.</p>
|
|
2240
2240
|
* @public
|
|
2241
2241
|
*/
|
|
2242
|
-
SourceReservedNodeType?: string;
|
|
2242
|
+
SourceReservedNodeType?: string | undefined;
|
|
2243
2243
|
/**
|
|
2244
2244
|
* <p>The source reserved-node count in the cluster.</p>
|
|
2245
2245
|
* @public
|
|
2246
2246
|
*/
|
|
2247
|
-
SourceReservedNodeCount?: number;
|
|
2247
|
+
SourceReservedNodeCount?: number | undefined;
|
|
2248
2248
|
/**
|
|
2249
2249
|
* <p>The identifier of the target reserved node offering.</p>
|
|
2250
2250
|
* @public
|
|
2251
2251
|
*/
|
|
2252
|
-
TargetReservedNodeOfferingId?: string;
|
|
2252
|
+
TargetReservedNodeOfferingId?: string | undefined;
|
|
2253
2253
|
/**
|
|
2254
2254
|
* <p>The node type of the target reserved node, for example ra3.4xlarge.</p>
|
|
2255
2255
|
* @public
|
|
2256
2256
|
*/
|
|
2257
|
-
TargetReservedNodeType?: string;
|
|
2257
|
+
TargetReservedNodeType?: string | undefined;
|
|
2258
2258
|
/**
|
|
2259
2259
|
* <p>The count of target reserved nodes in the cluster.</p>
|
|
2260
2260
|
* @public
|
|
2261
2261
|
*/
|
|
2262
|
-
TargetReservedNodeCount?: number;
|
|
2262
|
+
TargetReservedNodeCount?: number | undefined;
|
|
2263
2263
|
}
|
|
2264
2264
|
/**
|
|
2265
2265
|
* <p>Describes a resize operation.</p>
|
|
@@ -2270,12 +2270,12 @@ export interface ResizeInfo {
|
|
|
2270
2270
|
* <p>Returns the value <code>ClassicResize</code>.</p>
|
|
2271
2271
|
* @public
|
|
2272
2272
|
*/
|
|
2273
|
-
ResizeType?: string;
|
|
2273
|
+
ResizeType?: string | undefined;
|
|
2274
2274
|
/**
|
|
2275
2275
|
* <p>A boolean value indicating if the resize operation can be cancelled.</p>
|
|
2276
2276
|
* @public
|
|
2277
2277
|
*/
|
|
2278
|
-
AllowCancelResize?: boolean;
|
|
2278
|
+
AllowCancelResize?: boolean | undefined;
|
|
2279
2279
|
}
|
|
2280
2280
|
/**
|
|
2281
2281
|
* <p>Describes the status of a cluster restore action. Returns null if the cluster was
|
|
@@ -2288,40 +2288,40 @@ export interface RestoreStatus {
|
|
|
2288
2288
|
* failed.</p>
|
|
2289
2289
|
* @public
|
|
2290
2290
|
*/
|
|
2291
|
-
Status?: string;
|
|
2291
|
+
Status?: string | undefined;
|
|
2292
2292
|
/**
|
|
2293
2293
|
* <p>The number of megabytes per second being transferred from the backup storage.
|
|
2294
2294
|
* Returns the average rate for a completed backup.
|
|
2295
2295
|
* This field is only updated when you restore to DC2 node types. </p>
|
|
2296
2296
|
* @public
|
|
2297
2297
|
*/
|
|
2298
|
-
CurrentRestoreRateInMegaBytesPerSecond?: number;
|
|
2298
|
+
CurrentRestoreRateInMegaBytesPerSecond?: number | undefined;
|
|
2299
2299
|
/**
|
|
2300
2300
|
* <p>The size of the set of snapshot data used to restore the cluster.
|
|
2301
2301
|
* This field is only updated when you restore to DC2 node types. </p>
|
|
2302
2302
|
* @public
|
|
2303
2303
|
*/
|
|
2304
|
-
SnapshotSizeInMegaBytes?: number;
|
|
2304
|
+
SnapshotSizeInMegaBytes?: number | undefined;
|
|
2305
2305
|
/**
|
|
2306
2306
|
* <p>The number of megabytes that have been transferred from snapshot storage.
|
|
2307
2307
|
* This field is only updated when you restore to DC2 node types. </p>
|
|
2308
2308
|
* @public
|
|
2309
2309
|
*/
|
|
2310
|
-
ProgressInMegaBytes?: number;
|
|
2310
|
+
ProgressInMegaBytes?: number | undefined;
|
|
2311
2311
|
/**
|
|
2312
2312
|
* <p>The amount of time an in-progress restore has been running, or the amount of time
|
|
2313
2313
|
* it took a completed restore to finish.
|
|
2314
2314
|
* This field is only updated when you restore to DC2 node types. </p>
|
|
2315
2315
|
* @public
|
|
2316
2316
|
*/
|
|
2317
|
-
ElapsedTimeInSeconds?: number;
|
|
2317
|
+
ElapsedTimeInSeconds?: number | undefined;
|
|
2318
2318
|
/**
|
|
2319
2319
|
* <p>The estimate of the time remaining before the restore will complete. Returns 0 for
|
|
2320
2320
|
* a completed restore.
|
|
2321
2321
|
* This field is only updated when you restore to DC2 node types. </p>
|
|
2322
2322
|
* @public
|
|
2323
2323
|
*/
|
|
2324
|
-
EstimatedTimeToCompletionInSeconds?: number;
|
|
2324
|
+
EstimatedTimeToCompletionInSeconds?: number | undefined;
|
|
2325
2325
|
}
|
|
2326
2326
|
/**
|
|
2327
2327
|
* <p>Describes the members of a VPC security group.</p>
|
|
@@ -2332,12 +2332,12 @@ export interface VpcSecurityGroupMembership {
|
|
|
2332
2332
|
* <p>The identifier of the VPC security group.</p>
|
|
2333
2333
|
* @public
|
|
2334
2334
|
*/
|
|
2335
|
-
VpcSecurityGroupId?: string;
|
|
2335
|
+
VpcSecurityGroupId?: string | undefined;
|
|
2336
2336
|
/**
|
|
2337
2337
|
* <p>The status of the VPC security group.</p>
|
|
2338
2338
|
* @public
|
|
2339
2339
|
*/
|
|
2340
|
-
Status?: string;
|
|
2340
|
+
Status?: string | undefined;
|
|
2341
2341
|
}
|
|
2342
2342
|
/**
|
|
2343
2343
|
* <p>Describes a cluster.</p>
|
|
@@ -2348,12 +2348,12 @@ export interface Cluster {
|
|
|
2348
2348
|
* <p>The unique identifier of the cluster.</p>
|
|
2349
2349
|
* @public
|
|
2350
2350
|
*/
|
|
2351
|
-
ClusterIdentifier?: string;
|
|
2351
|
+
ClusterIdentifier?: string | undefined;
|
|
2352
2352
|
/**
|
|
2353
2353
|
* <p>The node type for the nodes in the cluster.</p>
|
|
2354
2354
|
* @public
|
|
2355
2355
|
*/
|
|
2356
|
-
NodeType?: string;
|
|
2356
|
+
NodeType?: string | undefined;
|
|
2357
2357
|
/**
|
|
2358
2358
|
* <p> The current state of the cluster. Possible values are the following:</p>
|
|
2359
2359
|
* <ul>
|
|
@@ -2460,7 +2460,7 @@ export interface Cluster {
|
|
|
2460
2460
|
* </ul>
|
|
2461
2461
|
* @public
|
|
2462
2462
|
*/
|
|
2463
|
-
ClusterStatus?: string;
|
|
2463
|
+
ClusterStatus?: string | undefined;
|
|
2464
2464
|
/**
|
|
2465
2465
|
* <p>The availability status of the cluster for queries. Possible values are the following:</p>
|
|
2466
2466
|
* <ul>
|
|
@@ -2482,40 +2482,40 @@ export interface Cluster {
|
|
|
2482
2482
|
* </ul>
|
|
2483
2483
|
* @public
|
|
2484
2484
|
*/
|
|
2485
|
-
ClusterAvailabilityStatus?: string;
|
|
2485
|
+
ClusterAvailabilityStatus?: string | undefined;
|
|
2486
2486
|
/**
|
|
2487
2487
|
* <p>The status of a modify operation, if any, initiated for the cluster.</p>
|
|
2488
2488
|
* @public
|
|
2489
2489
|
*/
|
|
2490
|
-
ModifyStatus?: string;
|
|
2490
|
+
ModifyStatus?: string | undefined;
|
|
2491
2491
|
/**
|
|
2492
2492
|
* <p>The admin user name for the cluster. This name is used to connect to the database
|
|
2493
2493
|
* that is specified in the <b>DBName</b> parameter. </p>
|
|
2494
2494
|
* @public
|
|
2495
2495
|
*/
|
|
2496
|
-
MasterUsername?: string;
|
|
2496
|
+
MasterUsername?: string | undefined;
|
|
2497
2497
|
/**
|
|
2498
2498
|
* <p>The name of the initial database that was created when the cluster was created.
|
|
2499
2499
|
* This same name is returned for the life of the cluster. If an initial database was not
|
|
2500
2500
|
* specified, a database named <code>dev</code>dev was created by default. </p>
|
|
2501
2501
|
* @public
|
|
2502
2502
|
*/
|
|
2503
|
-
DBName?: string;
|
|
2503
|
+
DBName?: string | undefined;
|
|
2504
2504
|
/**
|
|
2505
2505
|
* <p>The connection endpoint.</p>
|
|
2506
2506
|
* @public
|
|
2507
2507
|
*/
|
|
2508
|
-
Endpoint?: Endpoint;
|
|
2508
|
+
Endpoint?: Endpoint | undefined;
|
|
2509
2509
|
/**
|
|
2510
2510
|
* <p>The date and time that the cluster was created.</p>
|
|
2511
2511
|
* @public
|
|
2512
2512
|
*/
|
|
2513
|
-
ClusterCreateTime?: Date;
|
|
2513
|
+
ClusterCreateTime?: Date | undefined;
|
|
2514
2514
|
/**
|
|
2515
2515
|
* <p>The number of days that automatic cluster snapshots are retained.</p>
|
|
2516
2516
|
* @public
|
|
2517
2517
|
*/
|
|
2518
|
-
AutomatedSnapshotRetentionPeriod?: number;
|
|
2518
|
+
AutomatedSnapshotRetentionPeriod?: number | undefined;
|
|
2519
2519
|
/**
|
|
2520
2520
|
* <p>The default number of days to retain a manual snapshot. If the value is -1, the
|
|
2521
2521
|
* snapshot is retained indefinitely. This setting doesn't change the retention period
|
|
@@ -2523,7 +2523,7 @@ export interface Cluster {
|
|
|
2523
2523
|
* <p>The value must be either -1 or an integer between 1 and 3,653.</p>
|
|
2524
2524
|
* @public
|
|
2525
2525
|
*/
|
|
2526
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
2526
|
+
ManualSnapshotRetentionPeriod?: number | undefined;
|
|
2527
2527
|
/**
|
|
2528
2528
|
* <p>A list of cluster security group that are associated with the cluster. Each
|
|
2529
2529
|
* security group is represented by an element that contains
|
|
@@ -2535,87 +2535,87 @@ export interface Cluster {
|
|
|
2535
2535
|
* </p>
|
|
2536
2536
|
* @public
|
|
2537
2537
|
*/
|
|
2538
|
-
ClusterSecurityGroups?: ClusterSecurityGroupMembership[];
|
|
2538
|
+
ClusterSecurityGroups?: ClusterSecurityGroupMembership[] | undefined;
|
|
2539
2539
|
/**
|
|
2540
2540
|
* <p>A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are
|
|
2541
2541
|
* associated with the cluster. This parameter is returned only if the cluster is in a
|
|
2542
2542
|
* VPC.</p>
|
|
2543
2543
|
* @public
|
|
2544
2544
|
*/
|
|
2545
|
-
VpcSecurityGroups?: VpcSecurityGroupMembership[];
|
|
2545
|
+
VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
|
|
2546
2546
|
/**
|
|
2547
2547
|
* <p>The list of cluster parameter groups that are associated with this cluster. Each
|
|
2548
2548
|
* parameter group in the list is returned with its status.</p>
|
|
2549
2549
|
* @public
|
|
2550
2550
|
*/
|
|
2551
|
-
ClusterParameterGroups?: ClusterParameterGroupStatus[];
|
|
2551
|
+
ClusterParameterGroups?: ClusterParameterGroupStatus[] | undefined;
|
|
2552
2552
|
/**
|
|
2553
2553
|
* <p>The name of the subnet group that is associated with the cluster. This parameter is
|
|
2554
2554
|
* valid only when the cluster is in a VPC.</p>
|
|
2555
2555
|
* @public
|
|
2556
2556
|
*/
|
|
2557
|
-
ClusterSubnetGroupName?: string;
|
|
2557
|
+
ClusterSubnetGroupName?: string | undefined;
|
|
2558
2558
|
/**
|
|
2559
2559
|
* <p>The identifier of the VPC the cluster is in, if the cluster is in a VPC.</p>
|
|
2560
2560
|
* @public
|
|
2561
2561
|
*/
|
|
2562
|
-
VpcId?: string;
|
|
2562
|
+
VpcId?: string | undefined;
|
|
2563
2563
|
/**
|
|
2564
2564
|
* <p>The name of the Availability Zone in which the cluster is located.</p>
|
|
2565
2565
|
* @public
|
|
2566
2566
|
*/
|
|
2567
|
-
AvailabilityZone?: string;
|
|
2567
|
+
AvailabilityZone?: string | undefined;
|
|
2568
2568
|
/**
|
|
2569
2569
|
* <p>The weekly time range, in Universal Coordinated Time (UTC), during which system
|
|
2570
2570
|
* maintenance can occur.</p>
|
|
2571
2571
|
* @public
|
|
2572
2572
|
*/
|
|
2573
|
-
PreferredMaintenanceWindow?: string;
|
|
2573
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
2574
2574
|
/**
|
|
2575
2575
|
* <p>A value that, if present, indicates that changes to the cluster are pending.
|
|
2576
2576
|
* Specific pending changes are identified by subelements.</p>
|
|
2577
2577
|
* @public
|
|
2578
2578
|
*/
|
|
2579
|
-
PendingModifiedValues?: PendingModifiedValues;
|
|
2579
|
+
PendingModifiedValues?: PendingModifiedValues | undefined;
|
|
2580
2580
|
/**
|
|
2581
2581
|
* <p>The version ID of the Amazon Redshift engine that is running on the cluster.</p>
|
|
2582
2582
|
* @public
|
|
2583
2583
|
*/
|
|
2584
|
-
ClusterVersion?: string;
|
|
2584
|
+
ClusterVersion?: string | undefined;
|
|
2585
2585
|
/**
|
|
2586
2586
|
* <p>A boolean value that, if <code>true</code>, indicates that major version upgrades
|
|
2587
2587
|
* will be applied automatically to the cluster during the maintenance window. </p>
|
|
2588
2588
|
* @public
|
|
2589
2589
|
*/
|
|
2590
|
-
AllowVersionUpgrade?: boolean;
|
|
2590
|
+
AllowVersionUpgrade?: boolean | undefined;
|
|
2591
2591
|
/**
|
|
2592
2592
|
* <p>The number of compute nodes in the cluster.</p>
|
|
2593
2593
|
* @public
|
|
2594
2594
|
*/
|
|
2595
|
-
NumberOfNodes?: number;
|
|
2595
|
+
NumberOfNodes?: number | undefined;
|
|
2596
2596
|
/**
|
|
2597
2597
|
* <p>A boolean value that, if <code>true</code>, indicates that the cluster can be
|
|
2598
2598
|
* accessed from a public network.</p>
|
|
2599
2599
|
* @public
|
|
2600
2600
|
*/
|
|
2601
|
-
PubliclyAccessible?: boolean;
|
|
2601
|
+
PubliclyAccessible?: boolean | undefined;
|
|
2602
2602
|
/**
|
|
2603
2603
|
* <p>A boolean value that, if <code>true</code>, indicates that data in the cluster is
|
|
2604
2604
|
* encrypted at rest.</p>
|
|
2605
2605
|
* @public
|
|
2606
2606
|
*/
|
|
2607
|
-
Encrypted?: boolean;
|
|
2607
|
+
Encrypted?: boolean | undefined;
|
|
2608
2608
|
/**
|
|
2609
2609
|
* <p>A value that describes the status of a cluster restore action. This parameter
|
|
2610
2610
|
* returns null if the cluster was not created by restoring a snapshot.</p>
|
|
2611
2611
|
* @public
|
|
2612
2612
|
*/
|
|
2613
|
-
RestoreStatus?: RestoreStatus;
|
|
2613
|
+
RestoreStatus?: RestoreStatus | undefined;
|
|
2614
2614
|
/**
|
|
2615
2615
|
* <p></p>
|
|
2616
2616
|
* @public
|
|
2617
2617
|
*/
|
|
2618
|
-
DataTransferProgress?: DataTransferProgress;
|
|
2618
|
+
DataTransferProgress?: DataTransferProgress | undefined;
|
|
2619
2619
|
/**
|
|
2620
2620
|
* <p>A value that reports whether the Amazon Redshift cluster has finished applying any
|
|
2621
2621
|
* hardware security module (HSM) settings changes specified in a modify cluster
|
|
@@ -2623,44 +2623,44 @@ export interface Cluster {
|
|
|
2623
2623
|
* <p>Values: active, applying</p>
|
|
2624
2624
|
* @public
|
|
2625
2625
|
*/
|
|
2626
|
-
HsmStatus?: HsmStatus;
|
|
2626
|
+
HsmStatus?: HsmStatus | undefined;
|
|
2627
2627
|
/**
|
|
2628
2628
|
* <p>A value that returns the destination region and retention period that are
|
|
2629
2629
|
* configured for cross-region snapshot copy.</p>
|
|
2630
2630
|
* @public
|
|
2631
2631
|
*/
|
|
2632
|
-
ClusterSnapshotCopyStatus?: ClusterSnapshotCopyStatus;
|
|
2632
|
+
ClusterSnapshotCopyStatus?: ClusterSnapshotCopyStatus | undefined;
|
|
2633
2633
|
/**
|
|
2634
2634
|
* <p>The public key for the cluster.</p>
|
|
2635
2635
|
* @public
|
|
2636
2636
|
*/
|
|
2637
|
-
ClusterPublicKey?: string;
|
|
2637
|
+
ClusterPublicKey?: string | undefined;
|
|
2638
2638
|
/**
|
|
2639
2639
|
* <p>The nodes in the cluster.</p>
|
|
2640
2640
|
* @public
|
|
2641
2641
|
*/
|
|
2642
|
-
ClusterNodes?: ClusterNode[];
|
|
2642
|
+
ClusterNodes?: ClusterNode[] | undefined;
|
|
2643
2643
|
/**
|
|
2644
2644
|
* <p>The status of the elastic IP (EIP) address.</p>
|
|
2645
2645
|
* @public
|
|
2646
2646
|
*/
|
|
2647
|
-
ElasticIpStatus?: ElasticIpStatus;
|
|
2647
|
+
ElasticIpStatus?: ElasticIpStatus | undefined;
|
|
2648
2648
|
/**
|
|
2649
2649
|
* <p>The specific revision number of the database in the cluster.</p>
|
|
2650
2650
|
* @public
|
|
2651
2651
|
*/
|
|
2652
|
-
ClusterRevisionNumber?: string;
|
|
2652
|
+
ClusterRevisionNumber?: string | undefined;
|
|
2653
2653
|
/**
|
|
2654
2654
|
* <p>The list of tags for the cluster.</p>
|
|
2655
2655
|
* @public
|
|
2656
2656
|
*/
|
|
2657
|
-
Tags?: Tag[];
|
|
2657
|
+
Tags?: Tag[] | undefined;
|
|
2658
2658
|
/**
|
|
2659
2659
|
* <p>The Key Management Service (KMS) key ID of the encryption key used to
|
|
2660
2660
|
* encrypt data in the cluster.</p>
|
|
2661
2661
|
* @public
|
|
2662
2662
|
*/
|
|
2663
|
-
KmsKeyId?: string;
|
|
2663
|
+
KmsKeyId?: string | undefined;
|
|
2664
2664
|
/**
|
|
2665
2665
|
* <p>An option that specifies whether to create the cluster with enhanced VPC routing
|
|
2666
2666
|
* enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a
|
|
@@ -2670,49 +2670,49 @@ export interface Cluster {
|
|
|
2670
2670
|
* <p>Default: false</p>
|
|
2671
2671
|
* @public
|
|
2672
2672
|
*/
|
|
2673
|
-
EnhancedVpcRouting?: boolean;
|
|
2673
|
+
EnhancedVpcRouting?: boolean | undefined;
|
|
2674
2674
|
/**
|
|
2675
2675
|
* <p>A list of Identity and Access Management (IAM) roles that can be used by the
|
|
2676
2676
|
* cluster to access other Amazon Web Services services.</p>
|
|
2677
2677
|
* @public
|
|
2678
2678
|
*/
|
|
2679
|
-
IamRoles?: ClusterIamRole[];
|
|
2679
|
+
IamRoles?: ClusterIamRole[] | undefined;
|
|
2680
2680
|
/**
|
|
2681
2681
|
* <p>Cluster operations that are waiting to be started.</p>
|
|
2682
2682
|
* @public
|
|
2683
2683
|
*/
|
|
2684
|
-
PendingActions?: string[];
|
|
2684
|
+
PendingActions?: string[] | undefined;
|
|
2685
2685
|
/**
|
|
2686
2686
|
* <p>The name of the maintenance track for the cluster.</p>
|
|
2687
2687
|
* @public
|
|
2688
2688
|
*/
|
|
2689
|
-
MaintenanceTrackName?: string;
|
|
2689
|
+
MaintenanceTrackName?: string | undefined;
|
|
2690
2690
|
/**
|
|
2691
2691
|
* <p>The number of nodes that you can resize the cluster to with the elastic resize method.
|
|
2692
2692
|
* </p>
|
|
2693
2693
|
* @public
|
|
2694
2694
|
*/
|
|
2695
|
-
ElasticResizeNumberOfNodeOptions?: string;
|
|
2695
|
+
ElasticResizeNumberOfNodeOptions?: string | undefined;
|
|
2696
2696
|
/**
|
|
2697
2697
|
* <p>Describes a group of <code>DeferredMaintenanceWindow</code> objects.</p>
|
|
2698
2698
|
* @public
|
|
2699
2699
|
*/
|
|
2700
|
-
DeferredMaintenanceWindows?: DeferredMaintenanceWindow[];
|
|
2700
|
+
DeferredMaintenanceWindows?: DeferredMaintenanceWindow[] | undefined;
|
|
2701
2701
|
/**
|
|
2702
2702
|
* <p>A unique identifier for the cluster snapshot schedule.</p>
|
|
2703
2703
|
* @public
|
|
2704
2704
|
*/
|
|
2705
|
-
SnapshotScheduleIdentifier?: string;
|
|
2705
|
+
SnapshotScheduleIdentifier?: string | undefined;
|
|
2706
2706
|
/**
|
|
2707
2707
|
* <p>The current state of the cluster snapshot schedule.</p>
|
|
2708
2708
|
* @public
|
|
2709
2709
|
*/
|
|
2710
|
-
SnapshotScheduleState?: ScheduleState;
|
|
2710
|
+
SnapshotScheduleState?: ScheduleState | undefined;
|
|
2711
2711
|
/**
|
|
2712
2712
|
* <p>The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled. </p>
|
|
2713
2713
|
* @public
|
|
2714
2714
|
*/
|
|
2715
|
-
ExpectedNextSnapshotScheduleTime?: Date;
|
|
2715
|
+
ExpectedNextSnapshotScheduleTime?: Date | undefined;
|
|
2716
2716
|
/**
|
|
2717
2717
|
* <p> The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:</p>
|
|
2718
2718
|
* <ul>
|
|
@@ -2725,12 +2725,12 @@ export interface Cluster {
|
|
|
2725
2725
|
* </ul>
|
|
2726
2726
|
* @public
|
|
2727
2727
|
*/
|
|
2728
|
-
ExpectedNextSnapshotScheduleTimeStatus?: string;
|
|
2728
|
+
ExpectedNextSnapshotScheduleTimeStatus?: string | undefined;
|
|
2729
2729
|
/**
|
|
2730
2730
|
* <p>The date and time in UTC when system maintenance can begin.</p>
|
|
2731
2731
|
* @public
|
|
2732
2732
|
*/
|
|
2733
|
-
NextMaintenanceWindowStartTime?: Date;
|
|
2733
|
+
NextMaintenanceWindowStartTime?: Date | undefined;
|
|
2734
2734
|
/**
|
|
2735
2735
|
* <p>Returns the following:</p>
|
|
2736
2736
|
* <ul>
|
|
@@ -2744,77 +2744,77 @@ export interface Cluster {
|
|
|
2744
2744
|
* </ul>
|
|
2745
2745
|
* @public
|
|
2746
2746
|
*/
|
|
2747
|
-
ResizeInfo?: ResizeInfo;
|
|
2747
|
+
ResizeInfo?: ResizeInfo | undefined;
|
|
2748
2748
|
/**
|
|
2749
2749
|
* <p>Describes the status of the Availability Zone relocation operation.</p>
|
|
2750
2750
|
* @public
|
|
2751
2751
|
*/
|
|
2752
|
-
AvailabilityZoneRelocationStatus?: string;
|
|
2752
|
+
AvailabilityZoneRelocationStatus?: string | undefined;
|
|
2753
2753
|
/**
|
|
2754
2754
|
* <p>The namespace Amazon Resource Name (ARN) of the cluster.</p>
|
|
2755
2755
|
* @public
|
|
2756
2756
|
*/
|
|
2757
|
-
ClusterNamespaceArn?: string;
|
|
2757
|
+
ClusterNamespaceArn?: string | undefined;
|
|
2758
2758
|
/**
|
|
2759
2759
|
* <p>The total storage capacity of the cluster in megabytes. </p>
|
|
2760
2760
|
* @public
|
|
2761
2761
|
*/
|
|
2762
|
-
TotalStorageCapacityInMegaBytes?: number;
|
|
2762
|
+
TotalStorageCapacityInMegaBytes?: number | undefined;
|
|
2763
2763
|
/**
|
|
2764
2764
|
* <p>This field is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).</p>
|
|
2765
2765
|
* @public
|
|
2766
2766
|
*/
|
|
2767
|
-
AquaConfiguration?: AquaConfiguration;
|
|
2767
|
+
AquaConfiguration?: AquaConfiguration | undefined;
|
|
2768
2768
|
/**
|
|
2769
2769
|
* <p>The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.</p>
|
|
2770
2770
|
* @public
|
|
2771
2771
|
*/
|
|
2772
|
-
DefaultIamRoleArn?: string;
|
|
2772
|
+
DefaultIamRoleArn?: string | undefined;
|
|
2773
2773
|
/**
|
|
2774
2774
|
* <p>The status of the reserved-node exchange request. Statuses include in-progress and requested.</p>
|
|
2775
2775
|
* @public
|
|
2776
2776
|
*/
|
|
2777
|
-
ReservedNodeExchangeStatus?: ReservedNodeExchangeStatus;
|
|
2777
|
+
ReservedNodeExchangeStatus?: ReservedNodeExchangeStatus | undefined;
|
|
2778
2778
|
/**
|
|
2779
2779
|
* <p>The custom domain name associated with the cluster.</p>
|
|
2780
2780
|
* @public
|
|
2781
2781
|
*/
|
|
2782
|
-
CustomDomainName?: string;
|
|
2782
|
+
CustomDomainName?: string | undefined;
|
|
2783
2783
|
/**
|
|
2784
2784
|
* <p>The certificate Amazon Resource Name (ARN) for the custom domain name.</p>
|
|
2785
2785
|
* @public
|
|
2786
2786
|
*/
|
|
2787
|
-
CustomDomainCertificateArn?: string;
|
|
2787
|
+
CustomDomainCertificateArn?: string | undefined;
|
|
2788
2788
|
/**
|
|
2789
2789
|
* <p>The expiration date for the certificate associated with the custom domain name.</p>
|
|
2790
2790
|
* @public
|
|
2791
2791
|
*/
|
|
2792
|
-
CustomDomainCertificateExpiryDate?: Date;
|
|
2792
|
+
CustomDomainCertificateExpiryDate?: Date | undefined;
|
|
2793
2793
|
/**
|
|
2794
2794
|
* <p>The Amazon Resource Name (ARN) for the cluster's admin user credentials secret.</p>
|
|
2795
2795
|
* @public
|
|
2796
2796
|
*/
|
|
2797
|
-
MasterPasswordSecretArn?: string;
|
|
2797
|
+
MasterPasswordSecretArn?: string | undefined;
|
|
2798
2798
|
/**
|
|
2799
2799
|
* <p>The ID of the Key Management Service (KMS) key used to encrypt and store the cluster's admin credentials secret.</p>
|
|
2800
2800
|
* @public
|
|
2801
2801
|
*/
|
|
2802
|
-
MasterPasswordSecretKmsKeyId?: string;
|
|
2802
|
+
MasterPasswordSecretKmsKeyId?: string | undefined;
|
|
2803
2803
|
/**
|
|
2804
2804
|
* <p>The IP address type for the cluster. Possible values are <code>ipv4</code> and <code>dualstack</code>.</p>
|
|
2805
2805
|
* @public
|
|
2806
2806
|
*/
|
|
2807
|
-
IpAddressType?: string;
|
|
2807
|
+
IpAddressType?: string | undefined;
|
|
2808
2808
|
/**
|
|
2809
2809
|
* <p>A boolean value that, if true, indicates that the cluster is deployed in two Availability Zones.</p>
|
|
2810
2810
|
* @public
|
|
2811
2811
|
*/
|
|
2812
|
-
MultiAZ?: string;
|
|
2812
|
+
MultiAZ?: string | undefined;
|
|
2813
2813
|
/**
|
|
2814
2814
|
* <p>The secondary compute unit of a cluster, if Multi-AZ deployment is turned on.</p>
|
|
2815
2815
|
* @public
|
|
2816
2816
|
*/
|
|
2817
|
-
MultiAZSecondary?: SecondaryClusterInfo;
|
|
2817
|
+
MultiAZSecondary?: SecondaryClusterInfo | undefined;
|
|
2818
2818
|
}
|
|
2819
2819
|
/**
|
|
2820
2820
|
* <p>The account already has a cluster with the given identifier.</p>
|
|
@@ -2843,18 +2843,18 @@ export interface ClusterCredentials {
|
|
|
2843
2843
|
* using these credentials.</p>
|
|
2844
2844
|
* @public
|
|
2845
2845
|
*/
|
|
2846
|
-
DbUser?: string;
|
|
2846
|
+
DbUser?: string | undefined;
|
|
2847
2847
|
/**
|
|
2848
2848
|
* <p>A temporary password that authorizes the user name returned by <code>DbUser</code>
|
|
2849
2849
|
* to log on to the database <code>DbName</code>. </p>
|
|
2850
2850
|
* @public
|
|
2851
2851
|
*/
|
|
2852
|
-
DbPassword?: string;
|
|
2852
|
+
DbPassword?: string | undefined;
|
|
2853
2853
|
/**
|
|
2854
2854
|
* <p>The date and time the password in <code>DbPassword</code> expires.</p>
|
|
2855
2855
|
* @public
|
|
2856
2856
|
*/
|
|
2857
|
-
Expiration?: Date;
|
|
2857
|
+
Expiration?: Date | undefined;
|
|
2858
2858
|
}
|
|
2859
2859
|
/**
|
|
2860
2860
|
* <p>Describes a <code>RevisionTarget</code>.</p>
|
|
@@ -2866,18 +2866,18 @@ export interface RevisionTarget {
|
|
|
2866
2866
|
* value in <a>ModifyClusterDbRevision</a>.</p>
|
|
2867
2867
|
* @public
|
|
2868
2868
|
*/
|
|
2869
|
-
DatabaseRevision?: string;
|
|
2869
|
+
DatabaseRevision?: string | undefined;
|
|
2870
2870
|
/**
|
|
2871
2871
|
* <p>A string that describes the changes and features that will be applied to the cluster
|
|
2872
2872
|
* when it is updated to the corresponding <a>ClusterDbRevision</a>.</p>
|
|
2873
2873
|
* @public
|
|
2874
2874
|
*/
|
|
2875
|
-
Description?: string;
|
|
2875
|
+
Description?: string | undefined;
|
|
2876
2876
|
/**
|
|
2877
2877
|
* <p>The date on which the database revision was released.</p>
|
|
2878
2878
|
* @public
|
|
2879
2879
|
*/
|
|
2880
|
-
DatabaseRevisionReleaseDate?: Date;
|
|
2880
|
+
DatabaseRevisionReleaseDate?: Date | undefined;
|
|
2881
2881
|
}
|
|
2882
2882
|
/**
|
|
2883
2883
|
* <p>Describes a <code>ClusterDbRevision</code>.</p>
|
|
@@ -2888,23 +2888,23 @@ export interface ClusterDbRevision {
|
|
|
2888
2888
|
* <p>The unique identifier of the cluster.</p>
|
|
2889
2889
|
* @public
|
|
2890
2890
|
*/
|
|
2891
|
-
ClusterIdentifier?: string;
|
|
2891
|
+
ClusterIdentifier?: string | undefined;
|
|
2892
2892
|
/**
|
|
2893
2893
|
* <p>A string representing the current cluster version.</p>
|
|
2894
2894
|
* @public
|
|
2895
2895
|
*/
|
|
2896
|
-
CurrentDatabaseRevision?: string;
|
|
2896
|
+
CurrentDatabaseRevision?: string | undefined;
|
|
2897
2897
|
/**
|
|
2898
2898
|
* <p>The date on which the database revision was released.</p>
|
|
2899
2899
|
* @public
|
|
2900
2900
|
*/
|
|
2901
|
-
DatabaseRevisionReleaseDate?: Date;
|
|
2901
|
+
DatabaseRevisionReleaseDate?: Date | undefined;
|
|
2902
2902
|
/**
|
|
2903
2903
|
* <p>A list of <code>RevisionTarget</code> objects, where each object describes the
|
|
2904
2904
|
* database revision that a cluster can be updated to.</p>
|
|
2905
2905
|
* @public
|
|
2906
2906
|
*/
|
|
2907
|
-
RevisionTargets?: RevisionTarget[];
|
|
2907
|
+
RevisionTargets?: RevisionTarget[] | undefined;
|
|
2908
2908
|
}
|
|
2909
2909
|
/**
|
|
2910
2910
|
* @public
|
|
@@ -2917,12 +2917,12 @@ export interface ClusterDbRevisionsMessage {
|
|
|
2917
2917
|
* <code>marker</code> field is empty, all revisions have already been returned.</p>
|
|
2918
2918
|
* @public
|
|
2919
2919
|
*/
|
|
2920
|
-
Marker?: string;
|
|
2920
|
+
Marker?: string | undefined;
|
|
2921
2921
|
/**
|
|
2922
2922
|
* <p>A list of revisions.</p>
|
|
2923
2923
|
* @public
|
|
2924
2924
|
*/
|
|
2925
|
-
ClusterDbRevisions?: ClusterDbRevision[];
|
|
2925
|
+
ClusterDbRevisions?: ClusterDbRevision[] | undefined;
|
|
2926
2926
|
}
|
|
2927
2927
|
/**
|
|
2928
2928
|
* @public
|
|
@@ -2932,22 +2932,22 @@ export interface ClusterExtendedCredentials {
|
|
|
2932
2932
|
* <p>A database user name that you provide when you connect to a database. The database user is mapped 1:1 to the source IAM identity. </p>
|
|
2933
2933
|
* @public
|
|
2934
2934
|
*/
|
|
2935
|
-
DbUser?: string;
|
|
2935
|
+
DbUser?: string | undefined;
|
|
2936
2936
|
/**
|
|
2937
2937
|
* <p>A temporary password that you provide when you connect to a database.</p>
|
|
2938
2938
|
* @public
|
|
2939
2939
|
*/
|
|
2940
|
-
DbPassword?: string;
|
|
2940
|
+
DbPassword?: string | undefined;
|
|
2941
2941
|
/**
|
|
2942
2942
|
* <p>The time (UTC) when the temporary password expires. After this timestamp, a log in with the temporary password fails.</p>
|
|
2943
2943
|
* @public
|
|
2944
2944
|
*/
|
|
2945
|
-
Expiration?: Date;
|
|
2945
|
+
Expiration?: Date | undefined;
|
|
2946
2946
|
/**
|
|
2947
2947
|
* <p>Reserved for future use.</p>
|
|
2948
2948
|
* @public
|
|
2949
2949
|
*/
|
|
2950
|
-
NextRefreshTime?: Date;
|
|
2950
|
+
NextRefreshTime?: Date | undefined;
|
|
2951
2951
|
}
|
|
2952
2952
|
/**
|
|
2953
2953
|
* <p>Cluster is already on the latest database revision.</p>
|
|
@@ -2970,23 +2970,23 @@ export interface ClusterParameterGroup {
|
|
|
2970
2970
|
* <p>The name of the cluster parameter group.</p>
|
|
2971
2971
|
* @public
|
|
2972
2972
|
*/
|
|
2973
|
-
ParameterGroupName?: string;
|
|
2973
|
+
ParameterGroupName?: string | undefined;
|
|
2974
2974
|
/**
|
|
2975
2975
|
* <p>The name of the cluster parameter group family that this cluster parameter group is
|
|
2976
2976
|
* compatible with.</p>
|
|
2977
2977
|
* @public
|
|
2978
2978
|
*/
|
|
2979
|
-
ParameterGroupFamily?: string;
|
|
2979
|
+
ParameterGroupFamily?: string | undefined;
|
|
2980
2980
|
/**
|
|
2981
2981
|
* <p>The description of the parameter group.</p>
|
|
2982
2982
|
* @public
|
|
2983
2983
|
*/
|
|
2984
|
-
Description?: string;
|
|
2984
|
+
Description?: string | undefined;
|
|
2985
2985
|
/**
|
|
2986
2986
|
* <p>The list of tags for the cluster parameter group.</p>
|
|
2987
2987
|
* @public
|
|
2988
2988
|
*/
|
|
2989
|
-
Tags?: Tag[];
|
|
2989
|
+
Tags?: Tag[] | undefined;
|
|
2990
2990
|
}
|
|
2991
2991
|
/**
|
|
2992
2992
|
* <p>A cluster parameter group with the same name already exists.</p>
|
|
@@ -3021,33 +3021,33 @@ export interface Parameter {
|
|
|
3021
3021
|
* <p>The name of the parameter.</p>
|
|
3022
3022
|
* @public
|
|
3023
3023
|
*/
|
|
3024
|
-
ParameterName?: string;
|
|
3024
|
+
ParameterName?: string | undefined;
|
|
3025
3025
|
/**
|
|
3026
3026
|
* <p>The value of the parameter. If <code>ParameterName</code> is <code>wlm_json_configuration</code>,
|
|
3027
3027
|
* then the maximum size of <code>ParameterValue</code> is 8000 characters.</p>
|
|
3028
3028
|
* @public
|
|
3029
3029
|
*/
|
|
3030
|
-
ParameterValue?: string;
|
|
3030
|
+
ParameterValue?: string | undefined;
|
|
3031
3031
|
/**
|
|
3032
3032
|
* <p>A description of the parameter.</p>
|
|
3033
3033
|
* @public
|
|
3034
3034
|
*/
|
|
3035
|
-
Description?: string;
|
|
3035
|
+
Description?: string | undefined;
|
|
3036
3036
|
/**
|
|
3037
3037
|
* <p>The source of the parameter value, such as "engine-default" or "user".</p>
|
|
3038
3038
|
* @public
|
|
3039
3039
|
*/
|
|
3040
|
-
Source?: string;
|
|
3040
|
+
Source?: string | undefined;
|
|
3041
3041
|
/**
|
|
3042
3042
|
* <p>The data type of the parameter.</p>
|
|
3043
3043
|
* @public
|
|
3044
3044
|
*/
|
|
3045
|
-
DataType?: string;
|
|
3045
|
+
DataType?: string | undefined;
|
|
3046
3046
|
/**
|
|
3047
3047
|
* <p>The valid range of values for the parameter.</p>
|
|
3048
3048
|
* @public
|
|
3049
3049
|
*/
|
|
3050
|
-
AllowedValues?: string;
|
|
3050
|
+
AllowedValues?: string | undefined;
|
|
3051
3051
|
/**
|
|
3052
3052
|
* <p>Specifies how to apply the WLM configuration parameter. Some properties can be
|
|
3053
3053
|
* applied dynamically, while other properties require that any associated clusters be
|
|
@@ -3057,18 +3057,18 @@ export interface Parameter {
|
|
|
3057
3057
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
|
|
3058
3058
|
* @public
|
|
3059
3059
|
*/
|
|
3060
|
-
ApplyType?: ParameterApplyType;
|
|
3060
|
+
ApplyType?: ParameterApplyType | undefined;
|
|
3061
3061
|
/**
|
|
3062
3062
|
* <p>If <code>true</code>, the parameter can be modified. Some parameters have security
|
|
3063
3063
|
* or operational implications that prevent them from being changed. </p>
|
|
3064
3064
|
* @public
|
|
3065
3065
|
*/
|
|
3066
|
-
IsModifiable?: boolean;
|
|
3066
|
+
IsModifiable?: boolean | undefined;
|
|
3067
3067
|
/**
|
|
3068
3068
|
* <p>The earliest engine version to which the parameter can apply.</p>
|
|
3069
3069
|
* @public
|
|
3070
3070
|
*/
|
|
3071
|
-
MinimumEngineVersion?: string;
|
|
3071
|
+
MinimumEngineVersion?: string | undefined;
|
|
3072
3072
|
}
|
|
3073
3073
|
/**
|
|
3074
3074
|
* <p>Contains the output from the <a>DescribeClusterParameters</a> action.
|
|
@@ -3081,7 +3081,7 @@ export interface ClusterParameterGroupDetails {
|
|
|
3081
3081
|
* of one cluster parameter group. </p>
|
|
3082
3082
|
* @public
|
|
3083
3083
|
*/
|
|
3084
|
-
Parameters?: Parameter[];
|
|
3084
|
+
Parameters?: Parameter[] | undefined;
|
|
3085
3085
|
/**
|
|
3086
3086
|
* <p>A value that indicates the starting point for the next set of response records in a
|
|
3087
3087
|
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
@@ -3090,7 +3090,7 @@ export interface ClusterParameterGroupDetails {
|
|
|
3090
3090
|
* records have been retrieved for the request. </p>
|
|
3091
3091
|
* @public
|
|
3092
3092
|
*/
|
|
3093
|
-
Marker?: string;
|
|
3093
|
+
Marker?: string | undefined;
|
|
3094
3094
|
}
|
|
3095
3095
|
/**
|
|
3096
3096
|
* <p></p>
|
|
@@ -3101,14 +3101,14 @@ export interface ClusterParameterGroupNameMessage {
|
|
|
3101
3101
|
* <p>The name of the cluster parameter group.</p>
|
|
3102
3102
|
* @public
|
|
3103
3103
|
*/
|
|
3104
|
-
ParameterGroupName?: string;
|
|
3104
|
+
ParameterGroupName?: string | undefined;
|
|
3105
3105
|
/**
|
|
3106
3106
|
* <p>The status of the parameter group. For example, if you made a change to a parameter
|
|
3107
3107
|
* group name-value pair, then the change could be pending a reboot of an associated
|
|
3108
3108
|
* cluster.</p>
|
|
3109
3109
|
* @public
|
|
3110
3110
|
*/
|
|
3111
|
-
ParameterGroupStatus?: string;
|
|
3111
|
+
ParameterGroupStatus?: string | undefined;
|
|
3112
3112
|
}
|
|
3113
3113
|
/**
|
|
3114
3114
|
* <p>The parameter group name does not refer to an existing parameter group.</p>
|
|
@@ -3152,13 +3152,13 @@ export interface ClusterParameterGroupsMessage {
|
|
|
3152
3152
|
* records have been retrieved for the request. </p>
|
|
3153
3153
|
* @public
|
|
3154
3154
|
*/
|
|
3155
|
-
Marker?: string;
|
|
3155
|
+
Marker?: string | undefined;
|
|
3156
3156
|
/**
|
|
3157
3157
|
* <p>A list of <a>ClusterParameterGroup</a> instances. Each instance
|
|
3158
3158
|
* describes one cluster parameter group. </p>
|
|
3159
3159
|
* @public
|
|
3160
3160
|
*/
|
|
3161
|
-
ParameterGroups?: ClusterParameterGroup[];
|
|
3161
|
+
ParameterGroups?: ClusterParameterGroup[] | undefined;
|
|
3162
3162
|
}
|
|
3163
3163
|
/**
|
|
3164
3164
|
* <p>The request would exceed the allowed number of cluster instances for this account.
|
|
@@ -3201,12 +3201,12 @@ export interface ClusterSecurityGroupMessage {
|
|
|
3201
3201
|
* records have been retrieved for the request. </p>
|
|
3202
3202
|
* @public
|
|
3203
3203
|
*/
|
|
3204
|
-
Marker?: string;
|
|
3204
|
+
Marker?: string | undefined;
|
|
3205
3205
|
/**
|
|
3206
3206
|
* <p>A list of <a>ClusterSecurityGroup</a> instances. </p>
|
|
3207
3207
|
* @public
|
|
3208
3208
|
*/
|
|
3209
|
-
ClusterSecurityGroups?: ClusterSecurityGroup[];
|
|
3209
|
+
ClusterSecurityGroups?: ClusterSecurityGroup[] | undefined;
|
|
3210
3210
|
}
|
|
3211
3211
|
/**
|
|
3212
3212
|
* <p>The request would result in the user exceeding the allowed number of cluster
|
|
@@ -3237,13 +3237,13 @@ export interface ClustersMessage {
|
|
|
3237
3237
|
* records have been retrieved for the request. </p>
|
|
3238
3238
|
* @public
|
|
3239
3239
|
*/
|
|
3240
|
-
Marker?: string;
|
|
3240
|
+
Marker?: string | undefined;
|
|
3241
3241
|
/**
|
|
3242
3242
|
* <p>A list of <code>Cluster</code> objects, where each object describes one cluster.
|
|
3243
3243
|
* </p>
|
|
3244
3244
|
* @public
|
|
3245
3245
|
*/
|
|
3246
|
-
Clusters?: Cluster[];
|
|
3246
|
+
Clusters?: Cluster[] | undefined;
|
|
3247
3247
|
}
|
|
3248
3248
|
/**
|
|
3249
3249
|
* <p>The value specified as a snapshot identifier is already used by an existing
|
|
@@ -3280,17 +3280,17 @@ export interface Subnet {
|
|
|
3280
3280
|
* <p>The identifier of the subnet.</p>
|
|
3281
3281
|
* @public
|
|
3282
3282
|
*/
|
|
3283
|
-
SubnetIdentifier?: string;
|
|
3283
|
+
SubnetIdentifier?: string | undefined;
|
|
3284
3284
|
/**
|
|
3285
3285
|
* <p></p>
|
|
3286
3286
|
* @public
|
|
3287
3287
|
*/
|
|
3288
|
-
SubnetAvailabilityZone?: AvailabilityZone;
|
|
3288
|
+
SubnetAvailabilityZone?: AvailabilityZone | undefined;
|
|
3289
3289
|
/**
|
|
3290
3290
|
* <p>The status of the subnet.</p>
|
|
3291
3291
|
* @public
|
|
3292
3292
|
*/
|
|
3293
|
-
SubnetStatus?: string;
|
|
3293
|
+
SubnetStatus?: string | undefined;
|
|
3294
3294
|
}
|
|
3295
3295
|
/**
|
|
3296
3296
|
* <p>Describes a subnet group.</p>
|
|
@@ -3301,38 +3301,38 @@ export interface ClusterSubnetGroup {
|
|
|
3301
3301
|
* <p>The name of the cluster subnet group.</p>
|
|
3302
3302
|
* @public
|
|
3303
3303
|
*/
|
|
3304
|
-
ClusterSubnetGroupName?: string;
|
|
3304
|
+
ClusterSubnetGroupName?: string | undefined;
|
|
3305
3305
|
/**
|
|
3306
3306
|
* <p>The description of the cluster subnet group.</p>
|
|
3307
3307
|
* @public
|
|
3308
3308
|
*/
|
|
3309
|
-
Description?: string;
|
|
3309
|
+
Description?: string | undefined;
|
|
3310
3310
|
/**
|
|
3311
3311
|
* <p>The VPC ID of the cluster subnet group.</p>
|
|
3312
3312
|
* @public
|
|
3313
3313
|
*/
|
|
3314
|
-
VpcId?: string;
|
|
3314
|
+
VpcId?: string | undefined;
|
|
3315
3315
|
/**
|
|
3316
3316
|
* <p>The status of the cluster subnet group. Possible values are <code>Complete</code>,
|
|
3317
3317
|
* <code>Incomplete</code> and <code>Invalid</code>. </p>
|
|
3318
3318
|
* @public
|
|
3319
3319
|
*/
|
|
3320
|
-
SubnetGroupStatus?: string;
|
|
3320
|
+
SubnetGroupStatus?: string | undefined;
|
|
3321
3321
|
/**
|
|
3322
3322
|
* <p>A list of the VPC <a>Subnet</a> elements. </p>
|
|
3323
3323
|
* @public
|
|
3324
3324
|
*/
|
|
3325
|
-
Subnets?: Subnet[];
|
|
3325
|
+
Subnets?: Subnet[] | undefined;
|
|
3326
3326
|
/**
|
|
3327
3327
|
* <p>The list of tags for the cluster subnet group.</p>
|
|
3328
3328
|
* @public
|
|
3329
3329
|
*/
|
|
3330
|
-
Tags?: Tag[];
|
|
3330
|
+
Tags?: Tag[] | undefined;
|
|
3331
3331
|
/**
|
|
3332
3332
|
* <p>The IP address types supported by this cluster subnet group. Possible values are <code>ipv4</code> and <code>dualstack</code>.</p>
|
|
3333
3333
|
* @public
|
|
3334
3334
|
*/
|
|
3335
|
-
SupportedClusterIpAddressTypes?: string[];
|
|
3335
|
+
SupportedClusterIpAddressTypes?: string[] | undefined;
|
|
3336
3336
|
}
|
|
3337
3337
|
/**
|
|
3338
3338
|
* <p>A <i>ClusterSubnetGroupName</i> is already used by an existing
|
|
@@ -3361,12 +3361,12 @@ export interface ClusterSubnetGroupMessage {
|
|
|
3361
3361
|
* records have been retrieved for the request. </p>
|
|
3362
3362
|
* @public
|
|
3363
3363
|
*/
|
|
3364
|
-
Marker?: string;
|
|
3364
|
+
Marker?: string | undefined;
|
|
3365
3365
|
/**
|
|
3366
3366
|
* <p>A list of <a>ClusterSubnetGroup</a> instances. </p>
|
|
3367
3367
|
* @public
|
|
3368
3368
|
*/
|
|
3369
|
-
ClusterSubnetGroups?: ClusterSubnetGroup[];
|
|
3369
|
+
ClusterSubnetGroups?: ClusterSubnetGroup[] | undefined;
|
|
3370
3370
|
}
|
|
3371
3371
|
/**
|
|
3372
3372
|
* <p>The cluster subnet group name does not refer to an existing cluster subnet
|
|
@@ -3423,17 +3423,17 @@ export interface ClusterVersion {
|
|
|
3423
3423
|
* <p>The version number used by the cluster.</p>
|
|
3424
3424
|
* @public
|
|
3425
3425
|
*/
|
|
3426
|
-
ClusterVersion?: string;
|
|
3426
|
+
ClusterVersion?: string | undefined;
|
|
3427
3427
|
/**
|
|
3428
3428
|
* <p>The name of the cluster parameter group family for the cluster.</p>
|
|
3429
3429
|
* @public
|
|
3430
3430
|
*/
|
|
3431
|
-
ClusterParameterGroupFamily?: string;
|
|
3431
|
+
ClusterParameterGroupFamily?: string | undefined;
|
|
3432
3432
|
/**
|
|
3433
3433
|
* <p>The description of the cluster version.</p>
|
|
3434
3434
|
* @public
|
|
3435
3435
|
*/
|
|
3436
|
-
Description?: string;
|
|
3436
|
+
Description?: string | undefined;
|
|
3437
3437
|
}
|
|
3438
3438
|
/**
|
|
3439
3439
|
* <p>Contains the output from the <a>DescribeClusterVersions</a> action.
|
|
@@ -3449,12 +3449,12 @@ export interface ClusterVersionsMessage {
|
|
|
3449
3449
|
* records have been retrieved for the request. </p>
|
|
3450
3450
|
* @public
|
|
3451
3451
|
*/
|
|
3452
|
-
Marker?: string;
|
|
3452
|
+
Marker?: string | undefined;
|
|
3453
3453
|
/**
|
|
3454
3454
|
* <p>A list of <code>Version</code> elements. </p>
|
|
3455
3455
|
* @public
|
|
3456
3456
|
*/
|
|
3457
|
-
ClusterVersions?: ClusterVersion[];
|
|
3457
|
+
ClusterVersions?: ClusterVersion[] | undefined;
|
|
3458
3458
|
}
|
|
3459
3459
|
/**
|
|
3460
3460
|
* <p>There is a conflict while updating the resource policy.</p>
|
|
@@ -3497,7 +3497,7 @@ export interface CopyClusterSnapshotMessage {
|
|
|
3497
3497
|
* </ul>
|
|
3498
3498
|
* @public
|
|
3499
3499
|
*/
|
|
3500
|
-
SourceSnapshotClusterIdentifier?: string;
|
|
3500
|
+
SourceSnapshotClusterIdentifier?: string | undefined;
|
|
3501
3501
|
/**
|
|
3502
3502
|
* <p>The identifier given to the new manual snapshot.</p>
|
|
3503
3503
|
* <p>Constraints:</p>
|
|
@@ -3528,7 +3528,7 @@ export interface CopyClusterSnapshotMessage {
|
|
|
3528
3528
|
* <p>The default value is -1.</p>
|
|
3529
3529
|
* @public
|
|
3530
3530
|
*/
|
|
3531
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
3531
|
+
ManualSnapshotRetentionPeriod?: number | undefined;
|
|
3532
3532
|
}
|
|
3533
3533
|
/**
|
|
3534
3534
|
* @public
|
|
@@ -3538,7 +3538,7 @@ export interface CopyClusterSnapshotResult {
|
|
|
3538
3538
|
* <p>Describes a snapshot.</p>
|
|
3539
3539
|
* @public
|
|
3540
3540
|
*/
|
|
3541
|
-
Snapshot?: Snapshot;
|
|
3541
|
+
Snapshot?: Snapshot | undefined;
|
|
3542
3542
|
}
|
|
3543
3543
|
/**
|
|
3544
3544
|
* <p>Cross-region snapshot copy was temporarily disabled. Try your request
|
|
@@ -3577,12 +3577,12 @@ export interface CreateAuthenticationProfileResult {
|
|
|
3577
3577
|
* <p>The name of the authentication profile that was created.</p>
|
|
3578
3578
|
* @public
|
|
3579
3579
|
*/
|
|
3580
|
-
AuthenticationProfileName?: string;
|
|
3580
|
+
AuthenticationProfileName?: string | undefined;
|
|
3581
3581
|
/**
|
|
3582
3582
|
* <p>The content of the authentication profile in JSON format.</p>
|
|
3583
3583
|
* @public
|
|
3584
3584
|
*/
|
|
3585
|
-
AuthenticationProfileContent?: string;
|
|
3585
|
+
AuthenticationProfileContent?: string | undefined;
|
|
3586
3586
|
}
|
|
3587
3587
|
/**
|
|
3588
3588
|
* <p>The authentication profile request is not valid. The profile name can't be null or empty.
|
|
@@ -3626,7 +3626,7 @@ export interface CreateClusterMessage {
|
|
|
3626
3626
|
* </ul>
|
|
3627
3627
|
* @public
|
|
3628
3628
|
*/
|
|
3629
|
-
DBName?: string;
|
|
3629
|
+
DBName?: string | undefined;
|
|
3630
3630
|
/**
|
|
3631
3631
|
* <p>A unique identifier for the cluster. You use this identifier to refer to the
|
|
3632
3632
|
* cluster for any subsequent cluster operations such as deleting or modifying. The
|
|
@@ -3674,7 +3674,7 @@ export interface CreateClusterMessage {
|
|
|
3674
3674
|
* </p>
|
|
3675
3675
|
* @public
|
|
3676
3676
|
*/
|
|
3677
|
-
ClusterType?: string;
|
|
3677
|
+
ClusterType?: string | undefined;
|
|
3678
3678
|
/**
|
|
3679
3679
|
* <p>The node type to be provisioned for the cluster. For information about node types,
|
|
3680
3680
|
* go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes"> Working with
|
|
@@ -3737,27 +3737,27 @@ export interface CreateClusterMessage {
|
|
|
3737
3737
|
* </ul>
|
|
3738
3738
|
* @public
|
|
3739
3739
|
*/
|
|
3740
|
-
MasterUserPassword?: string;
|
|
3740
|
+
MasterUserPassword?: string | undefined;
|
|
3741
3741
|
/**
|
|
3742
3742
|
* <p>A list of security groups to be associated with this cluster.</p>
|
|
3743
3743
|
* <p>Default: The default cluster security group for Amazon Redshift.</p>
|
|
3744
3744
|
* @public
|
|
3745
3745
|
*/
|
|
3746
|
-
ClusterSecurityGroups?: string[];
|
|
3746
|
+
ClusterSecurityGroups?: string[] | undefined;
|
|
3747
3747
|
/**
|
|
3748
3748
|
* <p>A list of Virtual Private Cloud (VPC) security groups to be associated with the
|
|
3749
3749
|
* cluster.</p>
|
|
3750
3750
|
* <p>Default: The default VPC security group is associated with the cluster.</p>
|
|
3751
3751
|
* @public
|
|
3752
3752
|
*/
|
|
3753
|
-
VpcSecurityGroupIds?: string[];
|
|
3753
|
+
VpcSecurityGroupIds?: string[] | undefined;
|
|
3754
3754
|
/**
|
|
3755
3755
|
* <p>The name of a cluster subnet group to be associated with this cluster.</p>
|
|
3756
3756
|
* <p>If this parameter is not provided the resulting cluster will be deployed outside
|
|
3757
3757
|
* virtual private cloud (VPC).</p>
|
|
3758
3758
|
* @public
|
|
3759
3759
|
*/
|
|
3760
|
-
ClusterSubnetGroupName?: string;
|
|
3760
|
+
ClusterSubnetGroupName?: string | undefined;
|
|
3761
3761
|
/**
|
|
3762
3762
|
* <p>The EC2 Availability Zone (AZ) in which you want Amazon Redshift to provision the
|
|
3763
3763
|
* cluster. For example, if you have several EC2 instances running in a specific
|
|
@@ -3771,7 +3771,7 @@ export interface CreateClusterMessage {
|
|
|
3771
3771
|
* current endpoint.</p>
|
|
3772
3772
|
* @public
|
|
3773
3773
|
*/
|
|
3774
|
-
AvailabilityZone?: string;
|
|
3774
|
+
AvailabilityZone?: string | undefined;
|
|
3775
3775
|
/**
|
|
3776
3776
|
* <p>The weekly time range (in UTC) during which automated cluster maintenance can
|
|
3777
3777
|
* occur.</p>
|
|
@@ -3784,7 +3784,7 @@ export interface CreateClusterMessage {
|
|
|
3784
3784
|
* <p>Constraints: Minimum 30-minute window.</p>
|
|
3785
3785
|
* @public
|
|
3786
3786
|
*/
|
|
3787
|
-
PreferredMaintenanceWindow?: string;
|
|
3787
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
3788
3788
|
/**
|
|
3789
3789
|
* <p>The name of the parameter group to be associated with this cluster.</p>
|
|
3790
3790
|
* <p>Default: The default Amazon Redshift cluster parameter group. For information about the
|
|
@@ -3805,7 +3805,7 @@ export interface CreateClusterMessage {
|
|
|
3805
3805
|
* </ul>
|
|
3806
3806
|
* @public
|
|
3807
3807
|
*/
|
|
3808
|
-
ClusterParameterGroupName?: string;
|
|
3808
|
+
ClusterParameterGroupName?: string | undefined;
|
|
3809
3809
|
/**
|
|
3810
3810
|
* <p>The number of days that automated snapshots are retained. If the value is 0,
|
|
3811
3811
|
* automated snapshots are disabled. Even if automated snapshots are disabled, you can
|
|
@@ -3816,7 +3816,7 @@ export interface CreateClusterMessage {
|
|
|
3816
3816
|
* <p>Constraints: Must be a value from 0 to 35.</p>
|
|
3817
3817
|
* @public
|
|
3818
3818
|
*/
|
|
3819
|
-
AutomatedSnapshotRetentionPeriod?: number;
|
|
3819
|
+
AutomatedSnapshotRetentionPeriod?: number | undefined;
|
|
3820
3820
|
/**
|
|
3821
3821
|
* <p>The default number of days to retain a manual snapshot. If the value is -1, the
|
|
3822
3822
|
* snapshot is retained indefinitely. This setting doesn't change the retention period
|
|
@@ -3824,7 +3824,7 @@ export interface CreateClusterMessage {
|
|
|
3824
3824
|
* <p>The value must be either -1 or an integer between 1 and 3,653.</p>
|
|
3825
3825
|
* @public
|
|
3826
3826
|
*/
|
|
3827
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
3827
|
+
ManualSnapshotRetentionPeriod?: number | undefined;
|
|
3828
3828
|
/**
|
|
3829
3829
|
* <p>The port number on which the cluster accepts incoming connections.</p>
|
|
3830
3830
|
* <p>The cluster is accessible only via the JDBC and ODBC connection strings. Part of
|
|
@@ -3845,7 +3845,7 @@ export interface CreateClusterMessage {
|
|
|
3845
3845
|
* </ul>
|
|
3846
3846
|
* @public
|
|
3847
3847
|
*/
|
|
3848
|
-
Port?: number;
|
|
3848
|
+
Port?: number | undefined;
|
|
3849
3849
|
/**
|
|
3850
3850
|
* <p>The version of the Amazon Redshift engine software that you want to deploy on the
|
|
3851
3851
|
* cluster.</p>
|
|
@@ -3855,7 +3855,7 @@ export interface CreateClusterMessage {
|
|
|
3855
3855
|
* </p>
|
|
3856
3856
|
* @public
|
|
3857
3857
|
*/
|
|
3858
|
-
ClusterVersion?: string;
|
|
3858
|
+
ClusterVersion?: string | undefined;
|
|
3859
3859
|
/**
|
|
3860
3860
|
* <p>If <code>true</code>, major version upgrades can be applied during the maintenance
|
|
3861
3861
|
* window to the Amazon Redshift engine that is running on the cluster.</p>
|
|
@@ -3866,7 +3866,7 @@ export interface CreateClusterMessage {
|
|
|
3866
3866
|
* </p>
|
|
3867
3867
|
* @public
|
|
3868
3868
|
*/
|
|
3869
|
-
AllowVersionUpgrade?: boolean;
|
|
3869
|
+
AllowVersionUpgrade?: boolean | undefined;
|
|
3870
3870
|
/**
|
|
3871
3871
|
* <p>The number of compute nodes in the cluster. This parameter is required when the
|
|
3872
3872
|
* <b>ClusterType</b> parameter is specified as
|
|
@@ -3881,30 +3881,30 @@ export interface CreateClusterMessage {
|
|
|
3881
3881
|
* <p>Constraints: Value must be at least 1 and no more than 100.</p>
|
|
3882
3882
|
* @public
|
|
3883
3883
|
*/
|
|
3884
|
-
NumberOfNodes?: number;
|
|
3884
|
+
NumberOfNodes?: number | undefined;
|
|
3885
3885
|
/**
|
|
3886
3886
|
* <p>If <code>true</code>, the cluster can be accessed from a public network. </p>
|
|
3887
3887
|
* @public
|
|
3888
3888
|
*/
|
|
3889
|
-
PubliclyAccessible?: boolean;
|
|
3889
|
+
PubliclyAccessible?: boolean | undefined;
|
|
3890
3890
|
/**
|
|
3891
3891
|
* <p>If <code>true</code>, the data in the cluster is encrypted at rest. </p>
|
|
3892
3892
|
* <p>Default: false</p>
|
|
3893
3893
|
* @public
|
|
3894
3894
|
*/
|
|
3895
|
-
Encrypted?: boolean;
|
|
3895
|
+
Encrypted?: boolean | undefined;
|
|
3896
3896
|
/**
|
|
3897
3897
|
* <p>Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to
|
|
3898
3898
|
* retrieve the data encryption keys stored in an HSM.</p>
|
|
3899
3899
|
* @public
|
|
3900
3900
|
*/
|
|
3901
|
-
HsmClientCertificateIdentifier?: string;
|
|
3901
|
+
HsmClientCertificateIdentifier?: string | undefined;
|
|
3902
3902
|
/**
|
|
3903
3903
|
* <p>Specifies the name of the HSM configuration that contains the information the
|
|
3904
3904
|
* Amazon Redshift cluster can use to retrieve and store keys in an HSM.</p>
|
|
3905
3905
|
* @public
|
|
3906
3906
|
*/
|
|
3907
|
-
HsmConfigurationIdentifier?: string;
|
|
3907
|
+
HsmConfigurationIdentifier?: string | undefined;
|
|
3908
3908
|
/**
|
|
3909
3909
|
* <p>The Elastic IP (EIP) address for the cluster.</p>
|
|
3910
3910
|
* <p>Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible
|
|
@@ -3914,18 +3914,18 @@ export interface CreateClusterMessage {
|
|
|
3914
3914
|
* Platforms to Launch Your Cluster</a> in the Amazon Redshift Cluster Management Guide.</p>
|
|
3915
3915
|
* @public
|
|
3916
3916
|
*/
|
|
3917
|
-
ElasticIp?: string;
|
|
3917
|
+
ElasticIp?: string | undefined;
|
|
3918
3918
|
/**
|
|
3919
3919
|
* <p>A list of tag instances.</p>
|
|
3920
3920
|
* @public
|
|
3921
3921
|
*/
|
|
3922
|
-
Tags?: Tag[];
|
|
3922
|
+
Tags?: Tag[] | undefined;
|
|
3923
3923
|
/**
|
|
3924
3924
|
* <p>The Key Management Service (KMS) key ID of the encryption key that you want to
|
|
3925
3925
|
* use to encrypt data in the cluster.</p>
|
|
3926
3926
|
* @public
|
|
3927
3927
|
*/
|
|
3928
|
-
KmsKeyId?: string;
|
|
3928
|
+
KmsKeyId?: string | undefined;
|
|
3929
3929
|
/**
|
|
3930
3930
|
* <p>An option that specifies whether to create the cluster with enhanced VPC routing
|
|
3931
3931
|
* enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a
|
|
@@ -3935,12 +3935,12 @@ export interface CreateClusterMessage {
|
|
|
3935
3935
|
* <p>Default: false</p>
|
|
3936
3936
|
* @public
|
|
3937
3937
|
*/
|
|
3938
|
-
EnhancedVpcRouting?: boolean;
|
|
3938
|
+
EnhancedVpcRouting?: boolean | undefined;
|
|
3939
3939
|
/**
|
|
3940
3940
|
* <p>Reserved.</p>
|
|
3941
3941
|
* @public
|
|
3942
3942
|
*/
|
|
3943
|
-
AdditionalInfo?: string;
|
|
3943
|
+
AdditionalInfo?: string | undefined;
|
|
3944
3944
|
/**
|
|
3945
3945
|
* <p>A list of Identity and Access Management (IAM) roles that can be used by the
|
|
3946
3946
|
* cluster to access other Amazon Web Services services. You must supply the IAM roles in their Amazon
|
|
@@ -3950,39 +3950,39 @@ export interface CreateClusterMessage {
|
|
|
3950
3950
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
|
|
3951
3951
|
* @public
|
|
3952
3952
|
*/
|
|
3953
|
-
IamRoles?: string[];
|
|
3953
|
+
IamRoles?: string[] | undefined;
|
|
3954
3954
|
/**
|
|
3955
3955
|
* <p>An optional parameter for the name of the maintenance track for the cluster. If you
|
|
3956
3956
|
* don't provide a maintenance track name, the cluster is assigned to the
|
|
3957
3957
|
* <code>current</code> track.</p>
|
|
3958
3958
|
* @public
|
|
3959
3959
|
*/
|
|
3960
|
-
MaintenanceTrackName?: string;
|
|
3960
|
+
MaintenanceTrackName?: string | undefined;
|
|
3961
3961
|
/**
|
|
3962
3962
|
* <p>A unique identifier for the snapshot schedule.</p>
|
|
3963
3963
|
* @public
|
|
3964
3964
|
*/
|
|
3965
|
-
SnapshotScheduleIdentifier?: string;
|
|
3965
|
+
SnapshotScheduleIdentifier?: string | undefined;
|
|
3966
3966
|
/**
|
|
3967
3967
|
* <p>The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster is created.</p>
|
|
3968
3968
|
* @public
|
|
3969
3969
|
*/
|
|
3970
|
-
AvailabilityZoneRelocation?: boolean;
|
|
3970
|
+
AvailabilityZoneRelocation?: boolean | undefined;
|
|
3971
3971
|
/**
|
|
3972
3972
|
* <p>This parameter is retired. It does not set the AQUA configuration status. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).</p>
|
|
3973
3973
|
* @public
|
|
3974
3974
|
*/
|
|
3975
|
-
AquaConfigurationStatus?: AquaConfigurationStatus;
|
|
3975
|
+
AquaConfigurationStatus?: AquaConfigurationStatus | undefined;
|
|
3976
3976
|
/**
|
|
3977
3977
|
* <p>The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was created. </p>
|
|
3978
3978
|
* @public
|
|
3979
3979
|
*/
|
|
3980
|
-
DefaultIamRoleArn?: string;
|
|
3980
|
+
DefaultIamRoleArn?: string | undefined;
|
|
3981
3981
|
/**
|
|
3982
3982
|
* <p>A flag that specifies whether to load sample data once the cluster is created.</p>
|
|
3983
3983
|
* @public
|
|
3984
3984
|
*/
|
|
3985
|
-
LoadSampleData?: string;
|
|
3985
|
+
LoadSampleData?: string | undefined;
|
|
3986
3986
|
/**
|
|
3987
3987
|
* <p>If <code>true</code>, Amazon Redshift uses Secrets Manager to manage this cluster's admin credentials.
|
|
3988
3988
|
* You can't use <code>MasterUserPassword</code> if <code>ManageMasterPassword</code> is true.
|
|
@@ -3991,28 +3991,28 @@ export interface CreateClusterMessage {
|
|
|
3991
3991
|
* </p>
|
|
3992
3992
|
* @public
|
|
3993
3993
|
*/
|
|
3994
|
-
ManageMasterPassword?: boolean;
|
|
3994
|
+
ManageMasterPassword?: boolean | undefined;
|
|
3995
3995
|
/**
|
|
3996
3996
|
* <p>The ID of the Key Management Service (KMS) key used to encrypt and store the cluster's admin credentials secret.
|
|
3997
3997
|
* You can only use this parameter if <code>ManageMasterPassword</code> is true.</p>
|
|
3998
3998
|
* @public
|
|
3999
3999
|
*/
|
|
4000
|
-
MasterPasswordSecretKmsKeyId?: string;
|
|
4000
|
+
MasterPasswordSecretKmsKeyId?: string | undefined;
|
|
4001
4001
|
/**
|
|
4002
4002
|
* <p>The IP address types that the cluster supports. Possible values are <code>ipv4</code> and <code>dualstack</code>.</p>
|
|
4003
4003
|
* @public
|
|
4004
4004
|
*/
|
|
4005
|
-
IpAddressType?: string;
|
|
4005
|
+
IpAddressType?: string | undefined;
|
|
4006
4006
|
/**
|
|
4007
4007
|
* <p>If true, Amazon Redshift will deploy the cluster in two Availability Zones (AZ).</p>
|
|
4008
4008
|
* @public
|
|
4009
4009
|
*/
|
|
4010
|
-
MultiAZ?: boolean;
|
|
4010
|
+
MultiAZ?: boolean | undefined;
|
|
4011
4011
|
/**
|
|
4012
4012
|
* <p>The Amazon resource name (ARN) of the Amazon Redshift IAM Identity Center application.</p>
|
|
4013
4013
|
* @public
|
|
4014
4014
|
*/
|
|
4015
|
-
RedshiftIdcApplicationArn?: string;
|
|
4015
|
+
RedshiftIdcApplicationArn?: string | undefined;
|
|
4016
4016
|
}
|
|
4017
4017
|
/**
|
|
4018
4018
|
* @public
|
|
@@ -4022,7 +4022,7 @@ export interface CreateClusterResult {
|
|
|
4022
4022
|
* <p>Describes a cluster.</p>
|
|
4023
4023
|
* @public
|
|
4024
4024
|
*/
|
|
4025
|
-
Cluster?: Cluster;
|
|
4025
|
+
Cluster?: Cluster | undefined;
|
|
4026
4026
|
}
|
|
4027
4027
|
/**
|
|
4028
4028
|
* <p>There is no Amazon Redshift HSM client certificate with the specified
|
|
@@ -4272,7 +4272,7 @@ export interface CreateClusterParameterGroupMessage {
|
|
|
4272
4272
|
* <p>A list of tag instances.</p>
|
|
4273
4273
|
* @public
|
|
4274
4274
|
*/
|
|
4275
|
-
Tags?: Tag[];
|
|
4275
|
+
Tags?: Tag[] | undefined;
|
|
4276
4276
|
}
|
|
4277
4277
|
/**
|
|
4278
4278
|
* @public
|
|
@@ -4282,7 +4282,7 @@ export interface CreateClusterParameterGroupResult {
|
|
|
4282
4282
|
* <p>Describes a parameter group.</p>
|
|
4283
4283
|
* @public
|
|
4284
4284
|
*/
|
|
4285
|
-
ClusterParameterGroup?: ClusterParameterGroup;
|
|
4285
|
+
ClusterParameterGroup?: ClusterParameterGroup | undefined;
|
|
4286
4286
|
}
|
|
4287
4287
|
/**
|
|
4288
4288
|
* <p></p>
|
|
@@ -4318,7 +4318,7 @@ export interface CreateClusterSecurityGroupMessage {
|
|
|
4318
4318
|
* <p>A list of tag instances.</p>
|
|
4319
4319
|
* @public
|
|
4320
4320
|
*/
|
|
4321
|
-
Tags?: Tag[];
|
|
4321
|
+
Tags?: Tag[] | undefined;
|
|
4322
4322
|
}
|
|
4323
4323
|
/**
|
|
4324
4324
|
* @public
|
|
@@ -4328,7 +4328,7 @@ export interface CreateClusterSecurityGroupResult {
|
|
|
4328
4328
|
* <p>Describes a security group.</p>
|
|
4329
4329
|
* @public
|
|
4330
4330
|
*/
|
|
4331
|
-
ClusterSecurityGroup?: ClusterSecurityGroup;
|
|
4331
|
+
ClusterSecurityGroup?: ClusterSecurityGroup | undefined;
|
|
4332
4332
|
}
|
|
4333
4333
|
/**
|
|
4334
4334
|
* <p></p>
|
|
@@ -4370,12 +4370,12 @@ export interface CreateClusterSnapshotMessage {
|
|
|
4370
4370
|
* <p>The default value is -1.</p>
|
|
4371
4371
|
* @public
|
|
4372
4372
|
*/
|
|
4373
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
4373
|
+
ManualSnapshotRetentionPeriod?: number | undefined;
|
|
4374
4374
|
/**
|
|
4375
4375
|
* <p>A list of tag instances.</p>
|
|
4376
4376
|
* @public
|
|
4377
4377
|
*/
|
|
4378
|
-
Tags?: Tag[];
|
|
4378
|
+
Tags?: Tag[] | undefined;
|
|
4379
4379
|
}
|
|
4380
4380
|
/**
|
|
4381
4381
|
* @public
|
|
@@ -4385,7 +4385,7 @@ export interface CreateClusterSnapshotResult {
|
|
|
4385
4385
|
* <p>Describes a snapshot.</p>
|
|
4386
4386
|
* @public
|
|
4387
4387
|
*/
|
|
4388
|
-
Snapshot?: Snapshot;
|
|
4388
|
+
Snapshot?: Snapshot | undefined;
|
|
4389
4389
|
}
|
|
4390
4390
|
/**
|
|
4391
4391
|
* <p></p>
|
|
@@ -4427,7 +4427,7 @@ export interface CreateClusterSubnetGroupMessage {
|
|
|
4427
4427
|
* <p>A list of tag instances.</p>
|
|
4428
4428
|
* @public
|
|
4429
4429
|
*/
|
|
4430
|
-
Tags?: Tag[];
|
|
4430
|
+
Tags?: Tag[] | undefined;
|
|
4431
4431
|
}
|
|
4432
4432
|
/**
|
|
4433
4433
|
* @public
|
|
@@ -4437,7 +4437,7 @@ export interface CreateClusterSubnetGroupResult {
|
|
|
4437
4437
|
* <p>Describes a subnet group.</p>
|
|
4438
4438
|
* @public
|
|
4439
4439
|
*/
|
|
4440
|
-
ClusterSubnetGroup?: ClusterSubnetGroup;
|
|
4440
|
+
ClusterSubnetGroup?: ClusterSubnetGroup | undefined;
|
|
4441
4441
|
}
|
|
4442
4442
|
/**
|
|
4443
4443
|
* @public
|
|
@@ -4467,22 +4467,22 @@ export interface CreateCustomDomainAssociationResult {
|
|
|
4467
4467
|
* <p>The custom domain name for the association result.</p>
|
|
4468
4468
|
* @public
|
|
4469
4469
|
*/
|
|
4470
|
-
CustomDomainName?: string;
|
|
4470
|
+
CustomDomainName?: string | undefined;
|
|
4471
4471
|
/**
|
|
4472
4472
|
* <p>The Amazon Resource Name (ARN) for the certificate associated with the custom domain name.</p>
|
|
4473
4473
|
* @public
|
|
4474
4474
|
*/
|
|
4475
|
-
CustomDomainCertificateArn?: string;
|
|
4475
|
+
CustomDomainCertificateArn?: string | undefined;
|
|
4476
4476
|
/**
|
|
4477
4477
|
* <p>The identifier of the cluster that the custom domain is associated with.</p>
|
|
4478
4478
|
* @public
|
|
4479
4479
|
*/
|
|
4480
|
-
ClusterIdentifier?: string;
|
|
4480
|
+
ClusterIdentifier?: string | undefined;
|
|
4481
4481
|
/**
|
|
4482
4482
|
* <p>The expiration time for the certificate for the custom domain.</p>
|
|
4483
4483
|
* @public
|
|
4484
4484
|
*/
|
|
4485
|
-
CustomDomainCertExpiryTime?: string;
|
|
4485
|
+
CustomDomainCertExpiryTime?: string | undefined;
|
|
4486
4486
|
}
|
|
4487
4487
|
/**
|
|
4488
4488
|
* <p>An error occurred when an attempt was made to change the custom domain association.</p>
|
|
@@ -4504,12 +4504,12 @@ export interface CreateEndpointAccessMessage {
|
|
|
4504
4504
|
* <p>The cluster identifier of the cluster to access.</p>
|
|
4505
4505
|
* @public
|
|
4506
4506
|
*/
|
|
4507
|
-
ClusterIdentifier?: string;
|
|
4507
|
+
ClusterIdentifier?: string | undefined;
|
|
4508
4508
|
/**
|
|
4509
4509
|
* <p>The Amazon Web Services account ID of the owner of the cluster. This is only required if the cluster is in another Amazon Web Services account.</p>
|
|
4510
4510
|
* @public
|
|
4511
4511
|
*/
|
|
4512
|
-
ResourceOwner?: string;
|
|
4512
|
+
ResourceOwner?: string | undefined;
|
|
4513
4513
|
/**
|
|
4514
4514
|
* <p>The Redshift-managed VPC endpoint name.</p>
|
|
4515
4515
|
* <p>An endpoint name must contain 1-30 characters.
|
|
@@ -4528,7 +4528,7 @@ export interface CreateEndpointAccessMessage {
|
|
|
4528
4528
|
* <p>The security group that defines the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.</p>
|
|
4529
4529
|
* @public
|
|
4530
4530
|
*/
|
|
4531
|
-
VpcSecurityGroupIds?: string[];
|
|
4531
|
+
VpcSecurityGroupIds?: string[] | undefined;
|
|
4532
4532
|
}
|
|
4533
4533
|
/**
|
|
4534
4534
|
* <p>Describes a Redshift-managed VPC endpoint.</p>
|
|
@@ -4539,52 +4539,52 @@ export interface EndpointAccess {
|
|
|
4539
4539
|
* <p>The cluster identifier of the cluster associated with the endpoint.</p>
|
|
4540
4540
|
* @public
|
|
4541
4541
|
*/
|
|
4542
|
-
ClusterIdentifier?: string;
|
|
4542
|
+
ClusterIdentifier?: string | undefined;
|
|
4543
4543
|
/**
|
|
4544
4544
|
* <p>The Amazon Web Services account ID of the owner of the cluster.</p>
|
|
4545
4545
|
* @public
|
|
4546
4546
|
*/
|
|
4547
|
-
ResourceOwner?: string;
|
|
4547
|
+
ResourceOwner?: string | undefined;
|
|
4548
4548
|
/**
|
|
4549
4549
|
* <p>The subnet group name where Amazon Redshift chooses to deploy the endpoint.</p>
|
|
4550
4550
|
* @public
|
|
4551
4551
|
*/
|
|
4552
|
-
SubnetGroupName?: string;
|
|
4552
|
+
SubnetGroupName?: string | undefined;
|
|
4553
4553
|
/**
|
|
4554
4554
|
* <p>The status of the endpoint.</p>
|
|
4555
4555
|
* @public
|
|
4556
4556
|
*/
|
|
4557
|
-
EndpointStatus?: string;
|
|
4557
|
+
EndpointStatus?: string | undefined;
|
|
4558
4558
|
/**
|
|
4559
4559
|
* <p>The name of the endpoint.</p>
|
|
4560
4560
|
* @public
|
|
4561
4561
|
*/
|
|
4562
|
-
EndpointName?: string;
|
|
4562
|
+
EndpointName?: string | undefined;
|
|
4563
4563
|
/**
|
|
4564
4564
|
* <p>The time (UTC) that the endpoint was created.</p>
|
|
4565
4565
|
* @public
|
|
4566
4566
|
*/
|
|
4567
|
-
EndpointCreateTime?: Date;
|
|
4567
|
+
EndpointCreateTime?: Date | undefined;
|
|
4568
4568
|
/**
|
|
4569
4569
|
* <p>The port number on which the cluster accepts incoming connections.</p>
|
|
4570
4570
|
* @public
|
|
4571
4571
|
*/
|
|
4572
|
-
Port?: number;
|
|
4572
|
+
Port?: number | undefined;
|
|
4573
4573
|
/**
|
|
4574
4574
|
* <p>The DNS address of the endpoint.</p>
|
|
4575
4575
|
* @public
|
|
4576
4576
|
*/
|
|
4577
|
-
Address?: string;
|
|
4577
|
+
Address?: string | undefined;
|
|
4578
4578
|
/**
|
|
4579
4579
|
* <p>The security groups associated with the endpoint.</p>
|
|
4580
4580
|
* @public
|
|
4581
4581
|
*/
|
|
4582
|
-
VpcSecurityGroups?: VpcSecurityGroupMembership[];
|
|
4582
|
+
VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
|
|
4583
4583
|
/**
|
|
4584
4584
|
* <p>The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.</p>
|
|
4585
4585
|
* @public
|
|
4586
4586
|
*/
|
|
4587
|
-
VpcEndpoint?: VpcEndpoint;
|
|
4587
|
+
VpcEndpoint?: VpcEndpoint | undefined;
|
|
4588
4588
|
}
|
|
4589
4589
|
/**
|
|
4590
4590
|
* <p>The account already has a Redshift-managed VPC endpoint with the given identifier.</p>
|
|
@@ -4662,7 +4662,7 @@ export interface CreateEventSubscriptionMessage {
|
|
|
4662
4662
|
* <p>Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, and scheduled-action.</p>
|
|
4663
4663
|
* @public
|
|
4664
4664
|
*/
|
|
4665
|
-
SourceType?: string;
|
|
4665
|
+
SourceType?: string | undefined;
|
|
4666
4666
|
/**
|
|
4667
4667
|
* <p>A list of one or more identifiers of Amazon Redshift source objects. All of the objects
|
|
4668
4668
|
* must be of the same type as was specified in the source type parameter. The event
|
|
@@ -4673,32 +4673,32 @@ export interface CreateEventSubscriptionMessage {
|
|
|
4673
4673
|
* <p>Example: my-snapshot-20131010</p>
|
|
4674
4674
|
* @public
|
|
4675
4675
|
*/
|
|
4676
|
-
SourceIds?: string[];
|
|
4676
|
+
SourceIds?: string[] | undefined;
|
|
4677
4677
|
/**
|
|
4678
4678
|
* <p>Specifies the Amazon Redshift event categories to be published by the event notification
|
|
4679
4679
|
* subscription.</p>
|
|
4680
4680
|
* <p>Values: configuration, management, monitoring, security, pending</p>
|
|
4681
4681
|
* @public
|
|
4682
4682
|
*/
|
|
4683
|
-
EventCategories?: string[];
|
|
4683
|
+
EventCategories?: string[] | undefined;
|
|
4684
4684
|
/**
|
|
4685
4685
|
* <p>Specifies the Amazon Redshift event severity to be published by the event notification
|
|
4686
4686
|
* subscription.</p>
|
|
4687
4687
|
* <p>Values: ERROR, INFO</p>
|
|
4688
4688
|
* @public
|
|
4689
4689
|
*/
|
|
4690
|
-
Severity?: string;
|
|
4690
|
+
Severity?: string | undefined;
|
|
4691
4691
|
/**
|
|
4692
4692
|
* <p>A boolean value; set to <code>true</code> to activate the subscription, and set to
|
|
4693
4693
|
* <code>false</code> to create the subscription but not activate it. </p>
|
|
4694
4694
|
* @public
|
|
4695
4695
|
*/
|
|
4696
|
-
Enabled?: boolean;
|
|
4696
|
+
Enabled?: boolean | undefined;
|
|
4697
4697
|
/**
|
|
4698
4698
|
* <p>A list of tag instances.</p>
|
|
4699
4699
|
* @public
|
|
4700
4700
|
*/
|
|
4701
|
-
Tags?: Tag[];
|
|
4701
|
+
Tags?: Tag[] | undefined;
|
|
4702
4702
|
}
|
|
4703
4703
|
/**
|
|
4704
4704
|
* <p>Describes event subscriptions.</p>
|
|
@@ -4710,18 +4710,18 @@ export interface EventSubscription {
|
|
|
4710
4710
|
* subscription.</p>
|
|
4711
4711
|
* @public
|
|
4712
4712
|
*/
|
|
4713
|
-
CustomerAwsId?: string;
|
|
4713
|
+
CustomerAwsId?: string | undefined;
|
|
4714
4714
|
/**
|
|
4715
4715
|
* <p>The name of the Amazon Redshift event notification subscription.</p>
|
|
4716
4716
|
* @public
|
|
4717
4717
|
*/
|
|
4718
|
-
CustSubscriptionId?: string;
|
|
4718
|
+
CustSubscriptionId?: string | undefined;
|
|
4719
4719
|
/**
|
|
4720
4720
|
* <p>The Amazon Resource Name (ARN) of the Amazon SNS topic used by the event
|
|
4721
4721
|
* notification subscription.</p>
|
|
4722
4722
|
* @public
|
|
4723
4723
|
*/
|
|
4724
|
-
SnsTopicArn?: string;
|
|
4724
|
+
SnsTopicArn?: string | undefined;
|
|
4725
4725
|
/**
|
|
4726
4726
|
* <p>The status of the Amazon Redshift event notification subscription.</p>
|
|
4727
4727
|
* <p>Constraints:</p>
|
|
@@ -4739,50 +4739,50 @@ export interface EventSubscription {
|
|
|
4739
4739
|
* </ul>
|
|
4740
4740
|
* @public
|
|
4741
4741
|
*/
|
|
4742
|
-
Status?: string;
|
|
4742
|
+
Status?: string | undefined;
|
|
4743
4743
|
/**
|
|
4744
4744
|
* <p>The date and time the Amazon Redshift event notification subscription was
|
|
4745
4745
|
* created.</p>
|
|
4746
4746
|
* @public
|
|
4747
4747
|
*/
|
|
4748
|
-
SubscriptionCreationTime?: Date;
|
|
4748
|
+
SubscriptionCreationTime?: Date | undefined;
|
|
4749
4749
|
/**
|
|
4750
4750
|
* <p>The source type of the events returned by the Amazon Redshift event notification, such as
|
|
4751
4751
|
* cluster, cluster-snapshot, cluster-parameter-group, cluster-security-group, or scheduled-action. </p>
|
|
4752
4752
|
* @public
|
|
4753
4753
|
*/
|
|
4754
|
-
SourceType?: string;
|
|
4754
|
+
SourceType?: string | undefined;
|
|
4755
4755
|
/**
|
|
4756
4756
|
* <p>A list of the sources that publish events to the Amazon Redshift event notification
|
|
4757
4757
|
* subscription.</p>
|
|
4758
4758
|
* @public
|
|
4759
4759
|
*/
|
|
4760
|
-
SourceIdsList?: string[];
|
|
4760
|
+
SourceIdsList?: string[] | undefined;
|
|
4761
4761
|
/**
|
|
4762
4762
|
* <p>The list of Amazon Redshift event categories specified in the event notification
|
|
4763
4763
|
* subscription.</p>
|
|
4764
4764
|
* <p>Values: Configuration, Management, Monitoring, Security, Pending</p>
|
|
4765
4765
|
* @public
|
|
4766
4766
|
*/
|
|
4767
|
-
EventCategoriesList?: string[];
|
|
4767
|
+
EventCategoriesList?: string[] | undefined;
|
|
4768
4768
|
/**
|
|
4769
4769
|
* <p>The event severity specified in the Amazon Redshift event notification
|
|
4770
4770
|
* subscription.</p>
|
|
4771
4771
|
* <p>Values: ERROR, INFO</p>
|
|
4772
4772
|
* @public
|
|
4773
4773
|
*/
|
|
4774
|
-
Severity?: string;
|
|
4774
|
+
Severity?: string | undefined;
|
|
4775
4775
|
/**
|
|
4776
4776
|
* <p>A boolean value indicating whether the subscription is enabled; <code>true</code>
|
|
4777
4777
|
* indicates that the subscription is enabled.</p>
|
|
4778
4778
|
* @public
|
|
4779
4779
|
*/
|
|
4780
|
-
Enabled?: boolean;
|
|
4780
|
+
Enabled?: boolean | undefined;
|
|
4781
4781
|
/**
|
|
4782
4782
|
* <p>The list of tags for the event subscription.</p>
|
|
4783
4783
|
* @public
|
|
4784
4784
|
*/
|
|
4785
|
-
Tags?: Tag[];
|
|
4785
|
+
Tags?: Tag[] | undefined;
|
|
4786
4786
|
}
|
|
4787
4787
|
/**
|
|
4788
4788
|
* @public
|
|
@@ -4792,7 +4792,7 @@ export interface CreateEventSubscriptionResult {
|
|
|
4792
4792
|
* <p>Describes event subscriptions.</p>
|
|
4793
4793
|
* @public
|
|
4794
4794
|
*/
|
|
4795
|
-
EventSubscription?: EventSubscription;
|
|
4795
|
+
EventSubscription?: EventSubscription | undefined;
|
|
4796
4796
|
}
|
|
4797
4797
|
/**
|
|
4798
4798
|
* <p>The request would exceed the allowed number of event subscriptions for this
|
|
@@ -4928,7 +4928,7 @@ export interface CreateHsmClientCertificateMessage {
|
|
|
4928
4928
|
* <p>A list of tag instances.</p>
|
|
4929
4929
|
* @public
|
|
4930
4930
|
*/
|
|
4931
|
-
Tags?: Tag[];
|
|
4931
|
+
Tags?: Tag[] | undefined;
|
|
4932
4932
|
}
|
|
4933
4933
|
/**
|
|
4934
4934
|
* <p>Returns information about an HSM client certificate. The certificate is stored in a
|
|
@@ -4941,18 +4941,18 @@ export interface HsmClientCertificate {
|
|
|
4941
4941
|
* <p>The identifier of the HSM client certificate.</p>
|
|
4942
4942
|
* @public
|
|
4943
4943
|
*/
|
|
4944
|
-
HsmClientCertificateIdentifier?: string;
|
|
4944
|
+
HsmClientCertificateIdentifier?: string | undefined;
|
|
4945
4945
|
/**
|
|
4946
4946
|
* <p>The public key that the Amazon Redshift cluster will use to connect to the HSM. You must
|
|
4947
4947
|
* register the public key in the HSM.</p>
|
|
4948
4948
|
* @public
|
|
4949
4949
|
*/
|
|
4950
|
-
HsmClientCertificatePublicKey?: string;
|
|
4950
|
+
HsmClientCertificatePublicKey?: string | undefined;
|
|
4951
4951
|
/**
|
|
4952
4952
|
* <p>The list of tags for the HSM client certificate.</p>
|
|
4953
4953
|
* @public
|
|
4954
4954
|
*/
|
|
4955
|
-
Tags?: Tag[];
|
|
4955
|
+
Tags?: Tag[] | undefined;
|
|
4956
4956
|
}
|
|
4957
4957
|
/**
|
|
4958
4958
|
* @public
|
|
@@ -4964,7 +4964,7 @@ export interface CreateHsmClientCertificateResult {
|
|
|
4964
4964
|
* files.</p>
|
|
4965
4965
|
* @public
|
|
4966
4966
|
*/
|
|
4967
|
-
HsmClientCertificate?: HsmClientCertificate;
|
|
4967
|
+
HsmClientCertificate?: HsmClientCertificate | undefined;
|
|
4968
4968
|
}
|
|
4969
4969
|
/**
|
|
4970
4970
|
* <p>There is already an existing Amazon Redshift HSM client certificate with the specified
|
|
@@ -5035,7 +5035,7 @@ export interface CreateHsmConfigurationMessage {
|
|
|
5035
5035
|
* <p>A list of tag instances.</p>
|
|
5036
5036
|
* @public
|
|
5037
5037
|
*/
|
|
5038
|
-
Tags?: Tag[];
|
|
5038
|
+
Tags?: Tag[] | undefined;
|
|
5039
5039
|
}
|
|
5040
5040
|
/**
|
|
5041
5041
|
* <p>Returns information about an HSM configuration, which is an object that describes
|
|
@@ -5048,28 +5048,28 @@ export interface HsmConfiguration {
|
|
|
5048
5048
|
* <p>The name of the Amazon Redshift HSM configuration.</p>
|
|
5049
5049
|
* @public
|
|
5050
5050
|
*/
|
|
5051
|
-
HsmConfigurationIdentifier?: string;
|
|
5051
|
+
HsmConfigurationIdentifier?: string | undefined;
|
|
5052
5052
|
/**
|
|
5053
5053
|
* <p>A text description of the HSM configuration.</p>
|
|
5054
5054
|
* @public
|
|
5055
5055
|
*/
|
|
5056
|
-
Description?: string;
|
|
5056
|
+
Description?: string | undefined;
|
|
5057
5057
|
/**
|
|
5058
5058
|
* <p>The IP address that the Amazon Redshift cluster must use to access the HSM.</p>
|
|
5059
5059
|
* @public
|
|
5060
5060
|
*/
|
|
5061
|
-
HsmIpAddress?: string;
|
|
5061
|
+
HsmIpAddress?: string | undefined;
|
|
5062
5062
|
/**
|
|
5063
5063
|
* <p>The name of the partition in the HSM where the Amazon Redshift clusters will store their
|
|
5064
5064
|
* database encryption keys.</p>
|
|
5065
5065
|
* @public
|
|
5066
5066
|
*/
|
|
5067
|
-
HsmPartitionName?: string;
|
|
5067
|
+
HsmPartitionName?: string | undefined;
|
|
5068
5068
|
/**
|
|
5069
5069
|
* <p>The list of tags for the HSM configuration.</p>
|
|
5070
5070
|
* @public
|
|
5071
5071
|
*/
|
|
5072
|
-
Tags?: Tag[];
|
|
5072
|
+
Tags?: Tag[] | undefined;
|
|
5073
5073
|
}
|
|
5074
5074
|
/**
|
|
5075
5075
|
* @public
|
|
@@ -5081,7 +5081,7 @@ export interface CreateHsmConfigurationResult {
|
|
|
5081
5081
|
* store database encryption keys.</p>
|
|
5082
5082
|
* @public
|
|
5083
5083
|
*/
|
|
5084
|
-
HsmConfiguration?: HsmConfiguration;
|
|
5084
|
+
HsmConfiguration?: HsmConfiguration | undefined;
|
|
5085
5085
|
}
|
|
5086
5086
|
/**
|
|
5087
5087
|
* <p>There is already an existing Amazon Redshift HSM configuration with the specified
|
|
@@ -5136,12 +5136,12 @@ export interface CreateIntegrationMessage {
|
|
|
5136
5136
|
* Amazon Web Services owned key is used.</p>
|
|
5137
5137
|
* @public
|
|
5138
5138
|
*/
|
|
5139
|
-
KMSKeyId?: string;
|
|
5139
|
+
KMSKeyId?: string | undefined;
|
|
5140
5140
|
/**
|
|
5141
5141
|
* <p>A list of tags.</p>
|
|
5142
5142
|
* @public
|
|
5143
5143
|
*/
|
|
5144
|
-
TagList?: Tag[];
|
|
5144
|
+
TagList?: Tag[] | undefined;
|
|
5145
5145
|
/**
|
|
5146
5146
|
* <p>An optional set of non-secret key–value pairs that contains additional contextual
|
|
5147
5147
|
* information about the data. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context">Encryption
|
|
@@ -5150,12 +5150,12 @@ export interface CreateIntegrationMessage {
|
|
|
5150
5150
|
* <p>You can only include this parameter if you specify the <code>KMSKeyId</code> parameter.</p>
|
|
5151
5151
|
* @public
|
|
5152
5152
|
*/
|
|
5153
|
-
AdditionalEncryptionContext?: Record<string, string
|
|
5153
|
+
AdditionalEncryptionContext?: Record<string, string> | undefined;
|
|
5154
5154
|
/**
|
|
5155
5155
|
* <p>A description of the integration.</p>
|
|
5156
5156
|
* @public
|
|
5157
5157
|
*/
|
|
5158
|
-
Description?: string;
|
|
5158
|
+
Description?: string | undefined;
|
|
5159
5159
|
}
|
|
5160
5160
|
/**
|
|
5161
5161
|
* <p>The error of an inbound integration.</p>
|
|
@@ -5171,7 +5171,7 @@ export interface IntegrationError {
|
|
|
5171
5171
|
* <p>The error message of an inbound integration error.</p>
|
|
5172
5172
|
* @public
|
|
5173
5173
|
*/
|
|
5174
|
-
ErrorMessage?: string;
|
|
5174
|
+
ErrorMessage?: string | undefined;
|
|
5175
5175
|
}
|
|
5176
5176
|
/**
|
|
5177
5177
|
* @public
|
|
@@ -5198,61 +5198,61 @@ export interface Integration {
|
|
|
5198
5198
|
* <p>The Amazon Resource Name (ARN) of the integration.</p>
|
|
5199
5199
|
* @public
|
|
5200
5200
|
*/
|
|
5201
|
-
IntegrationArn?: string;
|
|
5201
|
+
IntegrationArn?: string | undefined;
|
|
5202
5202
|
/**
|
|
5203
5203
|
* <p>The name of the integration.</p>
|
|
5204
5204
|
* @public
|
|
5205
5205
|
*/
|
|
5206
|
-
IntegrationName?: string;
|
|
5206
|
+
IntegrationName?: string | undefined;
|
|
5207
5207
|
/**
|
|
5208
5208
|
* <p>The Amazon Resource Name (ARN) of the database used as the source for
|
|
5209
5209
|
* replication.</p>
|
|
5210
5210
|
* @public
|
|
5211
5211
|
*/
|
|
5212
|
-
SourceArn?: string;
|
|
5212
|
+
SourceArn?: string | undefined;
|
|
5213
5213
|
/**
|
|
5214
5214
|
* <p>The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.</p>
|
|
5215
5215
|
* @public
|
|
5216
5216
|
*/
|
|
5217
|
-
TargetArn?: string;
|
|
5217
|
+
TargetArn?: string | undefined;
|
|
5218
5218
|
/**
|
|
5219
5219
|
* <p>The current status of the integration.</p>
|
|
5220
5220
|
* @public
|
|
5221
5221
|
*/
|
|
5222
|
-
Status?: ZeroETLIntegrationStatus;
|
|
5222
|
+
Status?: ZeroETLIntegrationStatus | undefined;
|
|
5223
5223
|
/**
|
|
5224
5224
|
* <p>Any errors associated with the integration.</p>
|
|
5225
5225
|
* @public
|
|
5226
5226
|
*/
|
|
5227
|
-
Errors?: IntegrationError[];
|
|
5227
|
+
Errors?: IntegrationError[] | undefined;
|
|
5228
5228
|
/**
|
|
5229
5229
|
* <p>The time (UTC) when the integration was created.</p>
|
|
5230
5230
|
* @public
|
|
5231
5231
|
*/
|
|
5232
|
-
CreateTime?: Date;
|
|
5232
|
+
CreateTime?: Date | undefined;
|
|
5233
5233
|
/**
|
|
5234
5234
|
* <p>The description of the integration.</p>
|
|
5235
5235
|
* @public
|
|
5236
5236
|
*/
|
|
5237
|
-
Description?: string;
|
|
5237
|
+
Description?: string | undefined;
|
|
5238
5238
|
/**
|
|
5239
5239
|
* <p>The Key Management Service (KMS) key identifier for the key used to
|
|
5240
5240
|
* encrypt the integration.</p>
|
|
5241
5241
|
* @public
|
|
5242
5242
|
*/
|
|
5243
|
-
KMSKeyId?: string;
|
|
5243
|
+
KMSKeyId?: string | undefined;
|
|
5244
5244
|
/**
|
|
5245
5245
|
* <p>The encryption context for the integration. For more information,
|
|
5246
5246
|
* see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context">Encryption context</a> in the <i>Amazon Web Services Key Management Service Developer
|
|
5247
5247
|
* Guide</i>.</p>
|
|
5248
5248
|
* @public
|
|
5249
5249
|
*/
|
|
5250
|
-
AdditionalEncryptionContext?: Record<string, string
|
|
5250
|
+
AdditionalEncryptionContext?: Record<string, string> | undefined;
|
|
5251
5251
|
/**
|
|
5252
5252
|
* <p>The list of tags associated with the integration.</p>
|
|
5253
5253
|
* @public
|
|
5254
5254
|
*/
|
|
5255
|
-
Tags?: Tag[];
|
|
5255
|
+
Tags?: Tag[] | undefined;
|
|
5256
5256
|
}
|
|
5257
5257
|
/**
|
|
5258
5258
|
* <p>The integration you are trying to create already exists.</p>
|
|
@@ -5369,11 +5369,52 @@ export declare namespace LakeFormationScopeUnion {
|
|
|
5369
5369
|
}
|
|
5370
5370
|
const visit: <T>(value: LakeFormationScopeUnion, visitor: Visitor<T>) => T;
|
|
5371
5371
|
}
|
|
5372
|
+
/**
|
|
5373
|
+
* <p>The S3 Access Grants scope.</p>
|
|
5374
|
+
* @public
|
|
5375
|
+
*/
|
|
5376
|
+
export interface ReadWriteAccess {
|
|
5377
|
+
/**
|
|
5378
|
+
* <p>Determines whether the read/write scope is enabled or disabled.</p>
|
|
5379
|
+
* @public
|
|
5380
|
+
*/
|
|
5381
|
+
Authorization: ServiceAuthorization | undefined;
|
|
5382
|
+
}
|
|
5383
|
+
/**
|
|
5384
|
+
* <p>A list of scopes set up for S3 Access Grants integration.</p>
|
|
5385
|
+
* @public
|
|
5386
|
+
*/
|
|
5387
|
+
export type S3AccessGrantsScopeUnion = S3AccessGrantsScopeUnion.ReadWriteAccessMember | S3AccessGrantsScopeUnion.$UnknownMember;
|
|
5388
|
+
/**
|
|
5389
|
+
* @public
|
|
5390
|
+
*/
|
|
5391
|
+
export declare namespace S3AccessGrantsScopeUnion {
|
|
5392
|
+
/**
|
|
5393
|
+
* <p>The S3 Access Grants scope.</p>
|
|
5394
|
+
* @public
|
|
5395
|
+
*/
|
|
5396
|
+
interface ReadWriteAccessMember {
|
|
5397
|
+
ReadWriteAccess: ReadWriteAccess;
|
|
5398
|
+
$unknown?: never;
|
|
5399
|
+
}
|
|
5400
|
+
/**
|
|
5401
|
+
* @public
|
|
5402
|
+
*/
|
|
5403
|
+
interface $UnknownMember {
|
|
5404
|
+
ReadWriteAccess?: never;
|
|
5405
|
+
$unknown: [string, any];
|
|
5406
|
+
}
|
|
5407
|
+
interface Visitor<T> {
|
|
5408
|
+
ReadWriteAccess: (value: ReadWriteAccess) => T;
|
|
5409
|
+
_: (name: string, value: any) => T;
|
|
5410
|
+
}
|
|
5411
|
+
const visit: <T>(value: S3AccessGrantsScopeUnion, visitor: Visitor<T>) => T;
|
|
5412
|
+
}
|
|
5372
5413
|
/**
|
|
5373
5414
|
* <p>A list of service integrations.</p>
|
|
5374
5415
|
* @public
|
|
5375
5416
|
*/
|
|
5376
|
-
export type ServiceIntegrationsUnion = ServiceIntegrationsUnion.LakeFormationMember | ServiceIntegrationsUnion.$UnknownMember;
|
|
5417
|
+
export type ServiceIntegrationsUnion = ServiceIntegrationsUnion.LakeFormationMember | ServiceIntegrationsUnion.S3AccessGrantsMember | ServiceIntegrationsUnion.$UnknownMember;
|
|
5377
5418
|
/**
|
|
5378
5419
|
* @public
|
|
5379
5420
|
*/
|
|
@@ -5384,6 +5425,16 @@ export declare namespace ServiceIntegrationsUnion {
|
|
|
5384
5425
|
*/
|
|
5385
5426
|
interface LakeFormationMember {
|
|
5386
5427
|
LakeFormation: LakeFormationScopeUnion[];
|
|
5428
|
+
S3AccessGrants?: never;
|
|
5429
|
+
$unknown?: never;
|
|
5430
|
+
}
|
|
5431
|
+
/**
|
|
5432
|
+
* <p>A list of scopes set up for S3 Access Grants integration.</p>
|
|
5433
|
+
* @public
|
|
5434
|
+
*/
|
|
5435
|
+
interface S3AccessGrantsMember {
|
|
5436
|
+
LakeFormation?: never;
|
|
5437
|
+
S3AccessGrants: S3AccessGrantsScopeUnion[];
|
|
5387
5438
|
$unknown?: never;
|
|
5388
5439
|
}
|
|
5389
5440
|
/**
|
|
@@ -5391,10 +5442,12 @@ export declare namespace ServiceIntegrationsUnion {
|
|
|
5391
5442
|
*/
|
|
5392
5443
|
interface $UnknownMember {
|
|
5393
5444
|
LakeFormation?: never;
|
|
5445
|
+
S3AccessGrants?: never;
|
|
5394
5446
|
$unknown: [string, any];
|
|
5395
5447
|
}
|
|
5396
5448
|
interface Visitor<T> {
|
|
5397
5449
|
LakeFormation: (value: LakeFormationScopeUnion[]) => T;
|
|
5450
|
+
S3AccessGrants: (value: S3AccessGrantsScopeUnion[]) => T;
|
|
5398
5451
|
_: (name: string, value: any) => T;
|
|
5399
5452
|
}
|
|
5400
5453
|
const visit: <T>(value: ServiceIntegrationsUnion, visitor: Visitor<T>) => T;
|
|
@@ -5418,7 +5471,7 @@ export interface CreateRedshiftIdcApplicationMessage {
|
|
|
5418
5471
|
* verifies the connection token.</p>
|
|
5419
5472
|
* @public
|
|
5420
5473
|
*/
|
|
5421
|
-
IdentityNamespace?: string;
|
|
5474
|
+
IdentityNamespace?: string | undefined;
|
|
5422
5475
|
/**
|
|
5423
5476
|
* <p>The display name for the Amazon Redshift IAM Identity Center application instance. It appears in the console.</p>
|
|
5424
5477
|
* @public
|
|
@@ -5434,12 +5487,12 @@ export interface CreateRedshiftIdcApplicationMessage {
|
|
|
5434
5487
|
* <p>The token issuer list for the Amazon Redshift IAM Identity Center application instance.</p>
|
|
5435
5488
|
* @public
|
|
5436
5489
|
*/
|
|
5437
|
-
AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[];
|
|
5490
|
+
AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[] | undefined;
|
|
5438
5491
|
/**
|
|
5439
5492
|
* <p>A collection of service integrations for the Redshift IAM Identity Center application.</p>
|
|
5440
5493
|
* @public
|
|
5441
5494
|
*/
|
|
5442
|
-
ServiceIntegrations?: ServiceIntegrationsUnion[];
|
|
5495
|
+
ServiceIntegrations?: ServiceIntegrationsUnion[] | undefined;
|
|
5443
5496
|
}
|
|
5444
5497
|
/**
|
|
5445
5498
|
* <p>Contains properties for the Redshift IDC application.</p>
|
|
@@ -5450,52 +5503,52 @@ export interface RedshiftIdcApplication {
|
|
|
5450
5503
|
* <p>The ARN for the IAM Identity Center instance that Redshift integrates with.</p>
|
|
5451
5504
|
* @public
|
|
5452
5505
|
*/
|
|
5453
|
-
IdcInstanceArn?: string;
|
|
5506
|
+
IdcInstanceArn?: string | undefined;
|
|
5454
5507
|
/**
|
|
5455
5508
|
* <p>The name of the Redshift application in IAM Identity Center.</p>
|
|
5456
5509
|
* @public
|
|
5457
5510
|
*/
|
|
5458
|
-
RedshiftIdcApplicationName?: string;
|
|
5511
|
+
RedshiftIdcApplicationName?: string | undefined;
|
|
5459
5512
|
/**
|
|
5460
5513
|
* <p>The ARN for the Redshift application that integrates with IAM Identity Center.</p>
|
|
5461
5514
|
* @public
|
|
5462
5515
|
*/
|
|
5463
|
-
RedshiftIdcApplicationArn?: string;
|
|
5516
|
+
RedshiftIdcApplicationArn?: string | undefined;
|
|
5464
5517
|
/**
|
|
5465
5518
|
* <p>The identity namespace for the Amazon Redshift IAM Identity Center application. It determines which managed application verifies the connection token.</p>
|
|
5466
5519
|
* @public
|
|
5467
5520
|
*/
|
|
5468
|
-
IdentityNamespace?: string;
|
|
5521
|
+
IdentityNamespace?: string | undefined;
|
|
5469
5522
|
/**
|
|
5470
5523
|
* <p>The display name for the Amazon Redshift IAM Identity Center application. It appears on the console.</p>
|
|
5471
5524
|
* @public
|
|
5472
5525
|
*/
|
|
5473
|
-
IdcDisplayName?: string;
|
|
5526
|
+
IdcDisplayName?: string | undefined;
|
|
5474
5527
|
/**
|
|
5475
5528
|
* <p>The ARN for the Amazon Redshift IAM Identity Center application. It has the required permissions to be assumed and invoke the IDC Identity Center API.</p>
|
|
5476
5529
|
* @public
|
|
5477
5530
|
*/
|
|
5478
|
-
IamRoleArn?: string;
|
|
5531
|
+
IamRoleArn?: string | undefined;
|
|
5479
5532
|
/**
|
|
5480
5533
|
* <p>The ARN for the Amazon Redshift IAM Identity Center application.</p>
|
|
5481
5534
|
* @public
|
|
5482
5535
|
*/
|
|
5483
|
-
IdcManagedApplicationArn?: string;
|
|
5536
|
+
IdcManagedApplicationArn?: string | undefined;
|
|
5484
5537
|
/**
|
|
5485
5538
|
* <p>The onboarding status for the Amazon Redshift IAM Identity Center application.</p>
|
|
5486
5539
|
* @public
|
|
5487
5540
|
*/
|
|
5488
|
-
IdcOnboardStatus?: string;
|
|
5541
|
+
IdcOnboardStatus?: string | undefined;
|
|
5489
5542
|
/**
|
|
5490
5543
|
* <p>The authorized token issuer list for the Amazon Redshift IAM Identity Center application.</p>
|
|
5491
5544
|
* @public
|
|
5492
5545
|
*/
|
|
5493
|
-
AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[];
|
|
5546
|
+
AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[] | undefined;
|
|
5494
5547
|
/**
|
|
5495
5548
|
* <p>A list of service integrations for the Redshift IAM Identity Center application.</p>
|
|
5496
5549
|
* @public
|
|
5497
5550
|
*/
|
|
5498
|
-
ServiceIntegrations?: ServiceIntegrationsUnion[];
|
|
5551
|
+
ServiceIntegrations?: ServiceIntegrationsUnion[] | undefined;
|
|
5499
5552
|
}
|
|
5500
5553
|
/**
|
|
5501
5554
|
* @public
|
|
@@ -5505,7 +5558,7 @@ export interface CreateRedshiftIdcApplicationResult {
|
|
|
5505
5558
|
* <p>Contains properties for the Redshift IDC application.</p>
|
|
5506
5559
|
* @public
|
|
5507
5560
|
*/
|
|
5508
|
-
RedshiftIdcApplication?: RedshiftIdcApplication;
|
|
5561
|
+
RedshiftIdcApplication?: RedshiftIdcApplication | undefined;
|
|
5509
5562
|
}
|
|
5510
5563
|
/**
|
|
5511
5564
|
* <p>A dependent service denied access for the integration.</p>
|
|
@@ -5568,34 +5621,34 @@ export interface ResizeClusterMessage {
|
|
|
5568
5621
|
* <p>The new cluster type for the specified cluster.</p>
|
|
5569
5622
|
* @public
|
|
5570
5623
|
*/
|
|
5571
|
-
ClusterType?: string;
|
|
5624
|
+
ClusterType?: string | undefined;
|
|
5572
5625
|
/**
|
|
5573
5626
|
* <p>The new node type for the nodes you are adding. If not specified, the cluster's current node type is used.</p>
|
|
5574
5627
|
* @public
|
|
5575
5628
|
*/
|
|
5576
|
-
NodeType?: string;
|
|
5629
|
+
NodeType?: string | undefined;
|
|
5577
5630
|
/**
|
|
5578
5631
|
* <p>The new number of nodes for the cluster. If not specified, the cluster's current number of nodes is used.</p>
|
|
5579
5632
|
* @public
|
|
5580
5633
|
*/
|
|
5581
|
-
NumberOfNodes?: number;
|
|
5634
|
+
NumberOfNodes?: number | undefined;
|
|
5582
5635
|
/**
|
|
5583
5636
|
* <p>A boolean value indicating whether the resize operation is using the classic resize
|
|
5584
5637
|
* process. If you don't provide this parameter or set the value to
|
|
5585
5638
|
* <code>false</code>, the resize type is elastic. </p>
|
|
5586
5639
|
* @public
|
|
5587
5640
|
*/
|
|
5588
|
-
Classic?: boolean;
|
|
5641
|
+
Classic?: boolean | undefined;
|
|
5589
5642
|
/**
|
|
5590
5643
|
* <p>The identifier of the reserved node.</p>
|
|
5591
5644
|
* @public
|
|
5592
5645
|
*/
|
|
5593
|
-
ReservedNodeId?: string;
|
|
5646
|
+
ReservedNodeId?: string | undefined;
|
|
5594
5647
|
/**
|
|
5595
5648
|
* <p>The identifier of the target reserved node offering.</p>
|
|
5596
5649
|
* @public
|
|
5597
5650
|
*/
|
|
5598
|
-
TargetReservedNodeOfferingId?: string;
|
|
5651
|
+
TargetReservedNodeOfferingId?: string | undefined;
|
|
5599
5652
|
}
|
|
5600
5653
|
/**
|
|
5601
5654
|
* <p>Describes a resume cluster operation. For example, a scheduled action to run the <code>ResumeCluster</code> API operation. </p>
|
|
@@ -5617,17 +5670,17 @@ export interface ScheduledActionType {
|
|
|
5617
5670
|
* <p>An action that runs a <code>ResizeCluster</code> API operation. </p>
|
|
5618
5671
|
* @public
|
|
5619
5672
|
*/
|
|
5620
|
-
ResizeCluster?: ResizeClusterMessage;
|
|
5673
|
+
ResizeCluster?: ResizeClusterMessage | undefined;
|
|
5621
5674
|
/**
|
|
5622
5675
|
* <p>An action that runs a <code>PauseCluster</code> API operation. </p>
|
|
5623
5676
|
* @public
|
|
5624
5677
|
*/
|
|
5625
|
-
PauseCluster?: PauseClusterMessage;
|
|
5678
|
+
PauseCluster?: PauseClusterMessage | undefined;
|
|
5626
5679
|
/**
|
|
5627
5680
|
* <p>An action that runs a <code>ResumeCluster</code> API operation. </p>
|
|
5628
5681
|
* @public
|
|
5629
5682
|
*/
|
|
5630
|
-
ResumeCluster?: ResumeClusterMessage;
|
|
5683
|
+
ResumeCluster?: ResumeClusterMessage | undefined;
|
|
5631
5684
|
}
|
|
5632
5685
|
/**
|
|
5633
5686
|
* @public
|
|
@@ -5662,26 +5715,26 @@ export interface CreateScheduledActionMessage {
|
|
|
5662
5715
|
* </p>
|
|
5663
5716
|
* @public
|
|
5664
5717
|
*/
|
|
5665
|
-
ScheduledActionDescription?: string;
|
|
5718
|
+
ScheduledActionDescription?: string | undefined;
|
|
5666
5719
|
/**
|
|
5667
5720
|
* <p>The start time in UTC of the scheduled action.
|
|
5668
5721
|
* Before this time, the scheduled action does not trigger.
|
|
5669
5722
|
* For more information about this parameter, see <a>ScheduledAction</a>.</p>
|
|
5670
5723
|
* @public
|
|
5671
5724
|
*/
|
|
5672
|
-
StartTime?: Date;
|
|
5725
|
+
StartTime?: Date | undefined;
|
|
5673
5726
|
/**
|
|
5674
5727
|
* <p>The end time in UTC of the scheduled action. After this time, the scheduled action does not trigger.
|
|
5675
5728
|
* For more information about this parameter, see <a>ScheduledAction</a>. </p>
|
|
5676
5729
|
* @public
|
|
5677
5730
|
*/
|
|
5678
|
-
EndTime?: Date;
|
|
5731
|
+
EndTime?: Date | undefined;
|
|
5679
5732
|
/**
|
|
5680
5733
|
* <p>If true, the schedule is enabled. If false, the scheduled action does not trigger.
|
|
5681
5734
|
* For more information about <code>state</code> of the scheduled action, see <a>ScheduledAction</a>. </p>
|
|
5682
5735
|
* @public
|
|
5683
5736
|
*/
|
|
5684
|
-
Enable?: boolean;
|
|
5737
|
+
Enable?: boolean | undefined;
|
|
5685
5738
|
}
|
|
5686
5739
|
/**
|
|
5687
5740
|
* <p>The scheduled action is not valid. </p>
|
|
@@ -5729,13 +5782,13 @@ export interface ScheduledAction {
|
|
|
5729
5782
|
* <p>The name of the scheduled action. </p>
|
|
5730
5783
|
* @public
|
|
5731
5784
|
*/
|
|
5732
|
-
ScheduledActionName?: string;
|
|
5785
|
+
ScheduledActionName?: string | undefined;
|
|
5733
5786
|
/**
|
|
5734
5787
|
* <p>A JSON format string of the Amazon Redshift API operation with input parameters. </p>
|
|
5735
5788
|
* <p>"<code>\{\"ResizeCluster\":\{\"NodeType\":\"ra3.4xlarge\",\"ClusterIdentifier\":\"my-test-cluster\",\"NumberOfNodes\":3\}\}</code>". </p>
|
|
5736
5789
|
* @public
|
|
5737
5790
|
*/
|
|
5738
|
-
TargetAction?: ScheduledActionType;
|
|
5791
|
+
TargetAction?: ScheduledActionType | undefined;
|
|
5739
5792
|
/**
|
|
5740
5793
|
* <p>The schedule for a one-time (at format) or recurring (cron format) scheduled action.
|
|
5741
5794
|
* Schedule invocations must be separated by at least one hour.</p>
|
|
@@ -5746,7 +5799,7 @@ export interface ScheduledAction {
|
|
|
5746
5799
|
* in the <i>Amazon CloudWatch Events User Guide</i>.</p>
|
|
5747
5800
|
* @public
|
|
5748
5801
|
*/
|
|
5749
|
-
Schedule?: string;
|
|
5802
|
+
Schedule?: string | undefined;
|
|
5750
5803
|
/**
|
|
5751
5804
|
* <p>The IAM role to assume to run the scheduled action.
|
|
5752
5805
|
* This IAM role must have permission to run the Amazon Redshift API operation in the scheduled action.
|
|
@@ -5758,32 +5811,32 @@ export interface ScheduledAction {
|
|
|
5758
5811
|
* </p>
|
|
5759
5812
|
* @public
|
|
5760
5813
|
*/
|
|
5761
|
-
IamRole?: string;
|
|
5814
|
+
IamRole?: string | undefined;
|
|
5762
5815
|
/**
|
|
5763
5816
|
* <p>The description of the scheduled action. </p>
|
|
5764
5817
|
* @public
|
|
5765
5818
|
*/
|
|
5766
|
-
ScheduledActionDescription?: string;
|
|
5819
|
+
ScheduledActionDescription?: string | undefined;
|
|
5767
5820
|
/**
|
|
5768
5821
|
* <p>The state of the scheduled action. For example, <code>DISABLED</code>. </p>
|
|
5769
5822
|
* @public
|
|
5770
5823
|
*/
|
|
5771
|
-
State?: ScheduledActionState;
|
|
5824
|
+
State?: ScheduledActionState | undefined;
|
|
5772
5825
|
/**
|
|
5773
5826
|
* <p>List of times when the scheduled action will run. </p>
|
|
5774
5827
|
* @public
|
|
5775
5828
|
*/
|
|
5776
|
-
NextInvocations?: Date[];
|
|
5829
|
+
NextInvocations?: Date[] | undefined;
|
|
5777
5830
|
/**
|
|
5778
5831
|
* <p>The start time in UTC when the schedule is active. Before this time, the scheduled action does not trigger. </p>
|
|
5779
5832
|
* @public
|
|
5780
5833
|
*/
|
|
5781
|
-
StartTime?: Date;
|
|
5834
|
+
StartTime?: Date | undefined;
|
|
5782
5835
|
/**
|
|
5783
5836
|
* <p>The end time in UTC when the schedule is no longer active. After this time, the scheduled action does not trigger. </p>
|
|
5784
5837
|
* @public
|
|
5785
5838
|
*/
|
|
5786
|
-
EndTime?: Date;
|
|
5839
|
+
EndTime?: Date | undefined;
|
|
5787
5840
|
}
|
|
5788
5841
|
/**
|
|
5789
5842
|
* <p>The scheduled action already exists. </p>
|
|
@@ -5855,12 +5908,12 @@ export interface CreateSnapshotCopyGrantMessage {
|
|
|
5855
5908
|
* permission. If no key is specified, the default key is used.</p>
|
|
5856
5909
|
* @public
|
|
5857
5910
|
*/
|
|
5858
|
-
KmsKeyId?: string;
|
|
5911
|
+
KmsKeyId?: string | undefined;
|
|
5859
5912
|
/**
|
|
5860
5913
|
* <p>A list of tag instances.</p>
|
|
5861
5914
|
* @public
|
|
5862
5915
|
*/
|
|
5863
|
-
Tags?: Tag[];
|
|
5916
|
+
Tags?: Tag[] | undefined;
|
|
5864
5917
|
}
|
|
5865
5918
|
/**
|
|
5866
5919
|
* <p>The snapshot copy grant that grants Amazon Redshift permission to encrypt copied
|
|
@@ -5878,18 +5931,18 @@ export interface SnapshotCopyGrant {
|
|
|
5878
5931
|
* <p>The name of the snapshot copy grant.</p>
|
|
5879
5932
|
* @public
|
|
5880
5933
|
*/
|
|
5881
|
-
SnapshotCopyGrantName?: string;
|
|
5934
|
+
SnapshotCopyGrantName?: string | undefined;
|
|
5882
5935
|
/**
|
|
5883
5936
|
* <p>The unique identifier of the encrypted symmetric key in Amazon Web Services KMS to which
|
|
5884
5937
|
* Amazon Redshift is granted permission.</p>
|
|
5885
5938
|
* @public
|
|
5886
5939
|
*/
|
|
5887
|
-
KmsKeyId?: string;
|
|
5940
|
+
KmsKeyId?: string | undefined;
|
|
5888
5941
|
/**
|
|
5889
5942
|
* <p>A list of tag instances.</p>
|
|
5890
5943
|
* @public
|
|
5891
5944
|
*/
|
|
5892
|
-
Tags?: Tag[];
|
|
5945
|
+
Tags?: Tag[] | undefined;
|
|
5893
5946
|
}
|
|
5894
5947
|
/**
|
|
5895
5948
|
* @public
|
|
@@ -5906,7 +5959,7 @@ export interface CreateSnapshotCopyGrantResult {
|
|
|
5906
5959
|
* </p>
|
|
5907
5960
|
* @public
|
|
5908
5961
|
*/
|
|
5909
|
-
SnapshotCopyGrant?: SnapshotCopyGrant;
|
|
5962
|
+
SnapshotCopyGrant?: SnapshotCopyGrant | undefined;
|
|
5910
5963
|
}
|
|
5911
5964
|
/**
|
|
5912
5965
|
* <p>The snapshot copy grant can't be created because a grant with the same name already
|
|
@@ -5943,33 +5996,33 @@ export interface CreateSnapshotScheduleMessage {
|
|
|
5943
5996
|
* expressions, for example "cron(30 12 *)" or "rate(12 hours)". </p>
|
|
5944
5997
|
* @public
|
|
5945
5998
|
*/
|
|
5946
|
-
ScheduleDefinitions?: string[];
|
|
5999
|
+
ScheduleDefinitions?: string[] | undefined;
|
|
5947
6000
|
/**
|
|
5948
6001
|
* <p>A unique identifier for a snapshot schedule. Only alphanumeric characters are allowed
|
|
5949
6002
|
* for the identifier.</p>
|
|
5950
6003
|
* @public
|
|
5951
6004
|
*/
|
|
5952
|
-
ScheduleIdentifier?: string;
|
|
6005
|
+
ScheduleIdentifier?: string | undefined;
|
|
5953
6006
|
/**
|
|
5954
6007
|
* <p>The description of the snapshot schedule.</p>
|
|
5955
6008
|
* @public
|
|
5956
6009
|
*/
|
|
5957
|
-
ScheduleDescription?: string;
|
|
6010
|
+
ScheduleDescription?: string | undefined;
|
|
5958
6011
|
/**
|
|
5959
6012
|
* <p>An optional set of tags you can use to search for the schedule.</p>
|
|
5960
6013
|
* @public
|
|
5961
6014
|
*/
|
|
5962
|
-
Tags?: Tag[];
|
|
6015
|
+
Tags?: Tag[] | undefined;
|
|
5963
6016
|
/**
|
|
5964
6017
|
* <p></p>
|
|
5965
6018
|
* @public
|
|
5966
6019
|
*/
|
|
5967
|
-
DryRun?: boolean;
|
|
6020
|
+
DryRun?: boolean | undefined;
|
|
5968
6021
|
/**
|
|
5969
6022
|
* <p></p>
|
|
5970
6023
|
* @public
|
|
5971
6024
|
*/
|
|
5972
|
-
NextInvocations?: number;
|
|
6025
|
+
NextInvocations?: number | undefined;
|
|
5973
6026
|
}
|
|
5974
6027
|
/**
|
|
5975
6028
|
* <p>The definition you submitted is not supported.</p>
|
|
@@ -5993,37 +6046,37 @@ export interface SnapshotSchedule {
|
|
|
5993
6046
|
* <p>A list of ScheduleDefinitions.</p>
|
|
5994
6047
|
* @public
|
|
5995
6048
|
*/
|
|
5996
|
-
ScheduleDefinitions?: string[];
|
|
6049
|
+
ScheduleDefinitions?: string[] | undefined;
|
|
5997
6050
|
/**
|
|
5998
6051
|
* <p>A unique identifier for the schedule.</p>
|
|
5999
6052
|
* @public
|
|
6000
6053
|
*/
|
|
6001
|
-
ScheduleIdentifier?: string;
|
|
6054
|
+
ScheduleIdentifier?: string | undefined;
|
|
6002
6055
|
/**
|
|
6003
6056
|
* <p>The description of the schedule.</p>
|
|
6004
6057
|
* @public
|
|
6005
6058
|
*/
|
|
6006
|
-
ScheduleDescription?: string;
|
|
6059
|
+
ScheduleDescription?: string | undefined;
|
|
6007
6060
|
/**
|
|
6008
6061
|
* <p>An optional set of tags describing the schedule.</p>
|
|
6009
6062
|
* @public
|
|
6010
6063
|
*/
|
|
6011
|
-
Tags?: Tag[];
|
|
6064
|
+
Tags?: Tag[] | undefined;
|
|
6012
6065
|
/**
|
|
6013
6066
|
* <p></p>
|
|
6014
6067
|
* @public
|
|
6015
6068
|
*/
|
|
6016
|
-
NextInvocations?: Date[];
|
|
6069
|
+
NextInvocations?: Date[] | undefined;
|
|
6017
6070
|
/**
|
|
6018
6071
|
* <p>The number of clusters associated with the schedule.</p>
|
|
6019
6072
|
* @public
|
|
6020
6073
|
*/
|
|
6021
|
-
AssociatedClusterCount?: number;
|
|
6074
|
+
AssociatedClusterCount?: number | undefined;
|
|
6022
6075
|
/**
|
|
6023
6076
|
* <p>A list of clusters associated with the schedule. A maximum of 100 clusters is returned.</p>
|
|
6024
6077
|
* @public
|
|
6025
6078
|
*/
|
|
6026
|
-
AssociatedClusters?: ClusterAssociatedToSchedule[];
|
|
6079
|
+
AssociatedClusters?: ClusterAssociatedToSchedule[] | undefined;
|
|
6027
6080
|
}
|
|
6028
6081
|
/**
|
|
6029
6082
|
* <p>The specified snapshot schedule already exists. </p>
|
|
@@ -6169,18 +6222,18 @@ export interface CreateUsageLimitMessage {
|
|
|
6169
6222
|
* </p>
|
|
6170
6223
|
* @public
|
|
6171
6224
|
*/
|
|
6172
|
-
Period?: UsageLimitPeriod;
|
|
6225
|
+
Period?: UsageLimitPeriod | undefined;
|
|
6173
6226
|
/**
|
|
6174
6227
|
* <p>The action that Amazon Redshift takes when the limit is reached. The default is log.
|
|
6175
6228
|
* For more information about this parameter, see <a>UsageLimit</a>.</p>
|
|
6176
6229
|
* @public
|
|
6177
6230
|
*/
|
|
6178
|
-
BreachAction?: UsageLimitBreachAction;
|
|
6231
|
+
BreachAction?: UsageLimitBreachAction | undefined;
|
|
6179
6232
|
/**
|
|
6180
6233
|
* <p>A list of tag instances.</p>
|
|
6181
6234
|
* @public
|
|
6182
6235
|
*/
|
|
6183
|
-
Tags?: Tag[];
|
|
6236
|
+
Tags?: Tag[] | undefined;
|
|
6184
6237
|
}
|
|
6185
6238
|
/**
|
|
6186
6239
|
* <p>The usage limit is not valid.</p>
|
|
@@ -6203,32 +6256,32 @@ export interface UsageLimit {
|
|
|
6203
6256
|
* <p>The identifier of the usage limit.</p>
|
|
6204
6257
|
* @public
|
|
6205
6258
|
*/
|
|
6206
|
-
UsageLimitId?: string;
|
|
6259
|
+
UsageLimitId?: string | undefined;
|
|
6207
6260
|
/**
|
|
6208
6261
|
* <p>The identifier of the cluster with a usage limit.</p>
|
|
6209
6262
|
* @public
|
|
6210
6263
|
*/
|
|
6211
|
-
ClusterIdentifier?: string;
|
|
6264
|
+
ClusterIdentifier?: string | undefined;
|
|
6212
6265
|
/**
|
|
6213
6266
|
* <p>The Amazon Redshift feature to which the limit applies.</p>
|
|
6214
6267
|
* @public
|
|
6215
6268
|
*/
|
|
6216
|
-
FeatureType?: UsageLimitFeatureType;
|
|
6269
|
+
FeatureType?: UsageLimitFeatureType | undefined;
|
|
6217
6270
|
/**
|
|
6218
6271
|
* <p>The type of limit. Depending on the feature type, this can be based on a time duration or data size.</p>
|
|
6219
6272
|
* @public
|
|
6220
6273
|
*/
|
|
6221
|
-
LimitType?: UsageLimitLimitType;
|
|
6274
|
+
LimitType?: UsageLimitLimitType | undefined;
|
|
6222
6275
|
/**
|
|
6223
6276
|
* <p>The limit amount. If time-based, this amount is in minutes. If data-based, this amount is in terabytes (TB).</p>
|
|
6224
6277
|
* @public
|
|
6225
6278
|
*/
|
|
6226
|
-
Amount?: number;
|
|
6279
|
+
Amount?: number | undefined;
|
|
6227
6280
|
/**
|
|
6228
6281
|
* <p>The time period that the amount applies to. A <code>weekly</code> period begins on Sunday. The default is <code>monthly</code>. </p>
|
|
6229
6282
|
* @public
|
|
6230
6283
|
*/
|
|
6231
|
-
Period?: UsageLimitPeriod;
|
|
6284
|
+
Period?: UsageLimitPeriod | undefined;
|
|
6232
6285
|
/**
|
|
6233
6286
|
* <p>The action that Amazon Redshift takes when the limit is reached. Possible values are: </p>
|
|
6234
6287
|
* <ul>
|
|
@@ -6247,12 +6300,12 @@ export interface UsageLimit {
|
|
|
6247
6300
|
* </ul>
|
|
6248
6301
|
* @public
|
|
6249
6302
|
*/
|
|
6250
|
-
BreachAction?: UsageLimitBreachAction;
|
|
6303
|
+
BreachAction?: UsageLimitBreachAction | undefined;
|
|
6251
6304
|
/**
|
|
6252
6305
|
* <p>A list of tag instances.</p>
|
|
6253
6306
|
* @public
|
|
6254
6307
|
*/
|
|
6255
|
-
Tags?: Tag[];
|
|
6308
|
+
Tags?: Tag[] | undefined;
|
|
6256
6309
|
}
|
|
6257
6310
|
/**
|
|
6258
6311
|
* <p>The usage limit already exists. </p>
|
|
@@ -6286,12 +6339,12 @@ export interface CustomDomainAssociationsMessage {
|
|
|
6286
6339
|
* <p>The marker for the custom domain association.</p>
|
|
6287
6340
|
* @public
|
|
6288
6341
|
*/
|
|
6289
|
-
Marker?: string;
|
|
6342
|
+
Marker?: string | undefined;
|
|
6290
6343
|
/**
|
|
6291
6344
|
* <p>The associations for the custom domain.</p>
|
|
6292
6345
|
* @public
|
|
6293
6346
|
*/
|
|
6294
|
-
Associations?: Association[];
|
|
6347
|
+
Associations?: Association[] | undefined;
|
|
6295
6348
|
}
|
|
6296
6349
|
/**
|
|
6297
6350
|
* @public
|
|
@@ -6301,12 +6354,12 @@ export interface CustomerStorageMessage {
|
|
|
6301
6354
|
* <p>The total amount of storage currently used for snapshots.</p>
|
|
6302
6355
|
* @public
|
|
6303
6356
|
*/
|
|
6304
|
-
TotalBackupSizeInMegaBytes?: number;
|
|
6357
|
+
TotalBackupSizeInMegaBytes?: number | undefined;
|
|
6305
6358
|
/**
|
|
6306
6359
|
* <p>The total amount of storage currently provisioned.</p>
|
|
6307
6360
|
* @public
|
|
6308
6361
|
*/
|
|
6309
|
-
TotalProvisionedStorageInMegaBytes?: number;
|
|
6362
|
+
TotalProvisionedStorageInMegaBytes?: number | undefined;
|
|
6310
6363
|
}
|
|
6311
6364
|
/**
|
|
6312
6365
|
* @public
|
|
@@ -6361,7 +6414,7 @@ export interface DefaultClusterParameters {
|
|
|
6361
6414
|
* parameters apply.</p>
|
|
6362
6415
|
* @public
|
|
6363
6416
|
*/
|
|
6364
|
-
ParameterGroupFamily?: string;
|
|
6417
|
+
ParameterGroupFamily?: string | undefined;
|
|
6365
6418
|
/**
|
|
6366
6419
|
* <p>A value that indicates the starting point for the next set of response records in a
|
|
6367
6420
|
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
@@ -6370,12 +6423,12 @@ export interface DefaultClusterParameters {
|
|
|
6370
6423
|
* records have been retrieved for the request. </p>
|
|
6371
6424
|
* @public
|
|
6372
6425
|
*/
|
|
6373
|
-
Marker?: string;
|
|
6426
|
+
Marker?: string | undefined;
|
|
6374
6427
|
/**
|
|
6375
6428
|
* <p>The list of cluster default parameters.</p>
|
|
6376
6429
|
* @public
|
|
6377
6430
|
*/
|
|
6378
|
-
Parameters?: Parameter[];
|
|
6431
|
+
Parameters?: Parameter[] | undefined;
|
|
6379
6432
|
}
|
|
6380
6433
|
/**
|
|
6381
6434
|
* @public
|
|
@@ -6395,7 +6448,7 @@ export interface DeleteAuthenticationProfileResult {
|
|
|
6395
6448
|
* <p>The name of the authentication profile that was deleted.</p>
|
|
6396
6449
|
* @public
|
|
6397
6450
|
*/
|
|
6398
|
-
AuthenticationProfileName?: string;
|
|
6451
|
+
AuthenticationProfileName?: string | undefined;
|
|
6399
6452
|
}
|
|
6400
6453
|
/**
|
|
6401
6454
|
* <p></p>
|
|
@@ -6436,7 +6489,7 @@ export interface DeleteClusterMessage {
|
|
|
6436
6489
|
* </p>
|
|
6437
6490
|
* @public
|
|
6438
6491
|
*/
|
|
6439
|
-
SkipFinalClusterSnapshot?: boolean;
|
|
6492
|
+
SkipFinalClusterSnapshot?: boolean | undefined;
|
|
6440
6493
|
/**
|
|
6441
6494
|
* <p>The identifier of the final snapshot that is to be created immediately before
|
|
6442
6495
|
* deleting the cluster. If this parameter is provided,
|
|
@@ -6455,7 +6508,7 @@ export interface DeleteClusterMessage {
|
|
|
6455
6508
|
* </ul>
|
|
6456
6509
|
* @public
|
|
6457
6510
|
*/
|
|
6458
|
-
FinalClusterSnapshotIdentifier?: string;
|
|
6511
|
+
FinalClusterSnapshotIdentifier?: string | undefined;
|
|
6459
6512
|
/**
|
|
6460
6513
|
* <p>The number of days that a manual snapshot is retained. If the value is -1, the manual
|
|
6461
6514
|
* snapshot is retained indefinitely.</p>
|
|
@@ -6463,7 +6516,7 @@ export interface DeleteClusterMessage {
|
|
|
6463
6516
|
* <p>The default value is -1.</p>
|
|
6464
6517
|
* @public
|
|
6465
6518
|
*/
|
|
6466
|
-
FinalClusterSnapshotRetentionPeriod?: number;
|
|
6519
|
+
FinalClusterSnapshotRetentionPeriod?: number | undefined;
|
|
6467
6520
|
}
|
|
6468
6521
|
/**
|
|
6469
6522
|
* @public
|
|
@@ -6473,7 +6526,7 @@ export interface DeleteClusterResult {
|
|
|
6473
6526
|
* <p>Describes a cluster.</p>
|
|
6474
6527
|
* @public
|
|
6475
6528
|
*/
|
|
6476
|
-
Cluster?: Cluster;
|
|
6529
|
+
Cluster?: Cluster | undefined;
|
|
6477
6530
|
}
|
|
6478
6531
|
/**
|
|
6479
6532
|
* <p></p>
|
|
@@ -6528,7 +6581,7 @@ export interface DeleteClusterSnapshotResult {
|
|
|
6528
6581
|
* <p>Describes a snapshot.</p>
|
|
6529
6582
|
* @public
|
|
6530
6583
|
*/
|
|
6531
|
-
Snapshot?: Snapshot;
|
|
6584
|
+
Snapshot?: Snapshot | undefined;
|
|
6532
6585
|
}
|
|
6533
6586
|
/**
|
|
6534
6587
|
* <p></p>
|
|
@@ -6869,7 +6922,7 @@ export interface DescribeAccountAttributesMessage {
|
|
|
6869
6922
|
* <p>A list of attribute names.</p>
|
|
6870
6923
|
* @public
|
|
6871
6924
|
*/
|
|
6872
|
-
AttributeNames?: string[];
|
|
6925
|
+
AttributeNames?: string[] | undefined;
|
|
6873
6926
|
}
|
|
6874
6927
|
/**
|
|
6875
6928
|
* @public
|
|
@@ -6879,7 +6932,7 @@ export interface DescribeAuthenticationProfilesMessage {
|
|
|
6879
6932
|
* <p>The name of the authentication profile to describe. If not specified then all authentication profiles owned by the account are listed.</p>
|
|
6880
6933
|
* @public
|
|
6881
6934
|
*/
|
|
6882
|
-
AuthenticationProfileName?: string;
|
|
6935
|
+
AuthenticationProfileName?: string | undefined;
|
|
6883
6936
|
}
|
|
6884
6937
|
/**
|
|
6885
6938
|
* @public
|
|
@@ -6889,7 +6942,7 @@ export interface DescribeAuthenticationProfilesResult {
|
|
|
6889
6942
|
* <p>The list of authentication profiles.</p>
|
|
6890
6943
|
* @public
|
|
6891
6944
|
*/
|
|
6892
|
-
AuthenticationProfiles?: AuthenticationProfile[];
|
|
6945
|
+
AuthenticationProfiles?: AuthenticationProfile[] | undefined;
|
|
6893
6946
|
}
|
|
6894
6947
|
/**
|
|
6895
6948
|
* @public
|
|
@@ -6901,7 +6954,7 @@ export interface DescribeClusterDbRevisionsMessage {
|
|
|
6901
6954
|
* returned by default.</p>
|
|
6902
6955
|
* @public
|
|
6903
6956
|
*/
|
|
6904
|
-
ClusterIdentifier?: string;
|
|
6957
|
+
ClusterIdentifier?: string | undefined;
|
|
6905
6958
|
/**
|
|
6906
6959
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
6907
6960
|
* remaining response records exceeds the specified MaxRecords value, a value is returned
|
|
@@ -6912,7 +6965,7 @@ export interface DescribeClusterDbRevisionsMessage {
|
|
|
6912
6965
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
6913
6966
|
* @public
|
|
6914
6967
|
*/
|
|
6915
|
-
MaxRecords?: number;
|
|
6968
|
+
MaxRecords?: number | undefined;
|
|
6916
6969
|
/**
|
|
6917
6970
|
* <p>An optional parameter that specifies the starting point for returning a set of
|
|
6918
6971
|
* response records. When the results of a <code>DescribeClusterDbRevisions</code> request
|
|
@@ -6924,7 +6977,7 @@ export interface DescribeClusterDbRevisionsMessage {
|
|
|
6924
6977
|
* the <code>marker</code> parameter, but not both.</p>
|
|
6925
6978
|
* @public
|
|
6926
6979
|
*/
|
|
6927
|
-
Marker?: string;
|
|
6980
|
+
Marker?: string | undefined;
|
|
6928
6981
|
}
|
|
6929
6982
|
/**
|
|
6930
6983
|
* <p></p>
|
|
@@ -6937,7 +6990,7 @@ export interface DescribeClusterParameterGroupsMessage {
|
|
|
6937
6990
|
* returned.</p>
|
|
6938
6991
|
* @public
|
|
6939
6992
|
*/
|
|
6940
|
-
ParameterGroupName?: string;
|
|
6993
|
+
ParameterGroupName?: string | undefined;
|
|
6941
6994
|
/**
|
|
6942
6995
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
6943
6996
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -6948,7 +7001,7 @@ export interface DescribeClusterParameterGroupsMessage {
|
|
|
6948
7001
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
6949
7002
|
* @public
|
|
6950
7003
|
*/
|
|
6951
|
-
MaxRecords?: number;
|
|
7004
|
+
MaxRecords?: number | undefined;
|
|
6952
7005
|
/**
|
|
6953
7006
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
6954
7007
|
* records. When the results of a <a>DescribeClusterParameterGroups</a> request
|
|
@@ -6958,7 +7011,7 @@ export interface DescribeClusterParameterGroupsMessage {
|
|
|
6958
7011
|
* retrying the request. </p>
|
|
6959
7012
|
* @public
|
|
6960
7013
|
*/
|
|
6961
|
-
Marker?: string;
|
|
7014
|
+
Marker?: string | undefined;
|
|
6962
7015
|
/**
|
|
6963
7016
|
* <p>A tag key or keys for which you want to return all matching cluster parameter
|
|
6964
7017
|
* groups that are associated with the specified key or keys. For example, suppose that you
|
|
@@ -6968,7 +7021,7 @@ export interface DescribeClusterParameterGroupsMessage {
|
|
|
6968
7021
|
* tag keys associated with them.</p>
|
|
6969
7022
|
* @public
|
|
6970
7023
|
*/
|
|
6971
|
-
TagKeys?: string[];
|
|
7024
|
+
TagKeys?: string[] | undefined;
|
|
6972
7025
|
/**
|
|
6973
7026
|
* <p>A tag value or values for which you want to return all matching cluster parameter
|
|
6974
7027
|
* groups that are associated with the specified tag value or values. For example, suppose
|
|
@@ -6978,103 +7031,7 @@ export interface DescribeClusterParameterGroupsMessage {
|
|
|
6978
7031
|
* values associated with them.</p>
|
|
6979
7032
|
* @public
|
|
6980
7033
|
*/
|
|
6981
|
-
TagValues?: string[];
|
|
6982
|
-
}
|
|
6983
|
-
/**
|
|
6984
|
-
* <p></p>
|
|
6985
|
-
* @public
|
|
6986
|
-
*/
|
|
6987
|
-
export interface DescribeClusterParametersMessage {
|
|
6988
|
-
/**
|
|
6989
|
-
* <p>The name of a cluster parameter group for which to return details.</p>
|
|
6990
|
-
* @public
|
|
6991
|
-
*/
|
|
6992
|
-
ParameterGroupName: string | undefined;
|
|
6993
|
-
/**
|
|
6994
|
-
* <p>The parameter types to return. Specify <code>user</code> to show parameters that
|
|
6995
|
-
* are different form the default. Similarly, specify <code>engine-default</code> to show
|
|
6996
|
-
* parameters that are the same as the default parameter group. </p>
|
|
6997
|
-
* <p>Default: All parameter types returned.</p>
|
|
6998
|
-
* <p>Valid Values: <code>user</code> | <code>engine-default</code>
|
|
6999
|
-
* </p>
|
|
7000
|
-
* @public
|
|
7001
|
-
*/
|
|
7002
|
-
Source?: string;
|
|
7003
|
-
/**
|
|
7004
|
-
* <p>The maximum number of response records to return in each call. If the number of
|
|
7005
|
-
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
7006
|
-
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
7007
|
-
* set of records by retrying the command with the returned marker value. </p>
|
|
7008
|
-
* <p>Default: <code>100</code>
|
|
7009
|
-
* </p>
|
|
7010
|
-
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
7011
|
-
* @public
|
|
7012
|
-
*/
|
|
7013
|
-
MaxRecords?: number;
|
|
7014
|
-
/**
|
|
7015
|
-
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
7016
|
-
* records. When the results of a <a>DescribeClusterParameters</a> request
|
|
7017
|
-
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
7018
|
-
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
7019
|
-
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
7020
|
-
* retrying the request. </p>
|
|
7021
|
-
* @public
|
|
7022
|
-
*/
|
|
7023
|
-
Marker?: string;
|
|
7024
|
-
}
|
|
7025
|
-
/**
|
|
7026
|
-
* <p></p>
|
|
7027
|
-
* @public
|
|
7028
|
-
*/
|
|
7029
|
-
export interface DescribeClustersMessage {
|
|
7030
|
-
/**
|
|
7031
|
-
* <p>The unique identifier of a cluster whose properties you are requesting. This
|
|
7032
|
-
* parameter is case sensitive.</p>
|
|
7033
|
-
* <p>The default is that all clusters defined for an account are returned.</p>
|
|
7034
|
-
* @public
|
|
7035
|
-
*/
|
|
7036
|
-
ClusterIdentifier?: string;
|
|
7037
|
-
/**
|
|
7038
|
-
* <p>The maximum number of response records to return in each call. If the number of
|
|
7039
|
-
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
7040
|
-
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
7041
|
-
* set of records by retrying the command with the returned marker value. </p>
|
|
7042
|
-
* <p>Default: <code>100</code>
|
|
7043
|
-
* </p>
|
|
7044
|
-
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
7045
|
-
* @public
|
|
7046
|
-
*/
|
|
7047
|
-
MaxRecords?: number;
|
|
7048
|
-
/**
|
|
7049
|
-
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
7050
|
-
* records. When the results of a <a>DescribeClusters</a> request exceed the
|
|
7051
|
-
* value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
7052
|
-
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
7053
|
-
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
7054
|
-
* retrying the request. </p>
|
|
7055
|
-
* <p>Constraints: You can specify either the <b>ClusterIdentifier</b> parameter or the <b>Marker</b> parameter, but not both. </p>
|
|
7056
|
-
* @public
|
|
7057
|
-
*/
|
|
7058
|
-
Marker?: string;
|
|
7059
|
-
/**
|
|
7060
|
-
* <p>A tag key or keys for which you want to return all matching clusters that are
|
|
7061
|
-
* associated with the specified key or keys. For example, suppose that you have clusters
|
|
7062
|
-
* that are tagged with keys called <code>owner</code> and <code>environment</code>. If you
|
|
7063
|
-
* specify both of these tag keys in the request, Amazon Redshift returns a response with the
|
|
7064
|
-
* clusters that have either or both of these tag keys associated with them.</p>
|
|
7065
|
-
* @public
|
|
7066
|
-
*/
|
|
7067
|
-
TagKeys?: string[];
|
|
7068
|
-
/**
|
|
7069
|
-
* <p>A tag value or values for which you want to return all matching clusters that are
|
|
7070
|
-
* associated with the specified tag value or values. For example, suppose that you have
|
|
7071
|
-
* clusters that are tagged with values called <code>admin</code> and <code>test</code>. If
|
|
7072
|
-
* you specify both of these tag values in the request, Amazon Redshift returns a response with
|
|
7073
|
-
* the clusters that have either or both of these tag values associated with
|
|
7074
|
-
* them.</p>
|
|
7075
|
-
* @public
|
|
7076
|
-
*/
|
|
7077
|
-
TagValues?: string[];
|
|
7034
|
+
TagValues?: string[] | undefined;
|
|
7078
7035
|
}
|
|
7079
7036
|
/**
|
|
7080
7037
|
* @internal
|