@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.
Files changed (65) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/Redshift.js +8 -0
  3. package/dist-cjs/commands/CreateRedshiftIdcApplicationCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteRedshiftIdcApplicationCommand.js +51 -0
  5. package/dist-cjs/commands/DescribeRedshiftIdcApplicationsCommand.js +51 -0
  6. package/dist-cjs/commands/ModifyRedshiftIdcApplicationCommand.js +51 -0
  7. package/dist-cjs/commands/index.js +4 -0
  8. package/dist-cjs/models/models_0.js +74 -2
  9. package/dist-cjs/pagination/DescribeRedshiftIdcApplicationsPaginator.js +29 -0
  10. package/dist-cjs/pagination/index.js +1 -0
  11. package/dist-cjs/protocols/Aws_query.js +654 -6
  12. package/dist-es/Redshift.js +8 -0
  13. package/dist-es/commands/CreateRedshiftIdcApplicationCommand.js +47 -0
  14. package/dist-es/commands/DeleteRedshiftIdcApplicationCommand.js +47 -0
  15. package/dist-es/commands/DescribeRedshiftIdcApplicationsCommand.js +47 -0
  16. package/dist-es/commands/ModifyRedshiftIdcApplicationCommand.js +47 -0
  17. package/dist-es/commands/index.js +4 -0
  18. package/dist-es/models/models_0.js +68 -0
  19. package/dist-es/pagination/DescribeRedshiftIdcApplicationsPaginator.js +25 -0
  20. package/dist-es/pagination/index.js +1 -0
  21. package/dist-es/protocols/Aws_query.js +642 -2
  22. package/dist-types/Redshift.d.ts +28 -0
  23. package/dist-types/RedshiftClient.d.ts +6 -2
  24. package/dist-types/commands/CreateClusterCommand.d.ts +4 -0
  25. package/dist-types/commands/CreateRedshiftIdcApplicationCommand.d.ts +140 -0
  26. package/dist-types/commands/DeleteCustomDomainAssociationCommand.d.ts +4 -0
  27. package/dist-types/commands/DeleteRedshiftIdcApplicationCommand.d.ts +84 -0
  28. package/dist-types/commands/DescribeClusterVersionsCommand.d.ts +2 -1
  29. package/dist-types/commands/DescribeCustomDomainAssociationsCommand.d.ts +2 -1
  30. package/dist-types/commands/DescribeDataSharesCommand.d.ts +1 -1
  31. package/dist-types/commands/DescribeDataSharesForConsumerCommand.d.ts +1 -1
  32. package/dist-types/commands/DescribeDataSharesForProducerCommand.d.ts +1 -1
  33. package/dist-types/commands/DescribeDefaultClusterParametersCommand.d.ts +1 -1
  34. package/dist-types/commands/DescribeEndpointAccessCommand.d.ts +1 -1
  35. package/dist-types/commands/DescribeEndpointAuthorizationCommand.d.ts +1 -2
  36. package/dist-types/commands/DescribeRedshiftIdcApplicationsCommand.d.ts +119 -0
  37. package/dist-types/commands/ModifyCustomDomainAssociationCommand.d.ts +5 -2
  38. package/dist-types/commands/ModifyRedshiftIdcApplicationCommand.d.ts +136 -0
  39. package/dist-types/commands/index.d.ts +4 -0
  40. package/dist-types/models/models_0.d.ts +276 -361
  41. package/dist-types/models/models_1.d.ts +458 -3
  42. package/dist-types/pagination/DescribeRedshiftIdcApplicationsPaginator.d.ts +7 -0
  43. package/dist-types/pagination/index.d.ts +1 -0
  44. package/dist-types/protocols/Aws_query.d.ts +36 -0
  45. package/dist-types/ts3.4/Redshift.d.ts +68 -0
  46. package/dist-types/ts3.4/RedshiftClient.d.ts +24 -0
  47. package/dist-types/ts3.4/commands/CreateRedshiftIdcApplicationCommand.d.ts +42 -0
  48. package/dist-types/ts3.4/commands/DeleteRedshiftIdcApplicationCommand.d.ts +38 -0
  49. package/dist-types/ts3.4/commands/DescribeClusterVersionsCommand.d.ts +2 -4
  50. package/dist-types/ts3.4/commands/DescribeCustomDomainAssociationsCommand.d.ts +2 -4
  51. package/dist-types/ts3.4/commands/DescribeDataSharesCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/DescribeDataSharesForConsumerCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/DescribeDataSharesForProducerCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/DescribeDefaultClusterParametersCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/DescribeEndpointAccessCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/DescribeEndpointAuthorizationCommand.d.ts +4 -2
  57. package/dist-types/ts3.4/commands/DescribeRedshiftIdcApplicationsCommand.d.ts +42 -0
  58. package/dist-types/ts3.4/commands/ModifyRedshiftIdcApplicationCommand.d.ts +42 -0
  59. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +118 -68
  61. package/dist-types/ts3.4/models/models_1.d.ts +98 -2
  62. package/dist-types/ts3.4/pagination/DescribeRedshiftIdcApplicationsPaginator.d.ts +11 -0
  63. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  64. package/dist-types/ts3.4/protocols/Aws_query.d.ts +48 -0
  65. package/package.json +2 -2
@@ -929,6 +929,23 @@ export interface AuthorizeDataShareMessage {
929
929
  */
930
930
  ConsumerIdentifier: string | undefined;
931
931
  }
932
+ /**
933
+ * @public
934
+ * <p>The authorized token issuer for the Amazon Redshift IAM Identity Center application.</p>
935
+ */
936
+ export interface AuthorizedTokenIssuer {
937
+ /**
938
+ * @public
939
+ * <p>The ARN for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.</p>
940
+ */
941
+ TrustedTokenIssuerArn?: string;
942
+ /**
943
+ * @public
944
+ * <p>The list of audiences for the authorized token issuer for integrating Amazon Redshift
945
+ * with IDC Identity Center.</p>
946
+ */
947
+ AuthorizedAudiencesList?: string[];
948
+ }
932
949
  /**
933
950
  * @public
934
951
  */
@@ -3948,6 +3965,11 @@ export interface CreateClusterMessage {
3948
3965
  * <p>If true, Amazon Redshift will deploy the cluster in two Availability Zones (AZ).</p>
3949
3966
  */
3950
3967
  MultiAZ?: boolean;
3968
+ /**
3969
+ * @public
3970
+ * <p>The Amazon resource name (ARN) of the Amazon Redshift IAM Identity Center application.</p>
3971
+ */
3972
+ RedshiftIdcApplicationArn?: string;
3951
3973
  }
3952
3974
  /**
3953
3975
  * @public
@@ -4111,6 +4133,18 @@ export declare class NumberOfNodesQuotaExceededFault extends __BaseException {
4111
4133
  */
4112
4134
  constructor(opts: __ExceptionOptionType<NumberOfNodesQuotaExceededFault, __BaseException>);
4113
4135
  }
4136
+ /**
4137
+ * @public
4138
+ * <p>The application you attempted to find doesn't exist.</p>
4139
+ */
4140
+ export declare class RedshiftIdcApplicationNotExistsFault extends __BaseException {
4141
+ readonly name: "RedshiftIdcApplicationNotExistsFault";
4142
+ readonly $fault: "client";
4143
+ /**
4144
+ * @internal
4145
+ */
4146
+ constructor(opts: __ExceptionOptionType<RedshiftIdcApplicationNotExistsFault, __BaseException>);
4147
+ }
4114
4148
  /**
4115
4149
  * @public
4116
4150
  * <p>We could not find the specified snapshot schedule. </p>
@@ -5034,6 +5068,233 @@ export declare class HsmConfigurationQuotaExceededFault extends __BaseException
5034
5068
  */
5035
5069
  constructor(opts: __ExceptionOptionType<HsmConfigurationQuotaExceededFault, __BaseException>);
5036
5070
  }
5071
+ /**
5072
+ * @public
5073
+ * @enum
5074
+ */
5075
+ export declare const ServiceAuthorization: {
5076
+ readonly DISABLED: "Disabled";
5077
+ readonly ENABLED: "Enabled";
5078
+ };
5079
+ /**
5080
+ * @public
5081
+ */
5082
+ export type ServiceAuthorization = (typeof ServiceAuthorization)[keyof typeof ServiceAuthorization];
5083
+ /**
5084
+ * @public
5085
+ * <p>The Lake Formation scope.</p>
5086
+ */
5087
+ export interface LakeFormationQuery {
5088
+ /**
5089
+ * @public
5090
+ * <p>Determines whether the query scope is enabled or disabled.</p>
5091
+ */
5092
+ Authorization: ServiceAuthorization | undefined;
5093
+ }
5094
+ /**
5095
+ * @public
5096
+ * <p>A list of scopes set up for Lake Formation integration.</p>
5097
+ */
5098
+ export type LakeFormationScopeUnion = LakeFormationScopeUnion.LakeFormationQueryMember | LakeFormationScopeUnion.$UnknownMember;
5099
+ /**
5100
+ * @public
5101
+ */
5102
+ export declare namespace LakeFormationScopeUnion {
5103
+ /**
5104
+ * @public
5105
+ * <p>The Lake Formation scope.</p>
5106
+ */
5107
+ interface LakeFormationQueryMember {
5108
+ LakeFormationQuery: LakeFormationQuery;
5109
+ $unknown?: never;
5110
+ }
5111
+ /**
5112
+ * @public
5113
+ */
5114
+ interface $UnknownMember {
5115
+ LakeFormationQuery?: never;
5116
+ $unknown: [string, any];
5117
+ }
5118
+ interface Visitor<T> {
5119
+ LakeFormationQuery: (value: LakeFormationQuery) => T;
5120
+ _: (name: string, value: any) => T;
5121
+ }
5122
+ const visit: <T>(value: LakeFormationScopeUnion, visitor: Visitor<T>) => T;
5123
+ }
5124
+ /**
5125
+ * @public
5126
+ * <p>A list of service integrations.</p>
5127
+ */
5128
+ export type ServiceIntegrationsUnion = ServiceIntegrationsUnion.LakeFormationMember | ServiceIntegrationsUnion.$UnknownMember;
5129
+ /**
5130
+ * @public
5131
+ */
5132
+ export declare namespace ServiceIntegrationsUnion {
5133
+ /**
5134
+ * @public
5135
+ * <p>A list of scopes set up for Lake Formation integration.</p>
5136
+ */
5137
+ interface LakeFormationMember {
5138
+ LakeFormation: LakeFormationScopeUnion[];
5139
+ $unknown?: never;
5140
+ }
5141
+ /**
5142
+ * @public
5143
+ */
5144
+ interface $UnknownMember {
5145
+ LakeFormation?: never;
5146
+ $unknown: [string, any];
5147
+ }
5148
+ interface Visitor<T> {
5149
+ LakeFormation: (value: LakeFormationScopeUnion[]) => T;
5150
+ _: (name: string, value: any) => T;
5151
+ }
5152
+ const visit: <T>(value: ServiceIntegrationsUnion, visitor: Visitor<T>) => T;
5153
+ }
5154
+ /**
5155
+ * @public
5156
+ */
5157
+ export interface CreateRedshiftIdcApplicationMessage {
5158
+ /**
5159
+ * @public
5160
+ * <p>The Amazon resource name (ARN) of the IAM Identity Center instance where Amazon Redshift creates a new managed application.</p>
5161
+ */
5162
+ IdcInstanceArn: string | undefined;
5163
+ /**
5164
+ * @public
5165
+ * <p>The name of the Redshift application in IAM Identity Center.</p>
5166
+ */
5167
+ RedshiftIdcApplicationName: string | undefined;
5168
+ /**
5169
+ * @public
5170
+ * <p>The namespace for the Amazon Redshift IAM Identity Center application instance. It determines which managed application
5171
+ * verifies the connection token.</p>
5172
+ */
5173
+ IdentityNamespace?: string;
5174
+ /**
5175
+ * @public
5176
+ * <p>The display name for the Amazon Redshift IAM Identity Center application instance. It appears in the console.</p>
5177
+ */
5178
+ IdcDisplayName: string | undefined;
5179
+ /**
5180
+ * @public
5181
+ * <p>The IAM role ARN for the Amazon Redshift IAM Identity Center application instance. It has the required permissions
5182
+ * to be assumed and invoke the IDC Identity Center API.</p>
5183
+ */
5184
+ IamRoleArn: string | undefined;
5185
+ /**
5186
+ * @public
5187
+ * <p>The token issuer list for the Amazon Redshift IAM Identity Center application instance.</p>
5188
+ */
5189
+ AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[];
5190
+ /**
5191
+ * @public
5192
+ * <p>A collection of service integrations for the Redshift IAM Identity Center application.</p>
5193
+ */
5194
+ ServiceIntegrations?: ServiceIntegrationsUnion[];
5195
+ }
5196
+ /**
5197
+ * @public
5198
+ * <p>Contains properties for the Redshift IDC application.</p>
5199
+ */
5200
+ export interface RedshiftIdcApplication {
5201
+ /**
5202
+ * @public
5203
+ * <p>The ARN for the IAM Identity Center instance that Redshift integrates with.</p>
5204
+ */
5205
+ IdcInstanceArn?: string;
5206
+ /**
5207
+ * @public
5208
+ * <p>The name of the Redshift application in IAM Identity Center.</p>
5209
+ */
5210
+ RedshiftIdcApplicationName?: string;
5211
+ /**
5212
+ * @public
5213
+ * <p>The ARN for the Redshift application that integrates with IAM Identity Center.</p>
5214
+ */
5215
+ RedshiftIdcApplicationArn?: string;
5216
+ /**
5217
+ * @public
5218
+ * <p>The identity namespace for the Amazon Redshift IAM Identity Center application. It determines which managed application verifies the connection token.</p>
5219
+ */
5220
+ IdentityNamespace?: string;
5221
+ /**
5222
+ * @public
5223
+ * <p>The display name for the Amazon Redshift IAM Identity Center application. It appears on the console.</p>
5224
+ */
5225
+ IdcDisplayName?: string;
5226
+ /**
5227
+ * @public
5228
+ * <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>
5229
+ */
5230
+ IamRoleArn?: string;
5231
+ /**
5232
+ * @public
5233
+ * <p>The ARN for the Amazon Redshift IAM Identity Center application.</p>
5234
+ */
5235
+ IdcManagedApplicationArn?: string;
5236
+ /**
5237
+ * @public
5238
+ * <p>The onboarding status for the Amazon Redshift IAM Identity Center application.</p>
5239
+ */
5240
+ IdcOnboardStatus?: string;
5241
+ /**
5242
+ * @public
5243
+ * <p>The authorized token issuer list for the Amazon Redshift IAM Identity Center application.</p>
5244
+ */
5245
+ AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[];
5246
+ /**
5247
+ * @public
5248
+ * <p>A list of service integrations for the Redshift IAM Identity Center application.</p>
5249
+ */
5250
+ ServiceIntegrations?: ServiceIntegrationsUnion[];
5251
+ }
5252
+ /**
5253
+ * @public
5254
+ */
5255
+ export interface CreateRedshiftIdcApplicationResult {
5256
+ /**
5257
+ * @public
5258
+ * <p>Contains properties for the Redshift IDC application.</p>
5259
+ */
5260
+ RedshiftIdcApplication?: RedshiftIdcApplication;
5261
+ }
5262
+ /**
5263
+ * @public
5264
+ * <p>A dependent service denied access for the integration.</p>
5265
+ */
5266
+ export declare class DependentServiceAccessDeniedFault extends __BaseException {
5267
+ readonly name: "DependentServiceAccessDeniedFault";
5268
+ readonly $fault: "client";
5269
+ /**
5270
+ * @internal
5271
+ */
5272
+ constructor(opts: __ExceptionOptionType<DependentServiceAccessDeniedFault, __BaseException>);
5273
+ }
5274
+ /**
5275
+ * @public
5276
+ * <p>The application you attempted to add already exists.</p>
5277
+ */
5278
+ export declare class RedshiftIdcApplicationAlreadyExistsFault extends __BaseException {
5279
+ readonly name: "RedshiftIdcApplicationAlreadyExistsFault";
5280
+ readonly $fault: "client";
5281
+ /**
5282
+ * @internal
5283
+ */
5284
+ constructor(opts: __ExceptionOptionType<RedshiftIdcApplicationAlreadyExistsFault, __BaseException>);
5285
+ }
5286
+ /**
5287
+ * @public
5288
+ * <p>The maximum number of Redshift IAM Identity Center applications was exceeded.</p>
5289
+ */
5290
+ export declare class RedshiftIdcApplicationQuotaExceededFault extends __BaseException {
5291
+ readonly name: "RedshiftIdcApplicationQuotaExceededFault";
5292
+ readonly $fault: "client";
5293
+ /**
5294
+ * @internal
5295
+ */
5296
+ constructor(opts: __ExceptionOptionType<RedshiftIdcApplicationQuotaExceededFault, __BaseException>);
5297
+ }
5037
5298
  /**
5038
5299
  * @public
5039
5300
  * <p>Describes a pause cluster operation. For example, a scheduled action to run the <code>PauseCluster</code> API operation. </p>
@@ -6053,6 +6314,11 @@ export interface DeleteCustomDomainAssociationMessage {
6053
6314
  * <p>The identifier of the cluster to delete a custom domain association for.</p>
6054
6315
  */
6055
6316
  ClusterIdentifier: string | undefined;
6317
+ /**
6318
+ * @public
6319
+ * <p>The custom domain name for the custom domain association.</p>
6320
+ */
6321
+ CustomDomainName: string | undefined;
6056
6322
  }
6057
6323
  /**
6058
6324
  * @public
@@ -6173,6 +6439,16 @@ export declare class InvalidHsmConfigurationStateFault extends __BaseException {
6173
6439
  */
6174
6440
  constructor(opts: __ExceptionOptionType<InvalidHsmConfigurationStateFault, __BaseException>);
6175
6441
  }
6442
+ /**
6443
+ * @public
6444
+ */
6445
+ export interface DeleteRedshiftIdcApplicationMessage {
6446
+ /**
6447
+ * @public
6448
+ * <p>The ARN for a deleted Amazon Redshift IAM Identity Center application.</p>
6449
+ */
6450
+ RedshiftIdcApplicationArn: string | undefined;
6451
+ }
6176
6452
  /**
6177
6453
  * @public
6178
6454
  */
@@ -6923,367 +7199,6 @@ export interface TrackListMessage {
6923
7199
  */
6924
7200
  Marker?: string;
6925
7201
  }
6926
- /**
6927
- * @public
6928
- * <p></p>
6929
- */
6930
- export interface DescribeClusterVersionsMessage {
6931
- /**
6932
- * @public
6933
- * <p>The specific cluster version to return.</p>
6934
- * <p>Example: <code>1.0</code>
6935
- * </p>
6936
- */
6937
- ClusterVersion?: string;
6938
- /**
6939
- * @public
6940
- * <p>The name of a specific cluster parameter group family to return details
6941
- * for.</p>
6942
- * <p>Constraints:</p>
6943
- * <ul>
6944
- * <li>
6945
- * <p>Must be 1 to 255 alphanumeric characters</p>
6946
- * </li>
6947
- * <li>
6948
- * <p>First character must be a letter</p>
6949
- * </li>
6950
- * <li>
6951
- * <p>Cannot end with a hyphen or contain two consecutive hyphens</p>
6952
- * </li>
6953
- * </ul>
6954
- */
6955
- ClusterParameterGroupFamily?: string;
6956
- /**
6957
- * @public
6958
- * <p>The maximum number of response records to return in each call. If the number of
6959
- * remaining response records exceeds the specified <code>MaxRecords</code> value, a value
6960
- * is returned in a <code>marker</code> field of the response. You can retrieve the next
6961
- * set of records by retrying the command with the returned marker value. </p>
6962
- * <p>Default: <code>100</code>
6963
- * </p>
6964
- * <p>Constraints: minimum 20, maximum 100.</p>
6965
- */
6966
- MaxRecords?: number;
6967
- /**
6968
- * @public
6969
- * <p>An optional parameter that specifies the starting point to return a set of response
6970
- * records. When the results of a <a>DescribeClusterVersions</a> request exceed
6971
- * the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
6972
- * <code>Marker</code> field of the response. You can retrieve the next set of response
6973
- * records by providing the returned marker value in the <code>Marker</code> parameter and
6974
- * retrying the request. </p>
6975
- */
6976
- Marker?: string;
6977
- }
6978
- /**
6979
- * @public
6980
- */
6981
- export interface DescribeCustomDomainAssociationsMessage {
6982
- /**
6983
- * @public
6984
- * <p>The custom domain name for the custom domain association.</p>
6985
- */
6986
- CustomDomainName?: string;
6987
- /**
6988
- * @public
6989
- * <p>The certificate Amazon Resource Name (ARN) for the custom domain association.</p>
6990
- */
6991
- CustomDomainCertificateArn?: string;
6992
- /**
6993
- * @public
6994
- * <p>The maximum records setting for the associated custom domain.</p>
6995
- */
6996
- MaxRecords?: number;
6997
- /**
6998
- * @public
6999
- * <p>The marker for the custom domain association.</p>
7000
- */
7001
- Marker?: string;
7002
- }
7003
- /**
7004
- * @public
7005
- */
7006
- export interface DescribeDataSharesMessage {
7007
- /**
7008
- * @public
7009
- * <p>The identifier of the datashare to describe details of.</p>
7010
- */
7011
- DataShareArn?: string;
7012
- /**
7013
- * @public
7014
- * <p>The maximum number of response records to return in each call. If the number of
7015
- * remaining response records exceeds the specified <code>MaxRecords</code> value, a value
7016
- * is returned in a <code>marker</code> field of the response. You can retrieve the next
7017
- * set of records by retrying the command with the returned marker value. </p>
7018
- */
7019
- MaxRecords?: number;
7020
- /**
7021
- * @public
7022
- * <p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeDataShares</a> request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>
7023
- */
7024
- Marker?: string;
7025
- }
7026
- /**
7027
- * @public
7028
- */
7029
- export interface DescribeDataSharesResult {
7030
- /**
7031
- * @public
7032
- * <p>The results returned from describing datashares.</p>
7033
- */
7034
- DataShares?: DataShare[];
7035
- /**
7036
- * @public
7037
- * <p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeDataShares</a> request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>
7038
- */
7039
- Marker?: string;
7040
- }
7041
- /**
7042
- * @public
7043
- */
7044
- export interface DescribeDataSharesForConsumerMessage {
7045
- /**
7046
- * @public
7047
- * <p>The Amazon Resource Name (ARN) of the consumer that returns in the list of datashares.</p>
7048
- */
7049
- ConsumerArn?: string;
7050
- /**
7051
- * @public
7052
- * <p>An identifier giving the status of a datashare in the consumer cluster. If this field is specified, Amazon
7053
- * Redshift returns the list of datashares that have the specified status.</p>
7054
- */
7055
- Status?: DataShareStatusForConsumer;
7056
- /**
7057
- * @public
7058
- * <p>The maximum number of response records to return in each call. If the number of
7059
- * remaining response records exceeds the specified <code>MaxRecords</code> value, a value
7060
- * is returned in a <code>marker</code> field of the response. You can retrieve the next
7061
- * set of records by retrying the command with the returned marker value. </p>
7062
- */
7063
- MaxRecords?: number;
7064
- /**
7065
- * @public
7066
- * <p>An optional parameter that specifies the starting point to return a set of response
7067
- * records. When the results of a <a>DescribeDataSharesForConsumer</a> request
7068
- * exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
7069
- * <code>Marker</code> field of the response. You can retrieve the next set of response
7070
- * records by providing the returned marker value in the <code>Marker</code> parameter and
7071
- * retrying the request. </p>
7072
- */
7073
- Marker?: string;
7074
- }
7075
- /**
7076
- * @public
7077
- */
7078
- export interface DescribeDataSharesForConsumerResult {
7079
- /**
7080
- * @public
7081
- * <p>Shows the results of datashares available for consumers.</p>
7082
- */
7083
- DataShares?: DataShare[];
7084
- /**
7085
- * @public
7086
- * <p>An optional parameter that specifies the starting point to return a set of response
7087
- * records. When the results of a <a>DescribeDataSharesForConsumer</a> request
7088
- * exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
7089
- * <code>Marker</code> field of the response. You can retrieve the next set of response
7090
- * records by providing the returned marker value in the <code>Marker</code> parameter and
7091
- * retrying the request. </p>
7092
- */
7093
- Marker?: string;
7094
- }
7095
- /**
7096
- * @public
7097
- */
7098
- export interface DescribeDataSharesForProducerMessage {
7099
- /**
7100
- * @public
7101
- * <p>The Amazon Resource Name (ARN) of the producer that returns in the list of datashares.</p>
7102
- */
7103
- ProducerArn?: string;
7104
- /**
7105
- * @public
7106
- * <p>An identifier giving the status of a datashare in the producer. If this field is specified, Amazon
7107
- * Redshift returns the list of datashares that have the specified status.</p>
7108
- */
7109
- Status?: DataShareStatusForProducer;
7110
- /**
7111
- * @public
7112
- * <p>The maximum number of response records to return in each call. If the number of
7113
- * remaining response records exceeds the specified <code>MaxRecords</code> value, a value
7114
- * is returned in a <code>marker</code> field of the response. You can retrieve the next
7115
- * set of records by retrying the command with the returned marker value. </p>
7116
- */
7117
- MaxRecords?: number;
7118
- /**
7119
- * @public
7120
- * <p>An optional parameter that specifies the starting point to return a set of response
7121
- * records. When the results of a <a>DescribeDataSharesForProducer</a> request
7122
- * exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
7123
- * <code>Marker</code> field of the response. You can retrieve the next set of response
7124
- * records by providing the returned marker value in the <code>Marker</code> parameter and
7125
- * retrying the request. </p>
7126
- */
7127
- Marker?: string;
7128
- }
7129
- /**
7130
- * @public
7131
- */
7132
- export interface DescribeDataSharesForProducerResult {
7133
- /**
7134
- * @public
7135
- * <p>Shows the results of datashares available for producers.</p>
7136
- */
7137
- DataShares?: DataShare[];
7138
- /**
7139
- * @public
7140
- * <p>An optional parameter that specifies the starting point to return a set of response
7141
- * records. When the results of a <a>DescribeDataSharesForProducer</a> request
7142
- * exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
7143
- * <code>Marker</code> field of the response. You can retrieve the next set of response
7144
- * records by providing the returned marker value in the <code>Marker</code> parameter and
7145
- * retrying the request. </p>
7146
- */
7147
- Marker?: string;
7148
- }
7149
- /**
7150
- * @public
7151
- * <p></p>
7152
- */
7153
- export interface DescribeDefaultClusterParametersMessage {
7154
- /**
7155
- * @public
7156
- * <p>The name of the cluster parameter group family.</p>
7157
- */
7158
- ParameterGroupFamily: string | undefined;
7159
- /**
7160
- * @public
7161
- * <p>The maximum number of response records to return in each call. If the number of
7162
- * remaining response records exceeds the specified <code>MaxRecords</code> value, a value
7163
- * is returned in a <code>marker</code> field of the response. You can retrieve the next
7164
- * set of records by retrying the command with the returned marker value. </p>
7165
- * <p>Default: <code>100</code>
7166
- * </p>
7167
- * <p>Constraints: minimum 20, maximum 100.</p>
7168
- */
7169
- MaxRecords?: number;
7170
- /**
7171
- * @public
7172
- * <p>An optional parameter that specifies the starting point to return a set of response
7173
- * records. When the results of a <a>DescribeDefaultClusterParameters</a>
7174
- * request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in
7175
- * the <code>Marker</code> field of the response. You can retrieve the next set of response
7176
- * records by providing the returned marker value in the <code>Marker</code> parameter and
7177
- * retrying the request. </p>
7178
- */
7179
- Marker?: string;
7180
- }
7181
- /**
7182
- * @public
7183
- */
7184
- export interface DescribeDefaultClusterParametersResult {
7185
- /**
7186
- * @public
7187
- * <p>Describes the default cluster parameters for a parameter group family.</p>
7188
- */
7189
- DefaultClusterParameters?: DefaultClusterParameters;
7190
- }
7191
- /**
7192
- * @public
7193
- */
7194
- export interface DescribeEndpointAccessMessage {
7195
- /**
7196
- * @public
7197
- * <p>The cluster identifier associated with the described endpoint.</p>
7198
- */
7199
- ClusterIdentifier?: string;
7200
- /**
7201
- * @public
7202
- * <p>The Amazon Web Services account ID of the owner of the cluster.</p>
7203
- */
7204
- ResourceOwner?: string;
7205
- /**
7206
- * @public
7207
- * <p>The name of the endpoint to be described.</p>
7208
- */
7209
- EndpointName?: string;
7210
- /**
7211
- * @public
7212
- * <p>The virtual private cloud (VPC) identifier with access to the cluster.</p>
7213
- */
7214
- VpcId?: string;
7215
- /**
7216
- * @public
7217
- * <p>The maximum number of records to include in the response. If more records exist
7218
- * than the specified <code>MaxRecords</code> value, a pagination token called a <code>Marker</code> is
7219
- * included in the response so that the remaining results can be retrieved.</p>
7220
- */
7221
- MaxRecords?: number;
7222
- /**
7223
- * @public
7224
- * <p>An optional pagination token provided by a previous
7225
- * <code>DescribeEndpointAccess</code> request. If this parameter is specified, the
7226
- * response includes only records beyond the marker, up to the value specified by the
7227
- * <code>MaxRecords</code> parameter.</p>
7228
- */
7229
- Marker?: string;
7230
- }
7231
- /**
7232
- * @public
7233
- */
7234
- export interface EndpointAccessList {
7235
- /**
7236
- * @public
7237
- * <p>The list of endpoints with access to the cluster.</p>
7238
- */
7239
- EndpointAccessList?: EndpointAccess[];
7240
- /**
7241
- * @public
7242
- * <p>An optional pagination token provided by a previous
7243
- * <code>DescribeEndpointAccess</code> request. If this parameter is specified, the
7244
- * response includes only records beyond the marker, up to the value specified by the
7245
- * <code>MaxRecords</code> parameter.</p>
7246
- */
7247
- Marker?: string;
7248
- }
7249
- /**
7250
- * @public
7251
- */
7252
- export interface DescribeEndpointAuthorizationMessage {
7253
- /**
7254
- * @public
7255
- * <p>The cluster identifier of the cluster to access.</p>
7256
- */
7257
- ClusterIdentifier?: string;
7258
- /**
7259
- * @public
7260
- * <p>The Amazon Web Services account ID of either the cluster owner (grantor) or grantee.
7261
- * If <code>Grantee</code> parameter is true, then the <code>Account</code> value is of the grantor.</p>
7262
- */
7263
- Account?: string;
7264
- /**
7265
- * @public
7266
- * <p>Indicates whether to check authorization from a grantor or grantee point of view.
7267
- * If true, Amazon Redshift returns endpoint authorizations that you've been granted.
7268
- * If false (default), checks authorization from a grantor point of view.</p>
7269
- */
7270
- Grantee?: boolean;
7271
- /**
7272
- * @public
7273
- * <p>The maximum number of records to include in the response. If more records exist
7274
- * than the specified <code>MaxRecords</code> value, a pagination token called a <code>Marker</code> is
7275
- * included in the response so that the remaining results can be retrieved.</p>
7276
- */
7277
- MaxRecords?: number;
7278
- /**
7279
- * @public
7280
- * <p>An optional pagination token provided by a previous
7281
- * <code>DescribeEndpointAuthorization</code> request. If this parameter is specified, the
7282
- * response includes only records beyond the marker, up to the value specified by the
7283
- * <code>MaxRecords</code> parameter.</p>
7284
- */
7285
- Marker?: string;
7286
- }
7287
7202
  /**
7288
7203
  * @internal
7289
7204
  */