aws-sdk 2.1400.0 → 2.1401.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/CHANGELOG.md +8 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +19 -0
- package/apis/ec2-2016-11-15.min.json +1389 -1370
- package/apis/redshift-2012-12-01.min.json +232 -125
- package/apis/redshift-2012-12-01.paginators.json +6 -0
- package/clients/appflow.d.ts +32 -0
- package/clients/configservice.d.ts +1 -1
- package/clients/ec2.d.ts +32 -20
- package/clients/redshift.d.ts +189 -11
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +1630 -1498
- package/dist/aws-sdk.min.js +74 -74
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/redshift.d.ts
CHANGED
@@ -148,6 +148,14 @@ declare class Redshift extends Service {
|
|
148
148
|
* Creates a new Amazon Redshift subnet group. You must provide a list of one or more subnets in your existing Amazon Virtual Private Cloud (Amazon VPC) when creating Amazon Redshift subnet group. For information about subnet groups, go to Amazon Redshift Cluster Subnet Groups in the Amazon Redshift Cluster Management Guide.
|
149
149
|
*/
|
150
150
|
createClusterSubnetGroup(callback?: (err: AWSError, data: Redshift.Types.CreateClusterSubnetGroupResult) => void): Request<Redshift.Types.CreateClusterSubnetGroupResult, AWSError>;
|
151
|
+
/**
|
152
|
+
* Used to create a custom domain name for a cluster. Properties include the custom domain name, the cluster the custom domain is associated with, and the certificate Amazon Resource Name (ARN).
|
153
|
+
*/
|
154
|
+
createCustomDomainAssociation(params: Redshift.Types.CreateCustomDomainAssociationMessage, callback?: (err: AWSError, data: Redshift.Types.CreateCustomDomainAssociationResult) => void): Request<Redshift.Types.CreateCustomDomainAssociationResult, AWSError>;
|
155
|
+
/**
|
156
|
+
* Used to create a custom domain name for a cluster. Properties include the custom domain name, the cluster the custom domain is associated with, and the certificate Amazon Resource Name (ARN).
|
157
|
+
*/
|
158
|
+
createCustomDomainAssociation(callback?: (err: AWSError, data: Redshift.Types.CreateCustomDomainAssociationResult) => void): Request<Redshift.Types.CreateCustomDomainAssociationResult, AWSError>;
|
151
159
|
/**
|
152
160
|
* Creates a Redshift-managed VPC endpoint.
|
153
161
|
*/
|
@@ -276,6 +284,14 @@ declare class Redshift extends Service {
|
|
276
284
|
* Deletes the specified cluster subnet group.
|
277
285
|
*/
|
278
286
|
deleteClusterSubnetGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
287
|
+
/**
|
288
|
+
* Contains information about deleting a custom domain association for a cluster.
|
289
|
+
*/
|
290
|
+
deleteCustomDomainAssociation(params: Redshift.Types.DeleteCustomDomainAssociationMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
291
|
+
/**
|
292
|
+
* Contains information about deleting a custom domain association for a cluster.
|
293
|
+
*/
|
294
|
+
deleteCustomDomainAssociation(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
279
295
|
/**
|
280
296
|
* Deletes a Redshift-managed VPC endpoint.
|
281
297
|
*/
|
@@ -444,6 +460,14 @@ declare class Redshift extends Service {
|
|
444
460
|
* Returns properties of provisioned clusters including general cluster properties, cluster database properties, maintenance and backup properties, and security and access properties. This operation supports pagination. For more information about managing clusters, go to Amazon Redshift Clusters in the Amazon Redshift Cluster Management Guide. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all clusters that match any combination of the specified keys and values. For example, if you have owner and environment for tag keys, and admin and test for tag values, all clusters that have any combination of those values are returned. If both tag keys and values are omitted from the request, clusters are returned regardless of whether they have tag keys or values associated with them.
|
445
461
|
*/
|
446
462
|
describeClusters(callback?: (err: AWSError, data: Redshift.Types.ClustersMessage) => void): Request<Redshift.Types.ClustersMessage, AWSError>;
|
463
|
+
/**
|
464
|
+
* Contains information for custom domain associations for a cluster.
|
465
|
+
*/
|
466
|
+
describeCustomDomainAssociations(params: Redshift.Types.DescribeCustomDomainAssociationsMessage, callback?: (err: AWSError, data: Redshift.Types.CustomDomainAssociationsMessage) => void): Request<Redshift.Types.CustomDomainAssociationsMessage, AWSError>;
|
467
|
+
/**
|
468
|
+
* Contains information for custom domain associations for a cluster.
|
469
|
+
*/
|
470
|
+
describeCustomDomainAssociations(callback?: (err: AWSError, data: Redshift.Types.CustomDomainAssociationsMessage) => void): Request<Redshift.Types.CustomDomainAssociationsMessage, AWSError>;
|
447
471
|
/**
|
448
472
|
* Shows the status of any inbound or outbound datashares available in the specified account.
|
449
473
|
*/
|
@@ -800,6 +824,14 @@ declare class Redshift extends Service {
|
|
800
824
|
* Modifies a cluster subnet group to include the specified list of VPC subnets. The operation replaces the existing list of subnets with the new list of subnets.
|
801
825
|
*/
|
802
826
|
modifyClusterSubnetGroup(callback?: (err: AWSError, data: Redshift.Types.ModifyClusterSubnetGroupResult) => void): Request<Redshift.Types.ModifyClusterSubnetGroupResult, AWSError>;
|
827
|
+
/**
|
828
|
+
* Contains information for changing a custom domain association.
|
829
|
+
*/
|
830
|
+
modifyCustomDomainAssociation(params: Redshift.Types.ModifyCustomDomainAssociationMessage, callback?: (err: AWSError, data: Redshift.Types.ModifyCustomDomainAssociationResult) => void): Request<Redshift.Types.ModifyCustomDomainAssociationResult, AWSError>;
|
831
|
+
/**
|
832
|
+
* Contains information for changing a custom domain association.
|
833
|
+
*/
|
834
|
+
modifyCustomDomainAssociation(callback?: (err: AWSError, data: Redshift.Types.ModifyCustomDomainAssociationResult) => void): Request<Redshift.Types.ModifyCustomDomainAssociationResult, AWSError>;
|
803
835
|
/**
|
804
836
|
* Modifies a Redshift-managed VPC endpoint.
|
805
837
|
*/
|
@@ -1069,6 +1101,21 @@ declare namespace Redshift {
|
|
1069
1101
|
ConsumerRegion?: String;
|
1070
1102
|
}
|
1071
1103
|
export type AssociatedClusterList = ClusterAssociatedToSchedule[];
|
1104
|
+
export interface Association {
|
1105
|
+
/**
|
1106
|
+
* The Amazon Resource Name (ARN) for the certificate associated with the custom domain.
|
1107
|
+
*/
|
1108
|
+
CustomDomainCertificateArn?: String;
|
1109
|
+
/**
|
1110
|
+
* The expiration date for the certificate.
|
1111
|
+
*/
|
1112
|
+
CustomDomainCertificateExpiryDate?: TStamp;
|
1113
|
+
/**
|
1114
|
+
* A list of all associated clusters and domain names tied to a specific certificate.
|
1115
|
+
*/
|
1116
|
+
CertificateAssociations?: CertificateAssociationList;
|
1117
|
+
}
|
1118
|
+
export type AssociationList = Association[];
|
1072
1119
|
export type AttributeList = AccountAttribute[];
|
1073
1120
|
export type AttributeNameList = String[];
|
1074
1121
|
export type AttributeValueList = AttributeValueTarget[];
|
@@ -1146,7 +1193,7 @@ declare namespace Redshift {
|
|
1146
1193
|
*/
|
1147
1194
|
SnapshotArn?: String;
|
1148
1195
|
/**
|
1149
|
-
* The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user
|
1196
|
+
* The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
|
1150
1197
|
*/
|
1151
1198
|
SnapshotClusterIdentifier?: String;
|
1152
1199
|
/**
|
@@ -1218,6 +1265,17 @@ declare namespace Redshift {
|
|
1218
1265
|
*/
|
1219
1266
|
ClusterIdentifier: String;
|
1220
1267
|
}
|
1268
|
+
export interface CertificateAssociation {
|
1269
|
+
/**
|
1270
|
+
* The custom domain name for the certificate association.
|
1271
|
+
*/
|
1272
|
+
CustomDomainName?: String;
|
1273
|
+
/**
|
1274
|
+
* The cluster identifier for the certificate association.
|
1275
|
+
*/
|
1276
|
+
ClusterIdentifier?: String;
|
1277
|
+
}
|
1278
|
+
export type CertificateAssociationList = CertificateAssociation[];
|
1221
1279
|
export interface Cluster {
|
1222
1280
|
/**
|
1223
1281
|
* The unique identifier of the cluster.
|
@@ -1427,6 +1485,18 @@ declare namespace Redshift {
|
|
1427
1485
|
* The status of the reserved-node exchange request. Statuses include in-progress and requested.
|
1428
1486
|
*/
|
1429
1487
|
ReservedNodeExchangeStatus?: ReservedNodeExchangeStatus;
|
1488
|
+
/**
|
1489
|
+
* The custom domain name associated with the cluster.
|
1490
|
+
*/
|
1491
|
+
CustomDomainName?: String;
|
1492
|
+
/**
|
1493
|
+
* The certificate Amazon Resource Name (ARN) for the custom domain name.
|
1494
|
+
*/
|
1495
|
+
CustomDomainCertificateArn?: String;
|
1496
|
+
/**
|
1497
|
+
* The expiration date for the certificate associated with the custom domain name.
|
1498
|
+
*/
|
1499
|
+
CustomDomainCertificateExpiryDate?: TStamp;
|
1430
1500
|
}
|
1431
1501
|
export interface ClusterAssociatedToSchedule {
|
1432
1502
|
/**
|
@@ -1745,7 +1815,7 @@ declare namespace Redshift {
|
|
1745
1815
|
*/
|
1746
1816
|
SourceSnapshotIdentifier: String;
|
1747
1817
|
/**
|
1748
|
-
* The identifier of the cluster the source snapshot was created from. This parameter is required if your IAM user
|
1818
|
+
* The identifier of the cluster the source snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name. Constraints: Must be the identifier for a valid cluster.
|
1749
1819
|
*/
|
1750
1820
|
SourceSnapshotClusterIdentifier?: String;
|
1751
1821
|
/**
|
@@ -1798,11 +1868,11 @@ declare namespace Redshift {
|
|
1798
1868
|
*/
|
1799
1869
|
NodeType: String;
|
1800
1870
|
/**
|
1801
|
-
* The user name associated with the admin user for the cluster that is being created. Constraints: Must be 1 - 128 alphanumeric characters or hyphens. The user name can't be PUBLIC. Must contain only lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen. The first character must be a letter. Must not contain a colon (:) or a slash (/). Cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.
|
1871
|
+
* The user name associated with the admin user account for the cluster that is being created. Constraints: Must be 1 - 128 alphanumeric characters or hyphens. The user name can't be PUBLIC. Must contain only lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen. The first character must be a letter. Must not contain a colon (:) or a slash (/). Cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.
|
1802
1872
|
*/
|
1803
1873
|
MasterUsername: String;
|
1804
1874
|
/**
|
1805
|
-
* The password associated with the admin user for the cluster that is being created. Constraints: Must be between 8 and 64 characters in length. Must contain at least one uppercase letter. Must contain at least one lowercase letter. Must contain one number. Can be any printable ASCII character (ASCII code 33-126) except ' (single quote), " (double quote), \, /, or @.
|
1875
|
+
* The password associated with the admin user account for the cluster that is being created. Constraints: Must be between 8 and 64 characters in length. Must contain at least one uppercase letter. Must contain at least one lowercase letter. Must contain one number. Can be any printable ASCII character (ASCII code 33-126) except ' (single quote), " (double quote), \, /, or @.
|
1806
1876
|
*/
|
1807
1877
|
MasterUserPassword: String;
|
1808
1878
|
/**
|
@@ -2001,6 +2071,38 @@ declare namespace Redshift {
|
|
2001
2071
|
export interface CreateClusterSubnetGroupResult {
|
2002
2072
|
ClusterSubnetGroup?: ClusterSubnetGroup;
|
2003
2073
|
}
|
2074
|
+
export interface CreateCustomDomainAssociationMessage {
|
2075
|
+
/**
|
2076
|
+
* The custom domain name for a custom domain association.
|
2077
|
+
*/
|
2078
|
+
CustomDomainName: CustomDomainNameString;
|
2079
|
+
/**
|
2080
|
+
* The certificate Amazon Resource Name (ARN) for the custom domain name association.
|
2081
|
+
*/
|
2082
|
+
CustomDomainCertificateArn: CustomDomainCertificateArnString;
|
2083
|
+
/**
|
2084
|
+
* The cluster identifier that the custom domain is associated with.
|
2085
|
+
*/
|
2086
|
+
ClusterIdentifier: String;
|
2087
|
+
}
|
2088
|
+
export interface CreateCustomDomainAssociationResult {
|
2089
|
+
/**
|
2090
|
+
* The custom domain name for the association result.
|
2091
|
+
*/
|
2092
|
+
CustomDomainName?: CustomDomainNameString;
|
2093
|
+
/**
|
2094
|
+
* The Amazon Resource Name (ARN) for the certificate associated with the custom domain name.
|
2095
|
+
*/
|
2096
|
+
CustomDomainCertificateArn?: CustomDomainCertificateArnString;
|
2097
|
+
/**
|
2098
|
+
* The identifier of the cluster that the custom domain is associated with.
|
2099
|
+
*/
|
2100
|
+
ClusterIdentifier?: String;
|
2101
|
+
/**
|
2102
|
+
* The expiration time for the certificate for the custom domain.
|
2103
|
+
*/
|
2104
|
+
CustomDomainCertExpiryTime?: String;
|
2105
|
+
}
|
2004
2106
|
export interface CreateEndpointAccessMessage {
|
2005
2107
|
/**
|
2006
2108
|
* The cluster identifier of the cluster to access.
|
@@ -2223,6 +2325,18 @@ declare namespace Redshift {
|
|
2223
2325
|
*/
|
2224
2326
|
Tags?: TagList;
|
2225
2327
|
}
|
2328
|
+
export interface CustomDomainAssociationsMessage {
|
2329
|
+
/**
|
2330
|
+
* The marker for the custom domain association.
|
2331
|
+
*/
|
2332
|
+
Marker?: String;
|
2333
|
+
/**
|
2334
|
+
* The associations for the custom domain.
|
2335
|
+
*/
|
2336
|
+
Associations?: AssociationList;
|
2337
|
+
}
|
2338
|
+
export type CustomDomainCertificateArnString = string;
|
2339
|
+
export type CustomDomainNameString = string;
|
2226
2340
|
export interface CustomerStorageMessage {
|
2227
2341
|
/**
|
2228
2342
|
* The total amount of storage currently used for snapshots.
|
@@ -2399,7 +2513,7 @@ declare namespace Redshift {
|
|
2399
2513
|
*/
|
2400
2514
|
SnapshotIdentifier: String;
|
2401
2515
|
/**
|
2402
|
-
* The unique identifier of the cluster the snapshot was created from. This parameter is required if your IAM user
|
2516
|
+
* The unique identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name. Constraints: Must be the name of valid cluster.
|
2403
2517
|
*/
|
2404
2518
|
SnapshotClusterIdentifier?: String;
|
2405
2519
|
}
|
@@ -2413,6 +2527,12 @@ declare namespace Redshift {
|
|
2413
2527
|
*/
|
2414
2528
|
ClusterSubnetGroupName: String;
|
2415
2529
|
}
|
2530
|
+
export interface DeleteCustomDomainAssociationMessage {
|
2531
|
+
/**
|
2532
|
+
* The identifier of the cluster to delete a custom domain association for.
|
2533
|
+
*/
|
2534
|
+
ClusterIdentifier: String;
|
2535
|
+
}
|
2416
2536
|
export interface DeleteEndpointAccessMessage {
|
2417
2537
|
/**
|
2418
2538
|
* The Redshift-managed VPC endpoint to delete.
|
@@ -2591,7 +2711,7 @@ declare namespace Redshift {
|
|
2591
2711
|
*/
|
2592
2712
|
EndTime?: TStamp;
|
2593
2713
|
/**
|
2594
|
-
* The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. Default: 100 Constraints: minimum 20, maximum
|
2714
|
+
* The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. Default: 100 Constraints: minimum 20, maximum 100.
|
2595
2715
|
*/
|
2596
2716
|
MaxRecords?: IntegerOptional;
|
2597
2717
|
/**
|
@@ -2695,6 +2815,24 @@ declare namespace Redshift {
|
|
2695
2815
|
*/
|
2696
2816
|
TagValues?: TagValueList;
|
2697
2817
|
}
|
2818
|
+
export interface DescribeCustomDomainAssociationsMessage {
|
2819
|
+
/**
|
2820
|
+
* The custom domain name for the custom domain association.
|
2821
|
+
*/
|
2822
|
+
CustomDomainName?: CustomDomainNameString;
|
2823
|
+
/**
|
2824
|
+
* The certificate Amazon Resource Name (ARN) for the custom domain association.
|
2825
|
+
*/
|
2826
|
+
CustomDomainCertificateArn?: CustomDomainCertificateArnString;
|
2827
|
+
/**
|
2828
|
+
* The maximum records setting for the associated custom domain.
|
2829
|
+
*/
|
2830
|
+
MaxRecords?: IntegerOptional;
|
2831
|
+
/**
|
2832
|
+
* The marker for the custom domain association.
|
2833
|
+
*/
|
2834
|
+
Marker?: String;
|
2835
|
+
}
|
2698
2836
|
export interface DescribeDataSharesForConsumerMessage {
|
2699
2837
|
/**
|
2700
2838
|
* The Amazon Resource Name (ARN) of the consumer that returns in the list of datashares.
|
@@ -3624,7 +3762,7 @@ declare namespace Redshift {
|
|
3624
3762
|
/**
|
3625
3763
|
* The unique identifier of the cluster that contains the database for which you are requesting credentials. This parameter is case sensitive.
|
3626
3764
|
*/
|
3627
|
-
ClusterIdentifier
|
3765
|
+
ClusterIdentifier?: String;
|
3628
3766
|
/**
|
3629
3767
|
* The number of seconds until the returned temporary password expires. Constraint: minimum 900, maximum 3600. Default: 900
|
3630
3768
|
*/
|
@@ -3637,6 +3775,10 @@ declare namespace Redshift {
|
|
3637
3775
|
* A list of the names of existing database groups that the user named in DbUser will join for the current session, in addition to any group memberships for an existing user. If not specified, a new user is added only to PUBLIC. Database group name constraints Must be 1 to 64 alphanumeric characters or hyphens Must contain only lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen. First character must be a letter. Must not contain a colon ( : ) or slash ( / ). Cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.
|
3638
3776
|
*/
|
3639
3777
|
DbGroups?: DbGroupList;
|
3778
|
+
/**
|
3779
|
+
* The custom domain name for the cluster credentials.
|
3780
|
+
*/
|
3781
|
+
CustomDomainName?: String;
|
3640
3782
|
}
|
3641
3783
|
export interface GetClusterCredentialsWithIAMMessage {
|
3642
3784
|
/**
|
@@ -3646,11 +3788,15 @@ declare namespace Redshift {
|
|
3646
3788
|
/**
|
3647
3789
|
* The unique identifier of the cluster that contains the database for which you are requesting credentials.
|
3648
3790
|
*/
|
3649
|
-
ClusterIdentifier
|
3791
|
+
ClusterIdentifier?: String;
|
3650
3792
|
/**
|
3651
3793
|
* The number of seconds until the returned temporary password expires. Range: 900-3600. Default: 900.
|
3652
3794
|
*/
|
3653
3795
|
DurationSeconds?: IntegerOptional;
|
3796
|
+
/**
|
3797
|
+
* The custom domain name for the IAM message cluster credentials.
|
3798
|
+
*/
|
3799
|
+
CustomDomainName?: String;
|
3654
3800
|
}
|
3655
3801
|
export interface GetReservedNodeExchangeConfigurationOptionsInputMessage {
|
3656
3802
|
/**
|
@@ -3979,7 +4125,7 @@ declare namespace Redshift {
|
|
3979
4125
|
*/
|
3980
4126
|
VpcSecurityGroupIds?: VpcSecurityGroupIdList;
|
3981
4127
|
/**
|
3982
|
-
* The new password for the cluster admin user. This change is asynchronously applied as soon as possible. Between the time of the request and the completion of the request, the MasterUserPassword element exists in the PendingModifiedValues element of the operation response. Operations never return the password, so this operation provides a way to regain access to the admin user for a cluster if the password is lost. Default: Uses existing setting. Constraints: Must be between 8 and 64 characters in length. Must contain at least one uppercase letter. Must contain at least one lowercase letter. Must contain one number. Can be any printable ASCII character (ASCII code 33-126) except ' (single quote), " (double quote), \, /, or @.
|
4128
|
+
* The new password for the cluster admin user. This change is asynchronously applied as soon as possible. Between the time of the request and the completion of the request, the MasterUserPassword element exists in the PendingModifiedValues element of the operation response. Operations never return the password, so this operation provides a way to regain access to the admin user account for a cluster if the password is lost. Default: Uses existing setting. Constraints: Must be between 8 and 64 characters in length. Must contain at least one uppercase letter. Must contain at least one lowercase letter. Must contain one number. Can be any printable ASCII character (ASCII code 33-126) except ' (single quote), " (double quote), \, /, or @.
|
3983
4129
|
*/
|
3984
4130
|
MasterUserPassword?: String;
|
3985
4131
|
/**
|
@@ -4116,6 +4262,38 @@ declare namespace Redshift {
|
|
4116
4262
|
export interface ModifyClusterSubnetGroupResult {
|
4117
4263
|
ClusterSubnetGroup?: ClusterSubnetGroup;
|
4118
4264
|
}
|
4265
|
+
export interface ModifyCustomDomainAssociationMessage {
|
4266
|
+
/**
|
4267
|
+
* The custom domain name for a changed custom domain association.
|
4268
|
+
*/
|
4269
|
+
CustomDomainName?: CustomDomainNameString;
|
4270
|
+
/**
|
4271
|
+
* The certificate Amazon Resource Name (ARN) for the changed custom domain association.
|
4272
|
+
*/
|
4273
|
+
CustomDomainCertificateArn?: CustomDomainCertificateArnString;
|
4274
|
+
/**
|
4275
|
+
* The identifier of the cluster to change a custom domain association for.
|
4276
|
+
*/
|
4277
|
+
ClusterIdentifier: String;
|
4278
|
+
}
|
4279
|
+
export interface ModifyCustomDomainAssociationResult {
|
4280
|
+
/**
|
4281
|
+
* The custom domain name associated with the result for the changed custom domain association.
|
4282
|
+
*/
|
4283
|
+
CustomDomainName?: CustomDomainNameString;
|
4284
|
+
/**
|
4285
|
+
* The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.
|
4286
|
+
*/
|
4287
|
+
CustomDomainCertificateArn?: CustomDomainCertificateArnString;
|
4288
|
+
/**
|
4289
|
+
* The identifier of the cluster associated with the result for the changed custom domain association.
|
4290
|
+
*/
|
4291
|
+
ClusterIdentifier?: String;
|
4292
|
+
/**
|
4293
|
+
* The certificate expiration time associated with the result for the changed custom domain association.
|
4294
|
+
*/
|
4295
|
+
CustomDomainCertExpiryTime?: String;
|
4296
|
+
}
|
4119
4297
|
export interface ModifyEndpointAccessMessage {
|
4120
4298
|
/**
|
4121
4299
|
* The endpoint to be modified.
|
@@ -4828,7 +5006,7 @@ declare namespace Redshift {
|
|
4828
5006
|
*/
|
4829
5007
|
SnapshotArn?: String;
|
4830
5008
|
/**
|
4831
|
-
* The name of the cluster the source snapshot was created from. This parameter is required if your IAM user
|
5009
|
+
* The name of the cluster the source snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
|
4832
5010
|
*/
|
4833
5011
|
SnapshotClusterIdentifier?: String;
|
4834
5012
|
/**
|
@@ -5091,7 +5269,7 @@ declare namespace Redshift {
|
|
5091
5269
|
*/
|
5092
5270
|
SnapshotArn?: String;
|
5093
5271
|
/**
|
5094
|
-
* The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user
|
5272
|
+
* The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
|
5095
5273
|
*/
|
5096
5274
|
SnapshotClusterIdentifier?: String;
|
5097
5275
|
/**
|