@aws-sdk/client-redshift 3.451.0 → 3.454.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -0
- package/dist-cjs/Redshift.js +8 -0
- package/dist-cjs/commands/CreateRedshiftIdcApplicationCommand.js +51 -0
- package/dist-cjs/commands/DeleteRedshiftIdcApplicationCommand.js +51 -0
- package/dist-cjs/commands/DescribeRedshiftIdcApplicationsCommand.js +51 -0
- package/dist-cjs/commands/ModifyRedshiftIdcApplicationCommand.js +51 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +74 -2
- package/dist-cjs/pagination/DescribeRedshiftIdcApplicationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_query.js +654 -6
- package/dist-es/Redshift.js +8 -0
- package/dist-es/commands/CreateRedshiftIdcApplicationCommand.js +47 -0
- package/dist-es/commands/DeleteRedshiftIdcApplicationCommand.js +47 -0
- package/dist-es/commands/DescribeRedshiftIdcApplicationsCommand.js +47 -0
- package/dist-es/commands/ModifyRedshiftIdcApplicationCommand.js +47 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +68 -0
- package/dist-es/pagination/DescribeRedshiftIdcApplicationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_query.js +642 -2
- package/dist-types/Redshift.d.ts +28 -0
- package/dist-types/RedshiftClient.d.ts +6 -2
- package/dist-types/commands/CreateClusterCommand.d.ts +4 -0
- package/dist-types/commands/CreateRedshiftIdcApplicationCommand.d.ts +140 -0
- package/dist-types/commands/DeleteCustomDomainAssociationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRedshiftIdcApplicationCommand.d.ts +84 -0
- package/dist-types/commands/DescribeClusterVersionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeCustomDomainAssociationsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDataSharesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDataSharesForConsumerCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDataSharesForProducerCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDefaultClusterParametersCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointAccessCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointAuthorizationCommand.d.ts +1 -2
- package/dist-types/commands/DescribeRedshiftIdcApplicationsCommand.d.ts +119 -0
- package/dist-types/commands/ModifyCustomDomainAssociationCommand.d.ts +5 -2
- package/dist-types/commands/ModifyRedshiftIdcApplicationCommand.d.ts +136 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +276 -361
- package/dist-types/models/models_1.d.ts +458 -3
- package/dist-types/pagination/DescribeRedshiftIdcApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_query.d.ts +36 -0
- package/dist-types/ts3.4/Redshift.d.ts +68 -0
- package/dist-types/ts3.4/RedshiftClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateRedshiftIdcApplicationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteRedshiftIdcApplicationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterVersionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeCustomDomainAssociationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeDataSharesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDataSharesForConsumerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDataSharesForProducerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDefaultClusterParametersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeEndpointAccessCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeEndpointAuthorizationCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeRedshiftIdcApplicationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ModifyRedshiftIdcApplicationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +118 -68
- package/dist-types/ts3.4/models/models_1.d.ts +98 -2
- package/dist-types/ts3.4/pagination/DescribeRedshiftIdcApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +48 -0
- package/package.json +2 -2
|
@@ -360,6 +360,10 @@ export interface AuthorizeDataShareMessage {
|
|
|
360
360
|
DataShareArn: string | undefined;
|
|
361
361
|
ConsumerIdentifier: string | undefined;
|
|
362
362
|
}
|
|
363
|
+
export interface AuthorizedTokenIssuer {
|
|
364
|
+
TrustedTokenIssuerArn?: string;
|
|
365
|
+
AuthorizedAudiencesList?: string[];
|
|
366
|
+
}
|
|
363
367
|
export interface AuthorizeEndpointAccessMessage {
|
|
364
368
|
ClusterIdentifier?: string;
|
|
365
369
|
Account: string | undefined;
|
|
@@ -1075,6 +1079,7 @@ export interface CreateClusterMessage {
|
|
|
1075
1079
|
MasterPasswordSecretKmsKeyId?: string;
|
|
1076
1080
|
IpAddressType?: string;
|
|
1077
1081
|
MultiAZ?: boolean;
|
|
1082
|
+
RedshiftIdcApplicationArn?: string;
|
|
1078
1083
|
}
|
|
1079
1084
|
export interface CreateClusterResult {
|
|
1080
1085
|
Cluster?: Cluster;
|
|
@@ -1174,6 +1179,16 @@ export declare class NumberOfNodesQuotaExceededFault extends __BaseException {
|
|
|
1174
1179
|
>
|
|
1175
1180
|
);
|
|
1176
1181
|
}
|
|
1182
|
+
export declare class RedshiftIdcApplicationNotExistsFault extends __BaseException {
|
|
1183
|
+
readonly name: "RedshiftIdcApplicationNotExistsFault";
|
|
1184
|
+
readonly $fault: "client";
|
|
1185
|
+
constructor(
|
|
1186
|
+
opts: __ExceptionOptionType<
|
|
1187
|
+
RedshiftIdcApplicationNotExistsFault,
|
|
1188
|
+
__BaseException
|
|
1189
|
+
>
|
|
1190
|
+
);
|
|
1191
|
+
}
|
|
1177
1192
|
export declare class SnapshotScheduleNotFoundFault extends __BaseException {
|
|
1178
1193
|
readonly name: "SnapshotScheduleNotFoundFault";
|
|
1179
1194
|
readonly $fault: "client";
|
|
@@ -1466,6 +1481,105 @@ export declare class HsmConfigurationQuotaExceededFault extends __BaseException
|
|
|
1466
1481
|
>
|
|
1467
1482
|
);
|
|
1468
1483
|
}
|
|
1484
|
+
export declare const ServiceAuthorization: {
|
|
1485
|
+
readonly DISABLED: "Disabled";
|
|
1486
|
+
readonly ENABLED: "Enabled";
|
|
1487
|
+
};
|
|
1488
|
+
export type ServiceAuthorization =
|
|
1489
|
+
(typeof ServiceAuthorization)[keyof typeof ServiceAuthorization];
|
|
1490
|
+
export interface LakeFormationQuery {
|
|
1491
|
+
Authorization: ServiceAuthorization | undefined;
|
|
1492
|
+
}
|
|
1493
|
+
export type LakeFormationScopeUnion =
|
|
1494
|
+
| LakeFormationScopeUnion.LakeFormationQueryMember
|
|
1495
|
+
| LakeFormationScopeUnion.$UnknownMember;
|
|
1496
|
+
export declare namespace LakeFormationScopeUnion {
|
|
1497
|
+
interface LakeFormationQueryMember {
|
|
1498
|
+
LakeFormationQuery: LakeFormationQuery;
|
|
1499
|
+
$unknown?: never;
|
|
1500
|
+
}
|
|
1501
|
+
interface $UnknownMember {
|
|
1502
|
+
LakeFormationQuery?: never;
|
|
1503
|
+
$unknown: [string, any];
|
|
1504
|
+
}
|
|
1505
|
+
interface Visitor<T> {
|
|
1506
|
+
LakeFormationQuery: (value: LakeFormationQuery) => T;
|
|
1507
|
+
_: (name: string, value: any) => T;
|
|
1508
|
+
}
|
|
1509
|
+
const visit: <T>(value: LakeFormationScopeUnion, visitor: Visitor<T>) => T;
|
|
1510
|
+
}
|
|
1511
|
+
export type ServiceIntegrationsUnion =
|
|
1512
|
+
| ServiceIntegrationsUnion.LakeFormationMember
|
|
1513
|
+
| ServiceIntegrationsUnion.$UnknownMember;
|
|
1514
|
+
export declare namespace ServiceIntegrationsUnion {
|
|
1515
|
+
interface LakeFormationMember {
|
|
1516
|
+
LakeFormation: LakeFormationScopeUnion[];
|
|
1517
|
+
$unknown?: never;
|
|
1518
|
+
}
|
|
1519
|
+
interface $UnknownMember {
|
|
1520
|
+
LakeFormation?: never;
|
|
1521
|
+
$unknown: [string, any];
|
|
1522
|
+
}
|
|
1523
|
+
interface Visitor<T> {
|
|
1524
|
+
LakeFormation: (value: LakeFormationScopeUnion[]) => T;
|
|
1525
|
+
_: (name: string, value: any) => T;
|
|
1526
|
+
}
|
|
1527
|
+
const visit: <T>(value: ServiceIntegrationsUnion, visitor: Visitor<T>) => T;
|
|
1528
|
+
}
|
|
1529
|
+
export interface CreateRedshiftIdcApplicationMessage {
|
|
1530
|
+
IdcInstanceArn: string | undefined;
|
|
1531
|
+
RedshiftIdcApplicationName: string | undefined;
|
|
1532
|
+
IdentityNamespace?: string;
|
|
1533
|
+
IdcDisplayName: string | undefined;
|
|
1534
|
+
IamRoleArn: string | undefined;
|
|
1535
|
+
AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[];
|
|
1536
|
+
ServiceIntegrations?: ServiceIntegrationsUnion[];
|
|
1537
|
+
}
|
|
1538
|
+
export interface RedshiftIdcApplication {
|
|
1539
|
+
IdcInstanceArn?: string;
|
|
1540
|
+
RedshiftIdcApplicationName?: string;
|
|
1541
|
+
RedshiftIdcApplicationArn?: string;
|
|
1542
|
+
IdentityNamespace?: string;
|
|
1543
|
+
IdcDisplayName?: string;
|
|
1544
|
+
IamRoleArn?: string;
|
|
1545
|
+
IdcManagedApplicationArn?: string;
|
|
1546
|
+
IdcOnboardStatus?: string;
|
|
1547
|
+
AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[];
|
|
1548
|
+
ServiceIntegrations?: ServiceIntegrationsUnion[];
|
|
1549
|
+
}
|
|
1550
|
+
export interface CreateRedshiftIdcApplicationResult {
|
|
1551
|
+
RedshiftIdcApplication?: RedshiftIdcApplication;
|
|
1552
|
+
}
|
|
1553
|
+
export declare class DependentServiceAccessDeniedFault extends __BaseException {
|
|
1554
|
+
readonly name: "DependentServiceAccessDeniedFault";
|
|
1555
|
+
readonly $fault: "client";
|
|
1556
|
+
constructor(
|
|
1557
|
+
opts: __ExceptionOptionType<
|
|
1558
|
+
DependentServiceAccessDeniedFault,
|
|
1559
|
+
__BaseException
|
|
1560
|
+
>
|
|
1561
|
+
);
|
|
1562
|
+
}
|
|
1563
|
+
export declare class RedshiftIdcApplicationAlreadyExistsFault extends __BaseException {
|
|
1564
|
+
readonly name: "RedshiftIdcApplicationAlreadyExistsFault";
|
|
1565
|
+
readonly $fault: "client";
|
|
1566
|
+
constructor(
|
|
1567
|
+
opts: __ExceptionOptionType<
|
|
1568
|
+
RedshiftIdcApplicationAlreadyExistsFault,
|
|
1569
|
+
__BaseException
|
|
1570
|
+
>
|
|
1571
|
+
);
|
|
1572
|
+
}
|
|
1573
|
+
export declare class RedshiftIdcApplicationQuotaExceededFault extends __BaseException {
|
|
1574
|
+
readonly name: "RedshiftIdcApplicationQuotaExceededFault";
|
|
1575
|
+
readonly $fault: "client";
|
|
1576
|
+
constructor(
|
|
1577
|
+
opts: __ExceptionOptionType<
|
|
1578
|
+
RedshiftIdcApplicationQuotaExceededFault,
|
|
1579
|
+
__BaseException
|
|
1580
|
+
>
|
|
1581
|
+
);
|
|
1582
|
+
}
|
|
1469
1583
|
export interface PauseClusterMessage {
|
|
1470
1584
|
ClusterIdentifier: string | undefined;
|
|
1471
1585
|
}
|
|
@@ -1796,6 +1910,7 @@ export declare class InvalidClusterSubnetStateFault extends __BaseException {
|
|
|
1796
1910
|
}
|
|
1797
1911
|
export interface DeleteCustomDomainAssociationMessage {
|
|
1798
1912
|
ClusterIdentifier: string | undefined;
|
|
1913
|
+
CustomDomainName: string | undefined;
|
|
1799
1914
|
}
|
|
1800
1915
|
export interface DeleteEndpointAccessMessage {
|
|
1801
1916
|
EndpointName: string | undefined;
|
|
@@ -1857,6 +1972,9 @@ export declare class InvalidHsmConfigurationStateFault extends __BaseException {
|
|
|
1857
1972
|
>
|
|
1858
1973
|
);
|
|
1859
1974
|
}
|
|
1975
|
+
export interface DeleteRedshiftIdcApplicationMessage {
|
|
1976
|
+
RedshiftIdcApplicationArn: string | undefined;
|
|
1977
|
+
}
|
|
1860
1978
|
export interface DeleteResourcePolicyMessage {
|
|
1861
1979
|
ResourceArn: string | undefined;
|
|
1862
1980
|
}
|
|
@@ -2022,74 +2140,6 @@ export interface TrackListMessage {
|
|
|
2022
2140
|
MaintenanceTracks?: MaintenanceTrack[];
|
|
2023
2141
|
Marker?: string;
|
|
2024
2142
|
}
|
|
2025
|
-
export interface DescribeClusterVersionsMessage {
|
|
2026
|
-
ClusterVersion?: string;
|
|
2027
|
-
ClusterParameterGroupFamily?: string;
|
|
2028
|
-
MaxRecords?: number;
|
|
2029
|
-
Marker?: string;
|
|
2030
|
-
}
|
|
2031
|
-
export interface DescribeCustomDomainAssociationsMessage {
|
|
2032
|
-
CustomDomainName?: string;
|
|
2033
|
-
CustomDomainCertificateArn?: string;
|
|
2034
|
-
MaxRecords?: number;
|
|
2035
|
-
Marker?: string;
|
|
2036
|
-
}
|
|
2037
|
-
export interface DescribeDataSharesMessage {
|
|
2038
|
-
DataShareArn?: string;
|
|
2039
|
-
MaxRecords?: number;
|
|
2040
|
-
Marker?: string;
|
|
2041
|
-
}
|
|
2042
|
-
export interface DescribeDataSharesResult {
|
|
2043
|
-
DataShares?: DataShare[];
|
|
2044
|
-
Marker?: string;
|
|
2045
|
-
}
|
|
2046
|
-
export interface DescribeDataSharesForConsumerMessage {
|
|
2047
|
-
ConsumerArn?: string;
|
|
2048
|
-
Status?: DataShareStatusForConsumer;
|
|
2049
|
-
MaxRecords?: number;
|
|
2050
|
-
Marker?: string;
|
|
2051
|
-
}
|
|
2052
|
-
export interface DescribeDataSharesForConsumerResult {
|
|
2053
|
-
DataShares?: DataShare[];
|
|
2054
|
-
Marker?: string;
|
|
2055
|
-
}
|
|
2056
|
-
export interface DescribeDataSharesForProducerMessage {
|
|
2057
|
-
ProducerArn?: string;
|
|
2058
|
-
Status?: DataShareStatusForProducer;
|
|
2059
|
-
MaxRecords?: number;
|
|
2060
|
-
Marker?: string;
|
|
2061
|
-
}
|
|
2062
|
-
export interface DescribeDataSharesForProducerResult {
|
|
2063
|
-
DataShares?: DataShare[];
|
|
2064
|
-
Marker?: string;
|
|
2065
|
-
}
|
|
2066
|
-
export interface DescribeDefaultClusterParametersMessage {
|
|
2067
|
-
ParameterGroupFamily: string | undefined;
|
|
2068
|
-
MaxRecords?: number;
|
|
2069
|
-
Marker?: string;
|
|
2070
|
-
}
|
|
2071
|
-
export interface DescribeDefaultClusterParametersResult {
|
|
2072
|
-
DefaultClusterParameters?: DefaultClusterParameters;
|
|
2073
|
-
}
|
|
2074
|
-
export interface DescribeEndpointAccessMessage {
|
|
2075
|
-
ClusterIdentifier?: string;
|
|
2076
|
-
ResourceOwner?: string;
|
|
2077
|
-
EndpointName?: string;
|
|
2078
|
-
VpcId?: string;
|
|
2079
|
-
MaxRecords?: number;
|
|
2080
|
-
Marker?: string;
|
|
2081
|
-
}
|
|
2082
|
-
export interface EndpointAccessList {
|
|
2083
|
-
EndpointAccessList?: EndpointAccess[];
|
|
2084
|
-
Marker?: string;
|
|
2085
|
-
}
|
|
2086
|
-
export interface DescribeEndpointAuthorizationMessage {
|
|
2087
|
-
ClusterIdentifier?: string;
|
|
2088
|
-
Account?: string;
|
|
2089
|
-
Grantee?: boolean;
|
|
2090
|
-
MaxRecords?: number;
|
|
2091
|
-
Marker?: string;
|
|
2092
|
-
}
|
|
2093
2143
|
export declare const PendingModifiedValuesFilterSensitiveLog: (
|
|
2094
2144
|
obj: PendingModifiedValues
|
|
2095
2145
|
) => any;
|
|
@@ -3,21 +3,29 @@ import {
|
|
|
3
3
|
ActionType,
|
|
4
4
|
AquaConfiguration,
|
|
5
5
|
AquaConfigurationStatus,
|
|
6
|
+
AuthorizedTokenIssuer,
|
|
6
7
|
AvailabilityZone,
|
|
7
8
|
Cluster,
|
|
8
9
|
ClusterSecurityGroup,
|
|
9
10
|
ClusterSubnetGroup,
|
|
11
|
+
DataShare,
|
|
12
|
+
DataShareStatusForConsumer,
|
|
13
|
+
DataShareStatusForProducer,
|
|
14
|
+
DefaultClusterParameters,
|
|
15
|
+
EndpointAccess,
|
|
10
16
|
EndpointAuthorization,
|
|
11
17
|
EventSubscription,
|
|
12
18
|
HsmClientCertificate,
|
|
13
19
|
HsmConfiguration,
|
|
14
20
|
Parameter,
|
|
15
21
|
RecurringCharge,
|
|
22
|
+
RedshiftIdcApplication,
|
|
16
23
|
ReservedNode,
|
|
17
24
|
ReservedNodeExchangeStatus,
|
|
18
25
|
ReservedNodeOfferingType,
|
|
19
26
|
ScheduledAction,
|
|
20
27
|
ScheduledActionType,
|
|
28
|
+
ServiceIntegrationsUnion,
|
|
21
29
|
Snapshot,
|
|
22
30
|
SnapshotCopyGrant,
|
|
23
31
|
SnapshotSchedule,
|
|
@@ -27,6 +35,74 @@ import {
|
|
|
27
35
|
UsageLimitFeatureType,
|
|
28
36
|
} from "./models_0";
|
|
29
37
|
import { RedshiftServiceException as __BaseException } from "./RedshiftServiceException";
|
|
38
|
+
export interface DescribeClusterVersionsMessage {
|
|
39
|
+
ClusterVersion?: string;
|
|
40
|
+
ClusterParameterGroupFamily?: string;
|
|
41
|
+
MaxRecords?: number;
|
|
42
|
+
Marker?: string;
|
|
43
|
+
}
|
|
44
|
+
export interface DescribeCustomDomainAssociationsMessage {
|
|
45
|
+
CustomDomainName?: string;
|
|
46
|
+
CustomDomainCertificateArn?: string;
|
|
47
|
+
MaxRecords?: number;
|
|
48
|
+
Marker?: string;
|
|
49
|
+
}
|
|
50
|
+
export interface DescribeDataSharesMessage {
|
|
51
|
+
DataShareArn?: string;
|
|
52
|
+
MaxRecords?: number;
|
|
53
|
+
Marker?: string;
|
|
54
|
+
}
|
|
55
|
+
export interface DescribeDataSharesResult {
|
|
56
|
+
DataShares?: DataShare[];
|
|
57
|
+
Marker?: string;
|
|
58
|
+
}
|
|
59
|
+
export interface DescribeDataSharesForConsumerMessage {
|
|
60
|
+
ConsumerArn?: string;
|
|
61
|
+
Status?: DataShareStatusForConsumer;
|
|
62
|
+
MaxRecords?: number;
|
|
63
|
+
Marker?: string;
|
|
64
|
+
}
|
|
65
|
+
export interface DescribeDataSharesForConsumerResult {
|
|
66
|
+
DataShares?: DataShare[];
|
|
67
|
+
Marker?: string;
|
|
68
|
+
}
|
|
69
|
+
export interface DescribeDataSharesForProducerMessage {
|
|
70
|
+
ProducerArn?: string;
|
|
71
|
+
Status?: DataShareStatusForProducer;
|
|
72
|
+
MaxRecords?: number;
|
|
73
|
+
Marker?: string;
|
|
74
|
+
}
|
|
75
|
+
export interface DescribeDataSharesForProducerResult {
|
|
76
|
+
DataShares?: DataShare[];
|
|
77
|
+
Marker?: string;
|
|
78
|
+
}
|
|
79
|
+
export interface DescribeDefaultClusterParametersMessage {
|
|
80
|
+
ParameterGroupFamily: string | undefined;
|
|
81
|
+
MaxRecords?: number;
|
|
82
|
+
Marker?: string;
|
|
83
|
+
}
|
|
84
|
+
export interface DescribeDefaultClusterParametersResult {
|
|
85
|
+
DefaultClusterParameters?: DefaultClusterParameters;
|
|
86
|
+
}
|
|
87
|
+
export interface DescribeEndpointAccessMessage {
|
|
88
|
+
ClusterIdentifier?: string;
|
|
89
|
+
ResourceOwner?: string;
|
|
90
|
+
EndpointName?: string;
|
|
91
|
+
VpcId?: string;
|
|
92
|
+
MaxRecords?: number;
|
|
93
|
+
Marker?: string;
|
|
94
|
+
}
|
|
95
|
+
export interface EndpointAccessList {
|
|
96
|
+
EndpointAccessList?: EndpointAccess[];
|
|
97
|
+
Marker?: string;
|
|
98
|
+
}
|
|
99
|
+
export interface DescribeEndpointAuthorizationMessage {
|
|
100
|
+
ClusterIdentifier?: string;
|
|
101
|
+
Account?: string;
|
|
102
|
+
Grantee?: boolean;
|
|
103
|
+
MaxRecords?: number;
|
|
104
|
+
Marker?: string;
|
|
105
|
+
}
|
|
30
106
|
export interface EndpointAuthorizationList {
|
|
31
107
|
EndpointAuthorizationList?: EndpointAuthorization[];
|
|
32
108
|
Marker?: string;
|
|
@@ -258,6 +334,15 @@ export interface PartnerIntegrationInfo {
|
|
|
258
334
|
export interface DescribePartnersOutputMessage {
|
|
259
335
|
PartnerIntegrationInfoList?: PartnerIntegrationInfo[];
|
|
260
336
|
}
|
|
337
|
+
export interface DescribeRedshiftIdcApplicationsMessage {
|
|
338
|
+
RedshiftIdcApplicationArn?: string;
|
|
339
|
+
MaxRecords?: number;
|
|
340
|
+
Marker?: string;
|
|
341
|
+
}
|
|
342
|
+
export interface DescribeRedshiftIdcApplicationsResult {
|
|
343
|
+
RedshiftIdcApplications?: RedshiftIdcApplication[];
|
|
344
|
+
Marker?: string;
|
|
345
|
+
}
|
|
261
346
|
export interface DescribeReservedNodeExchangeStatusInputMessage {
|
|
262
347
|
ReservedNodeId?: string;
|
|
263
348
|
ReservedNodeExchangeRequestId?: string;
|
|
@@ -751,8 +836,8 @@ export declare class SubnetAlreadyInUse extends __BaseException {
|
|
|
751
836
|
constructor(opts: __ExceptionOptionType<SubnetAlreadyInUse, __BaseException>);
|
|
752
837
|
}
|
|
753
838
|
export interface ModifyCustomDomainAssociationMessage {
|
|
754
|
-
CustomDomainName
|
|
755
|
-
CustomDomainCertificateArn
|
|
839
|
+
CustomDomainName: string | undefined;
|
|
840
|
+
CustomDomainCertificateArn: string | undefined;
|
|
756
841
|
ClusterIdentifier: string | undefined;
|
|
757
842
|
}
|
|
758
843
|
export interface ModifyCustomDomainAssociationResult {
|
|
@@ -777,6 +862,17 @@ export interface ModifyEventSubscriptionMessage {
|
|
|
777
862
|
export interface ModifyEventSubscriptionResult {
|
|
778
863
|
EventSubscription?: EventSubscription;
|
|
779
864
|
}
|
|
865
|
+
export interface ModifyRedshiftIdcApplicationMessage {
|
|
866
|
+
RedshiftIdcApplicationArn: string | undefined;
|
|
867
|
+
IdentityNamespace?: string;
|
|
868
|
+
IamRoleArn?: string;
|
|
869
|
+
IdcDisplayName?: string;
|
|
870
|
+
AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[];
|
|
871
|
+
ServiceIntegrations?: ServiceIntegrationsUnion[];
|
|
872
|
+
}
|
|
873
|
+
export interface ModifyRedshiftIdcApplicationResult {
|
|
874
|
+
RedshiftIdcApplication?: RedshiftIdcApplication;
|
|
875
|
+
}
|
|
780
876
|
export interface ModifyScheduledActionMessage {
|
|
781
877
|
ScheduledActionName: string | undefined;
|
|
782
878
|
TargetAction?: ScheduledActionType;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeRedshiftIdcApplicationsCommandInput,
|
|
4
|
+
DescribeRedshiftIdcApplicationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeRedshiftIdcApplicationsCommand";
|
|
6
|
+
import { RedshiftPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeRedshiftIdcApplications(
|
|
8
|
+
config: RedshiftPaginationConfiguration,
|
|
9
|
+
input: DescribeRedshiftIdcApplicationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeRedshiftIdcApplicationsCommandOutput>;
|
|
@@ -22,6 +22,7 @@ export * from "./DescribeHsmConfigurationsPaginator";
|
|
|
22
22
|
export * from "./DescribeInboundIntegrationsPaginator";
|
|
23
23
|
export * from "./DescribeNodeConfigurationOptionsPaginator";
|
|
24
24
|
export * from "./DescribeOrderableClusterOptionsPaginator";
|
|
25
|
+
export * from "./DescribeRedshiftIdcApplicationsPaginator";
|
|
25
26
|
export * from "./DescribeReservedNodeExchangeStatusPaginator";
|
|
26
27
|
export * from "./DescribeReservedNodeOfferingsPaginator";
|
|
27
28
|
export * from "./DescribeReservedNodesPaginator";
|
|
@@ -91,6 +91,10 @@ import {
|
|
|
91
91
|
CreateHsmConfigurationCommandInput,
|
|
92
92
|
CreateHsmConfigurationCommandOutput,
|
|
93
93
|
} from "../commands/CreateHsmConfigurationCommand";
|
|
94
|
+
import {
|
|
95
|
+
CreateRedshiftIdcApplicationCommandInput,
|
|
96
|
+
CreateRedshiftIdcApplicationCommandOutput,
|
|
97
|
+
} from "../commands/CreateRedshiftIdcApplicationCommand";
|
|
94
98
|
import {
|
|
95
99
|
CreateScheduledActionCommandInput,
|
|
96
100
|
CreateScheduledActionCommandOutput,
|
|
@@ -163,6 +167,10 @@ import {
|
|
|
163
167
|
DeletePartnerCommandInput,
|
|
164
168
|
DeletePartnerCommandOutput,
|
|
165
169
|
} from "../commands/DeletePartnerCommand";
|
|
170
|
+
import {
|
|
171
|
+
DeleteRedshiftIdcApplicationCommandInput,
|
|
172
|
+
DeleteRedshiftIdcApplicationCommandOutput,
|
|
173
|
+
} from "../commands/DeleteRedshiftIdcApplicationCommand";
|
|
166
174
|
import {
|
|
167
175
|
DeleteResourcePolicyCommandInput,
|
|
168
176
|
DeleteResourcePolicyCommandOutput,
|
|
@@ -299,6 +307,10 @@ import {
|
|
|
299
307
|
DescribePartnersCommandInput,
|
|
300
308
|
DescribePartnersCommandOutput,
|
|
301
309
|
} from "../commands/DescribePartnersCommand";
|
|
310
|
+
import {
|
|
311
|
+
DescribeRedshiftIdcApplicationsCommandInput,
|
|
312
|
+
DescribeRedshiftIdcApplicationsCommandOutput,
|
|
313
|
+
} from "../commands/DescribeRedshiftIdcApplicationsCommand";
|
|
302
314
|
import {
|
|
303
315
|
DescribeReservedNodeExchangeStatusCommandInput,
|
|
304
316
|
DescribeReservedNodeExchangeStatusCommandOutput,
|
|
@@ -439,6 +451,10 @@ import {
|
|
|
439
451
|
ModifyEventSubscriptionCommandInput,
|
|
440
452
|
ModifyEventSubscriptionCommandOutput,
|
|
441
453
|
} from "../commands/ModifyEventSubscriptionCommand";
|
|
454
|
+
import {
|
|
455
|
+
ModifyRedshiftIdcApplicationCommandInput,
|
|
456
|
+
ModifyRedshiftIdcApplicationCommandOutput,
|
|
457
|
+
} from "../commands/ModifyRedshiftIdcApplicationCommand";
|
|
442
458
|
import {
|
|
443
459
|
ModifyScheduledActionCommandInput,
|
|
444
460
|
ModifyScheduledActionCommandOutput,
|
|
@@ -603,6 +619,10 @@ export declare const se_CreateHsmConfigurationCommand: (
|
|
|
603
619
|
input: CreateHsmConfigurationCommandInput,
|
|
604
620
|
context: __SerdeContext
|
|
605
621
|
) => Promise<__HttpRequest>;
|
|
622
|
+
export declare const se_CreateRedshiftIdcApplicationCommand: (
|
|
623
|
+
input: CreateRedshiftIdcApplicationCommandInput,
|
|
624
|
+
context: __SerdeContext
|
|
625
|
+
) => Promise<__HttpRequest>;
|
|
606
626
|
export declare const se_CreateScheduledActionCommand: (
|
|
607
627
|
input: CreateScheduledActionCommandInput,
|
|
608
628
|
context: __SerdeContext
|
|
@@ -675,6 +695,10 @@ export declare const se_DeletePartnerCommand: (
|
|
|
675
695
|
input: DeletePartnerCommandInput,
|
|
676
696
|
context: __SerdeContext
|
|
677
697
|
) => Promise<__HttpRequest>;
|
|
698
|
+
export declare const se_DeleteRedshiftIdcApplicationCommand: (
|
|
699
|
+
input: DeleteRedshiftIdcApplicationCommandInput,
|
|
700
|
+
context: __SerdeContext
|
|
701
|
+
) => Promise<__HttpRequest>;
|
|
678
702
|
export declare const se_DeleteResourcePolicyCommand: (
|
|
679
703
|
input: DeleteResourcePolicyCommandInput,
|
|
680
704
|
context: __SerdeContext
|
|
@@ -811,6 +835,10 @@ export declare const se_DescribePartnersCommand: (
|
|
|
811
835
|
input: DescribePartnersCommandInput,
|
|
812
836
|
context: __SerdeContext
|
|
813
837
|
) => Promise<__HttpRequest>;
|
|
838
|
+
export declare const se_DescribeRedshiftIdcApplicationsCommand: (
|
|
839
|
+
input: DescribeRedshiftIdcApplicationsCommandInput,
|
|
840
|
+
context: __SerdeContext
|
|
841
|
+
) => Promise<__HttpRequest>;
|
|
814
842
|
export declare const se_DescribeReservedNodeExchangeStatusCommand: (
|
|
815
843
|
input: DescribeReservedNodeExchangeStatusCommandInput,
|
|
816
844
|
context: __SerdeContext
|
|
@@ -951,6 +979,10 @@ export declare const se_ModifyEventSubscriptionCommand: (
|
|
|
951
979
|
input: ModifyEventSubscriptionCommandInput,
|
|
952
980
|
context: __SerdeContext
|
|
953
981
|
) => Promise<__HttpRequest>;
|
|
982
|
+
export declare const se_ModifyRedshiftIdcApplicationCommand: (
|
|
983
|
+
input: ModifyRedshiftIdcApplicationCommandInput,
|
|
984
|
+
context: __SerdeContext
|
|
985
|
+
) => Promise<__HttpRequest>;
|
|
954
986
|
export declare const se_ModifyScheduledActionCommand: (
|
|
955
987
|
input: ModifyScheduledActionCommandInput,
|
|
956
988
|
context: __SerdeContext
|
|
@@ -1115,6 +1147,10 @@ export declare const de_CreateHsmConfigurationCommand: (
|
|
|
1115
1147
|
output: __HttpResponse,
|
|
1116
1148
|
context: __SerdeContext
|
|
1117
1149
|
) => Promise<CreateHsmConfigurationCommandOutput>;
|
|
1150
|
+
export declare const de_CreateRedshiftIdcApplicationCommand: (
|
|
1151
|
+
output: __HttpResponse,
|
|
1152
|
+
context: __SerdeContext
|
|
1153
|
+
) => Promise<CreateRedshiftIdcApplicationCommandOutput>;
|
|
1118
1154
|
export declare const de_CreateScheduledActionCommand: (
|
|
1119
1155
|
output: __HttpResponse,
|
|
1120
1156
|
context: __SerdeContext
|
|
@@ -1187,6 +1223,10 @@ export declare const de_DeletePartnerCommand: (
|
|
|
1187
1223
|
output: __HttpResponse,
|
|
1188
1224
|
context: __SerdeContext
|
|
1189
1225
|
) => Promise<DeletePartnerCommandOutput>;
|
|
1226
|
+
export declare const de_DeleteRedshiftIdcApplicationCommand: (
|
|
1227
|
+
output: __HttpResponse,
|
|
1228
|
+
context: __SerdeContext
|
|
1229
|
+
) => Promise<DeleteRedshiftIdcApplicationCommandOutput>;
|
|
1190
1230
|
export declare const de_DeleteResourcePolicyCommand: (
|
|
1191
1231
|
output: __HttpResponse,
|
|
1192
1232
|
context: __SerdeContext
|
|
@@ -1323,6 +1363,10 @@ export declare const de_DescribePartnersCommand: (
|
|
|
1323
1363
|
output: __HttpResponse,
|
|
1324
1364
|
context: __SerdeContext
|
|
1325
1365
|
) => Promise<DescribePartnersCommandOutput>;
|
|
1366
|
+
export declare const de_DescribeRedshiftIdcApplicationsCommand: (
|
|
1367
|
+
output: __HttpResponse,
|
|
1368
|
+
context: __SerdeContext
|
|
1369
|
+
) => Promise<DescribeRedshiftIdcApplicationsCommandOutput>;
|
|
1326
1370
|
export declare const de_DescribeReservedNodeExchangeStatusCommand: (
|
|
1327
1371
|
output: __HttpResponse,
|
|
1328
1372
|
context: __SerdeContext
|
|
@@ -1463,6 +1507,10 @@ export declare const de_ModifyEventSubscriptionCommand: (
|
|
|
1463
1507
|
output: __HttpResponse,
|
|
1464
1508
|
context: __SerdeContext
|
|
1465
1509
|
) => Promise<ModifyEventSubscriptionCommandOutput>;
|
|
1510
|
+
export declare const de_ModifyRedshiftIdcApplicationCommand: (
|
|
1511
|
+
output: __HttpResponse,
|
|
1512
|
+
context: __SerdeContext
|
|
1513
|
+
) => Promise<ModifyRedshiftIdcApplicationCommandOutput>;
|
|
1466
1514
|
export declare const de_ModifyScheduledActionCommand: (
|
|
1467
1515
|
output: __HttpResponse,
|
|
1468
1516
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-redshift",
|
|
3
3
|
"description": "AWS SDK for JavaScript Redshift Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.454.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.454.0",
|
|
25
25
|
"@aws-sdk/core": "3.451.0",
|
|
26
26
|
"@aws-sdk/credential-provider-node": "3.451.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.451.0",
|