Skip to content

Commit 45b42fc

Browse files
author
awstools
committed
feat(client-redshift): added support to create a dual stack cluster
1 parent ce8979f commit 45b42fc

28 files changed

+269
-17
lines changed

clients/client-redshift/src/commands/CreateClusterCommand.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
103103
* LoadSampleData: "STRING_VALUE",
104104
* ManageMasterPassword: true || false,
105105
* MasterPasswordSecretKmsKeyId: "STRING_VALUE",
106+
* IpAddressType: "STRING_VALUE",
106107
* };
107108
* const command = new CreateClusterCommand(input);
108109
* const response = await client.send(command);
@@ -128,6 +129,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
128129
* // SubnetId: "STRING_VALUE",
129130
* // PrivateIpAddress: "STRING_VALUE",
130131
* // AvailabilityZone: "STRING_VALUE",
132+
* // Ipv6Address: "STRING_VALUE",
131133
* // },
132134
* // ],
133135
* // },
@@ -282,6 +284,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
282284
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
283285
* // MasterPasswordSecretArn: "STRING_VALUE",
284286
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
287+
* // IpAddressType: "STRING_VALUE",
285288
* // },
286289
* // };
287290
*
@@ -352,6 +355,10 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
352355
* @throws {@link InvalidVPCNetworkStateFault} (client fault)
353356
* <p>The cluster subnet group does not cover all Availability Zones.</p>
354357
*
358+
* @throws {@link Ipv6CidrBlockNotFoundFault} (client fault)
359+
* <p>There are no subnets in your VPC with associated IPv6 CIDR blocks. To use dual-stack mode,
360+
* associate an IPv6 CIDR block with each subnet in your VPC.</p>
361+
*
355362
* @throws {@link LimitExceededFault} (client fault)
356363
* <p>The encryption key has exceeded its grant limit in Amazon Web Services KMS.</p>
357364
*

clients/client-redshift/src/commands/CreateClusterSubnetGroupCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ export interface CreateClusterSubnetGroupCommandOutput extends CreateClusterSubn
9191
* // Value: "STRING_VALUE",
9292
* // },
9393
* // ],
94+
* // SupportedClusterIpAddressTypes: [ // ValueStringList
95+
* // "STRING_VALUE",
96+
* // ],
9497
* // },
9598
* // };
9699
*

clients/client-redshift/src/commands/CreateEndpointAccessCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export interface CreateEndpointAccessCommandOutput extends EndpointAccess, __Met
7979
* // SubnetId: "STRING_VALUE",
8080
* // PrivateIpAddress: "STRING_VALUE",
8181
* // AvailabilityZone: "STRING_VALUE",
82+
* // Ipv6Address: "STRING_VALUE",
8283
* // },
8384
* // ],
8485
* // },

clients/client-redshift/src/commands/DeleteClusterCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResult, __Metad
8989
* // SubnetId: "STRING_VALUE",
9090
* // PrivateIpAddress: "STRING_VALUE",
9191
* // AvailabilityZone: "STRING_VALUE",
92+
* // Ipv6Address: "STRING_VALUE",
9293
* // },
9394
* // ],
9495
* // },
@@ -243,6 +244,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResult, __Metad
243244
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
244245
* // MasterPasswordSecretArn: "STRING_VALUE",
245246
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
247+
* // IpAddressType: "STRING_VALUE",
246248
* // },
247249
* // };
248250
*

clients/client-redshift/src/commands/DeleteEndpointAccessCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ export interface DeleteEndpointAccessCommandOutput extends EndpointAccess, __Met
7373
* // SubnetId: "STRING_VALUE",
7474
* // PrivateIpAddress: "STRING_VALUE",
7575
* // AvailabilityZone: "STRING_VALUE",
76+
* // Ipv6Address: "STRING_VALUE",
7677
* // },
7778
* // ],
7879
* // },

clients/client-redshift/src/commands/DescribeClusterSubnetGroupsCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ export interface DescribeClusterSubnetGroupsCommandOutput extends ClusterSubnetG
9595
* // Value: "STRING_VALUE",
9696
* // },
9797
* // ],
98+
* // SupportedClusterIpAddressTypes: [ // ValueStringList
99+
* // "STRING_VALUE",
100+
* // ],
98101
* // },
99102
* // ],
100103
* // };

clients/client-redshift/src/commands/DescribeClustersCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ export interface DescribeClustersCommandOutput extends ClustersMessage, __Metada
9393
* // SubnetId: "STRING_VALUE",
9494
* // PrivateIpAddress: "STRING_VALUE",
9595
* // AvailabilityZone: "STRING_VALUE",
96+
* // Ipv6Address: "STRING_VALUE",
9697
* // },
9798
* // ],
9899
* // },
@@ -247,6 +248,7 @@ export interface DescribeClustersCommandOutput extends ClustersMessage, __Metada
247248
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
248249
* // MasterPasswordSecretArn: "STRING_VALUE",
249250
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
251+
* // IpAddressType: "STRING_VALUE",
250252
* // },
251253
* // ],
252254
* // };

clients/client-redshift/src/commands/DescribeEndpointAccessCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export interface DescribeEndpointAccessCommandOutput extends EndpointAccessList,
8080
* // SubnetId: "STRING_VALUE",
8181
* // PrivateIpAddress: "STRING_VALUE",
8282
* // AvailabilityZone: "STRING_VALUE",
83+
* // Ipv6Address: "STRING_VALUE",
8384
* // },
8485
* // ],
8586
* // },

clients/client-redshift/src/commands/DescribeEventCategoriesCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ import {
1414
SMITHY_CONTEXT_KEY,
1515
} from "@smithy/types";
1616

17-
import { DescribeEventCategoriesMessage } from "../models/models_0";
18-
import { EventCategoriesMessage } from "../models/models_1";
17+
import { DescribeEventCategoriesMessage, EventCategoriesMessage } from "../models/models_1";
1918
import { de_DescribeEventCategoriesCommand, se_DescribeEventCategoriesCommand } from "../protocols/Aws_query";
2019
import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
2120

clients/client-redshift/src/commands/DisableSnapshotCopyCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export interface DisableSnapshotCopyCommandOutput extends DisableSnapshotCopyRes
7979
* // SubnetId: "STRING_VALUE",
8080
* // PrivateIpAddress: "STRING_VALUE",
8181
* // AvailabilityZone: "STRING_VALUE",
82+
* // Ipv6Address: "STRING_VALUE",
8283
* // },
8384
* // ],
8485
* // },
@@ -233,6 +234,7 @@ export interface DisableSnapshotCopyCommandOutput extends DisableSnapshotCopyRes
233234
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
234235
* // MasterPasswordSecretArn: "STRING_VALUE",
235236
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
237+
* // IpAddressType: "STRING_VALUE",
236238
* // },
237239
* // };
238240
*

clients/client-redshift/src/commands/EnableSnapshotCopyCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export interface EnableSnapshotCopyCommandOutput extends EnableSnapshotCopyResul
8080
* // SubnetId: "STRING_VALUE",
8181
* // PrivateIpAddress: "STRING_VALUE",
8282
* // AvailabilityZone: "STRING_VALUE",
83+
* // Ipv6Address: "STRING_VALUE",
8384
* // },
8485
* // ],
8586
* // },
@@ -234,6 +235,7 @@ export interface EnableSnapshotCopyCommandOutput extends EnableSnapshotCopyResul
234235
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
235236
* // MasterPasswordSecretArn: "STRING_VALUE",
236237
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
238+
* // IpAddressType: "STRING_VALUE",
237239
* // },
238240
* // };
239241
*

clients/client-redshift/src/commands/ModifyClusterCommand.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ export interface ModifyClusterCommandOutput extends ModifyClusterResult, __Metad
8989
* Port: Number("int"),
9090
* ManageMasterPassword: true || false,
9191
* MasterPasswordSecretKmsKeyId: "STRING_VALUE",
92+
* IpAddressType: "STRING_VALUE",
9293
* };
9394
* const command = new ModifyClusterCommand(input);
9495
* const response = await client.send(command);
@@ -114,6 +115,7 @@ export interface ModifyClusterCommandOutput extends ModifyClusterResult, __Metad
114115
* // SubnetId: "STRING_VALUE",
115116
* // PrivateIpAddress: "STRING_VALUE",
116117
* // AvailabilityZone: "STRING_VALUE",
118+
* // Ipv6Address: "STRING_VALUE",
117119
* // },
118120
* // ],
119121
* // },
@@ -268,6 +270,7 @@ export interface ModifyClusterCommandOutput extends ModifyClusterResult, __Metad
268270
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
269271
* // MasterPasswordSecretArn: "STRING_VALUE",
270272
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
273+
* // IpAddressType: "STRING_VALUE",
271274
* // },
272275
* // };
273276
*
@@ -327,6 +330,10 @@ export interface ModifyClusterCommandOutput extends ModifyClusterResult, __Metad
327330
* <p>The retention period specified is either in the past or is not a valid value.</p>
328331
* <p>The value must be either -1 or an integer between 1 and 3,653.</p>
329332
*
333+
* @throws {@link Ipv6CidrBlockNotFoundFault} (client fault)
334+
* <p>There are no subnets in your VPC with associated IPv6 CIDR blocks. To use dual-stack mode,
335+
* associate an IPv6 CIDR block with each subnet in your VPC.</p>
336+
*
330337
* @throws {@link LimitExceededFault} (client fault)
331338
* <p>The encryption key has exceeded its grant limit in Amazon Web Services KMS.</p>
332339
*

clients/client-redshift/src/commands/ModifyClusterDbRevisionCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ export interface ModifyClusterDbRevisionCommandOutput extends ModifyClusterDbRev
7777
* // SubnetId: "STRING_VALUE",
7878
* // PrivateIpAddress: "STRING_VALUE",
7979
* // AvailabilityZone: "STRING_VALUE",
80+
* // Ipv6Address: "STRING_VALUE",
8081
* // },
8182
* // ],
8283
* // },
@@ -231,6 +232,7 @@ export interface ModifyClusterDbRevisionCommandOutput extends ModifyClusterDbRev
231232
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
232233
* // MasterPasswordSecretArn: "STRING_VALUE",
233234
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
235+
* // IpAddressType: "STRING_VALUE",
234236
* // },
235237
* // };
236238
*

clients/client-redshift/src/commands/ModifyClusterIamRolesCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ export interface ModifyClusterIamRolesCommandOutput extends ModifyClusterIamRole
8686
* // SubnetId: "STRING_VALUE",
8787
* // PrivateIpAddress: "STRING_VALUE",
8888
* // AvailabilityZone: "STRING_VALUE",
89+
* // Ipv6Address: "STRING_VALUE",
8990
* // },
9091
* // ],
9192
* // },
@@ -240,6 +241,7 @@ export interface ModifyClusterIamRolesCommandOutput extends ModifyClusterIamRole
240241
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
241242
* // MasterPasswordSecretArn: "STRING_VALUE",
242243
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
244+
* // IpAddressType: "STRING_VALUE",
243245
* // },
244246
* // };
245247
*

clients/client-redshift/src/commands/ModifyClusterMaintenanceCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export interface ModifyClusterMaintenanceCommandOutput extends ModifyClusterMain
8080
* // SubnetId: "STRING_VALUE",
8181
* // PrivateIpAddress: "STRING_VALUE",
8282
* // AvailabilityZone: "STRING_VALUE",
83+
* // Ipv6Address: "STRING_VALUE",
8384
* // },
8485
* // ],
8586
* // },
@@ -234,6 +235,7 @@ export interface ModifyClusterMaintenanceCommandOutput extends ModifyClusterMain
234235
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
235236
* // MasterPasswordSecretArn: "STRING_VALUE",
236237
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
238+
* // IpAddressType: "STRING_VALUE",
237239
* // },
238240
* // };
239241
*

clients/client-redshift/src/commands/ModifyClusterSubnetGroupCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ export interface ModifyClusterSubnetGroupCommandOutput extends ModifyClusterSubn
8080
* // Value: "STRING_VALUE",
8181
* // },
8282
* // ],
83+
* // SupportedClusterIpAddressTypes: [ // ValueStringList
84+
* // "STRING_VALUE",
85+
* // ],
8386
* // },
8487
* // };
8588
*

clients/client-redshift/src/commands/ModifyEndpointAccessCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ export interface ModifyEndpointAccessCommandOutput extends EndpointAccess, __Met
7777
* // SubnetId: "STRING_VALUE",
7878
* // PrivateIpAddress: "STRING_VALUE",
7979
* // AvailabilityZone: "STRING_VALUE",
80+
* // Ipv6Address: "STRING_VALUE",
8081
* // },
8182
* // ],
8283
* // },

clients/client-redshift/src/commands/ModifySnapshotCopyRetentionPeriodCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ export interface ModifySnapshotCopyRetentionPeriodCommandOutput
8888
* // SubnetId: "STRING_VALUE",
8989
* // PrivateIpAddress: "STRING_VALUE",
9090
* // AvailabilityZone: "STRING_VALUE",
91+
* // Ipv6Address: "STRING_VALUE",
9192
* // },
9293
* // ],
9394
* // },
@@ -242,6 +243,7 @@ export interface ModifySnapshotCopyRetentionPeriodCommandOutput
242243
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
243244
* // MasterPasswordSecretArn: "STRING_VALUE",
244245
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
246+
* // IpAddressType: "STRING_VALUE",
245247
* // },
246248
* // };
247249
*

clients/client-redshift/src/commands/PauseClusterCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ export interface PauseClusterCommandOutput extends PauseClusterResult, __Metadat
7272
* // SubnetId: "STRING_VALUE",
7373
* // PrivateIpAddress: "STRING_VALUE",
7474
* // AvailabilityZone: "STRING_VALUE",
75+
* // Ipv6Address: "STRING_VALUE",
7576
* // },
7677
* // ],
7778
* // },
@@ -226,6 +227,7 @@ export interface PauseClusterCommandOutput extends PauseClusterResult, __Metadat
226227
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
227228
* // MasterPasswordSecretArn: "STRING_VALUE",
228229
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
230+
* // IpAddressType: "STRING_VALUE",
229231
* // },
230232
* // };
231233
*

clients/client-redshift/src/commands/RebootClusterCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ export interface RebootClusterCommandOutput extends RebootClusterResult, __Metad
7878
* // SubnetId: "STRING_VALUE",
7979
* // PrivateIpAddress: "STRING_VALUE",
8080
* // AvailabilityZone: "STRING_VALUE",
81+
* // Ipv6Address: "STRING_VALUE",
8182
* // },
8283
* // ],
8384
* // },
@@ -232,6 +233,7 @@ export interface RebootClusterCommandOutput extends RebootClusterResult, __Metad
232233
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
233234
* // MasterPasswordSecretArn: "STRING_VALUE",
234235
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
236+
* // IpAddressType: "STRING_VALUE",
235237
* // },
236238
* // };
237239
*

clients/client-redshift/src/commands/ResizeClusterCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ export interface ResizeClusterCommandOutput extends ResizeClusterResult, __Metad
120120
* // SubnetId: "STRING_VALUE",
121121
* // PrivateIpAddress: "STRING_VALUE",
122122
* // AvailabilityZone: "STRING_VALUE",
123+
* // Ipv6Address: "STRING_VALUE",
123124
* // },
124125
* // ],
125126
* // },
@@ -274,6 +275,7 @@ export interface ResizeClusterCommandOutput extends ResizeClusterResult, __Metad
274275
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
275276
* // MasterPasswordSecretArn: "STRING_VALUE",
276277
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
278+
* // IpAddressType: "STRING_VALUE",
277279
* // },
278280
* // };
279281
*

clients/client-redshift/src/commands/RestoreFromClusterSnapshotCommand.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ export interface RestoreFromClusterSnapshotCommandOutput extends RestoreFromClus
101101
* Encrypted: true || false,
102102
* ManageMasterPassword: true || false,
103103
* MasterPasswordSecretKmsKeyId: "STRING_VALUE",
104+
* IpAddressType: "STRING_VALUE",
104105
* };
105106
* const command = new RestoreFromClusterSnapshotCommand(input);
106107
* const response = await client.send(command);
@@ -126,6 +127,7 @@ export interface RestoreFromClusterSnapshotCommandOutput extends RestoreFromClus
126127
* // SubnetId: "STRING_VALUE",
127128
* // PrivateIpAddress: "STRING_VALUE",
128129
* // AvailabilityZone: "STRING_VALUE",
130+
* // Ipv6Address: "STRING_VALUE",
129131
* // },
130132
* // ],
131133
* // },
@@ -280,6 +282,7 @@ export interface RestoreFromClusterSnapshotCommandOutput extends RestoreFromClus
280282
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
281283
* // MasterPasswordSecretArn: "STRING_VALUE",
282284
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
285+
* // IpAddressType: "STRING_VALUE",
283286
* // },
284287
* // };
285288
*
@@ -367,6 +370,10 @@ export interface RestoreFromClusterSnapshotCommandOutput extends RestoreFromClus
367370
* @throws {@link InvalidVPCNetworkStateFault} (client fault)
368371
* <p>The cluster subnet group does not cover all Availability Zones.</p>
369372
*
373+
* @throws {@link Ipv6CidrBlockNotFoundFault} (client fault)
374+
* <p>There are no subnets in your VPC with associated IPv6 CIDR blocks. To use dual-stack mode,
375+
* associate an IPv6 CIDR block with each subnet in your VPC.</p>
376+
*
370377
* @throws {@link LimitExceededFault} (client fault)
371378
* <p>The encryption key has exceeded its grant limit in Amazon Web Services KMS.</p>
372379
*

clients/client-redshift/src/commands/ResumeClusterCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ export interface ResumeClusterCommandOutput extends ResumeClusterResult, __Metad
7272
* // SubnetId: "STRING_VALUE",
7373
* // PrivateIpAddress: "STRING_VALUE",
7474
* // AvailabilityZone: "STRING_VALUE",
75+
* // Ipv6Address: "STRING_VALUE",
7576
* // },
7677
* // ],
7778
* // },
@@ -226,6 +227,7 @@ export interface ResumeClusterCommandOutput extends ResumeClusterResult, __Metad
226227
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
227228
* // MasterPasswordSecretArn: "STRING_VALUE",
228229
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
230+
* // IpAddressType: "STRING_VALUE",
229231
* // },
230232
* // };
231233
*

clients/client-redshift/src/commands/RotateEncryptionKeyCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ export interface RotateEncryptionKeyCommandOutput extends RotateEncryptionKeyRes
7575
* // SubnetId: "STRING_VALUE",
7676
* // PrivateIpAddress: "STRING_VALUE",
7777
* // AvailabilityZone: "STRING_VALUE",
78+
* // Ipv6Address: "STRING_VALUE",
7879
* // },
7980
* // ],
8081
* // },
@@ -229,6 +230,7 @@ export interface RotateEncryptionKeyCommandOutput extends RotateEncryptionKeyRes
229230
* // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"),
230231
* // MasterPasswordSecretArn: "STRING_VALUE",
231232
* // MasterPasswordSecretKmsKeyId: "STRING_VALUE",
233+
* // IpAddressType: "STRING_VALUE",
232234
* // },
233235
* // };
234236
*

0 commit comments

Comments
 (0)