@@ -34,7 +34,10 @@ export interface RecurringCharge {
34
34
RecurringChargeFrequency ?: string ;
35
35
}
36
36
37
- export type ReservedNodeOfferingType = "Regular" | "Upgradable" ;
37
+ export enum ReservedNodeOfferingType {
38
+ Regular = "Regular" ,
39
+ Upgradable = "Upgradable" ,
40
+ }
38
41
39
42
/**
40
43
* <p>Describes a reserved node. You can call the <a>DescribeReservedNodeOfferings</a> API to obtain the available reserved node
@@ -614,7 +617,11 @@ export class InvalidNamespaceFault extends __BaseException {
614
617
}
615
618
}
616
619
617
- export type ScheduleState = "ACTIVE" | "FAILED" | "MODIFYING" ;
620
+ export enum ScheduleState {
621
+ ACTIVE = "ACTIVE" ,
622
+ FAILED = "FAILED" ,
623
+ MODIFYING = "MODIFYING" ,
624
+ }
618
625
619
626
/**
620
627
* <p></p>
@@ -2948,7 +2955,10 @@ export class ClusterParameterGroupAlreadyExistsFault extends __BaseException {
2948
2955
}
2949
2956
}
2950
2957
2951
- export type ParameterApplyType = "dynamic" | "static" ;
2958
+ export enum ParameterApplyType {
2959
+ dynamic = "dynamic" ,
2960
+ static = "static" ,
2961
+ }
2952
2962
2953
2963
/**
2954
2964
* <p>Describes a parameter in a cluster parameter group.</p>
@@ -3886,7 +3896,8 @@ export interface CreateClusterMessage {
3886
3896
/**
3887
3897
* <p>The Elastic IP (EIP) address for the cluster.</p>
3888
3898
* <p>Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible
3889
- * through an Internet gateway. For more information about provisioning clusters in
3899
+ * through an Internet gateway. Don't specify the Elastic IP address for a publicly accessible
3900
+ * cluster with availability zone relocation turned on. For more information about provisioning clusters in
3890
3901
* EC2-VPC, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms">Supported
3891
3902
* Platforms to Launch Your Cluster</a> in the Amazon Redshift Cluster Management Guide.</p>
3892
3903
*/
@@ -7403,12 +7414,13 @@ export interface EventCategoriesMessage {
7403
7414
EventCategoriesMapList ?: EventCategoriesMap [ ] ;
7404
7415
}
7405
7416
7406
- export type SourceType =
7407
- | "cluster"
7408
- | "cluster-parameter-group"
7409
- | "cluster-security-group"
7410
- | "cluster-snapshot"
7411
- | "scheduled-action" ;
7417
+ export enum SourceType {
7418
+ cluster = "cluster" ,
7419
+ cluster_parameter_group = "cluster-parameter-group" ,
7420
+ cluster_security_group = "cluster-security-group" ,
7421
+ cluster_snapshot = "cluster-snapshot" ,
7422
+ scheduled_action = "scheduled-action" ,
7423
+ }
7412
7424
7413
7425
/**
7414
7426
* <p></p>
0 commit comments