@aws-sdk/client-redshift 3.436.0 → 3.437.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/DeleteResourcePolicyCommand.js +51 -0
- package/dist-cjs/commands/DescribeInboundIntegrationsCommand.js +51 -0
- package/dist-cjs/commands/GetResourcePolicyCommand.js +51 -0
- package/dist-cjs/commands/PutResourcePolicyCommand.js +51 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +15 -2
- package/dist-cjs/models/models_1.js +36 -1
- package/dist-cjs/pagination/DescribeInboundIntegrationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_query.js +378 -5
- package/dist-es/Redshift.js +8 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +47 -0
- package/dist-es/commands/DescribeInboundIntegrationsCommand.js +47 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +47 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +47 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +12 -0
- package/dist-es/models/models_1.js +33 -0
- package/dist-es/pagination/DescribeInboundIntegrationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_query.js +366 -2
- package/dist-types/Redshift.d.ts +28 -0
- package/dist-types/RedshiftClient.d.ts +6 -2
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +77 -0
- package/dist-types/commands/DescribeInboundIntegrationsCommand.d.ts +100 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +85 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +89 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +22 -44
- package/dist-types/models/models_1.d.ts +254 -1
- package/dist-types/pagination/DescribeInboundIntegrationsPaginator.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/DeleteResourcePolicyCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DescribeInboundIntegrationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +10 -10
- package/dist-types/ts3.4/models/models_1.d.ts +72 -1
- package/dist-types/ts3.4/pagination/DescribeInboundIntegrationsPaginator.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 +4 -4
|
@@ -1,6 +1,50 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { ActionType, AquaConfiguration, AquaConfigurationStatus, AvailabilityZone, Cluster, ClusterSecurityGroup, ClusterSubnetGroup,
|
|
2
|
+
import { ActionType, AquaConfiguration, AquaConfigurationStatus, AvailabilityZone, Cluster, ClusterSecurityGroup, ClusterSubnetGroup, EventSubscription, HsmClientCertificate, HsmConfiguration, Parameter, RecurringCharge, ReservedNode, ReservedNodeExchangeStatus, ReservedNodeOfferingType, ScheduledAction, ScheduledActionType, Snapshot, SnapshotCopyGrant, SnapshotSchedule, Tag, UsageLimit, UsageLimitBreachAction, UsageLimitFeatureType } from "./models_0";
|
|
3
3
|
import { RedshiftServiceException as __BaseException } from "./RedshiftServiceException";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* <p>Describes event information.</p>
|
|
7
|
+
*/
|
|
8
|
+
export interface EventInfoMap {
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
* <p>The identifier of an Amazon Redshift event.</p>
|
|
12
|
+
*/
|
|
13
|
+
EventId?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
* <p>The category of an Amazon Redshift event.</p>
|
|
17
|
+
*/
|
|
18
|
+
EventCategories?: string[];
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
* <p>The description of an Amazon Redshift event.</p>
|
|
22
|
+
*/
|
|
23
|
+
EventDescription?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>The severity of the event.</p>
|
|
27
|
+
* <p>Values: ERROR, INFO</p>
|
|
28
|
+
*/
|
|
29
|
+
Severity?: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
* <p>Describes event categories.</p>
|
|
34
|
+
*/
|
|
35
|
+
export interface EventCategoriesMap {
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
* <p>The source type, such as cluster or cluster-snapshot, that the returned categories
|
|
39
|
+
* belong to.</p>
|
|
40
|
+
*/
|
|
41
|
+
SourceType?: string;
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
* <p>The events in the event category.</p>
|
|
45
|
+
*/
|
|
46
|
+
Events?: EventInfoMap[];
|
|
47
|
+
}
|
|
4
48
|
/**
|
|
5
49
|
* @public
|
|
6
50
|
* <p></p>
|
|
@@ -423,6 +467,142 @@ export interface HsmConfigurationMessage {
|
|
|
423
467
|
*/
|
|
424
468
|
HsmConfigurations?: HsmConfiguration[];
|
|
425
469
|
}
|
|
470
|
+
/**
|
|
471
|
+
* @public
|
|
472
|
+
*/
|
|
473
|
+
export interface DescribeInboundIntegrationsMessage {
|
|
474
|
+
/**
|
|
475
|
+
* @public
|
|
476
|
+
* <p>The Amazon Resource Name (ARN) of the inbound integration.</p>
|
|
477
|
+
*/
|
|
478
|
+
IntegrationArn?: string;
|
|
479
|
+
/**
|
|
480
|
+
* @public
|
|
481
|
+
* <p>The Amazon Resource Name (ARN) of the target of an inbound integration.</p>
|
|
482
|
+
*/
|
|
483
|
+
TargetArn?: string;
|
|
484
|
+
/**
|
|
485
|
+
* @public
|
|
486
|
+
* <p>The maximum number of response records to return in each call. If the number of
|
|
487
|
+
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
488
|
+
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
489
|
+
* set of records by retrying the command with the returned marker value. </p>
|
|
490
|
+
* <p>Default: <code>100</code>
|
|
491
|
+
* </p>
|
|
492
|
+
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
493
|
+
*/
|
|
494
|
+
MaxRecords?: number;
|
|
495
|
+
/**
|
|
496
|
+
* @public
|
|
497
|
+
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
498
|
+
* records. When the results of a <a>DescribeInboundIntegrations</a> request
|
|
499
|
+
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
500
|
+
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
501
|
+
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
502
|
+
* retrying the request. </p>
|
|
503
|
+
*/
|
|
504
|
+
Marker?: string;
|
|
505
|
+
}
|
|
506
|
+
/**
|
|
507
|
+
* @public
|
|
508
|
+
* <p>The error of an inbound integration.</p>
|
|
509
|
+
*/
|
|
510
|
+
export interface IntegrationError {
|
|
511
|
+
/**
|
|
512
|
+
* @public
|
|
513
|
+
* <p>The error code of an inbound integration error.</p>
|
|
514
|
+
*/
|
|
515
|
+
ErrorCode: string | undefined;
|
|
516
|
+
/**
|
|
517
|
+
* @public
|
|
518
|
+
* <p>The error message of an inbound integration error.</p>
|
|
519
|
+
*/
|
|
520
|
+
ErrorMessage?: string;
|
|
521
|
+
}
|
|
522
|
+
/**
|
|
523
|
+
* @public
|
|
524
|
+
* @enum
|
|
525
|
+
*/
|
|
526
|
+
export declare const ZeroETLIntegrationStatus: {
|
|
527
|
+
readonly ACTIVE: "active";
|
|
528
|
+
readonly CREATING: "creating";
|
|
529
|
+
readonly DELETING: "deleting";
|
|
530
|
+
readonly FAILED: "failed";
|
|
531
|
+
readonly MODIFYING: "modifying";
|
|
532
|
+
readonly NEEDS_ATTENTION: "needs_attention";
|
|
533
|
+
readonly SYNCING: "syncing";
|
|
534
|
+
};
|
|
535
|
+
/**
|
|
536
|
+
* @public
|
|
537
|
+
*/
|
|
538
|
+
export type ZeroETLIntegrationStatus = (typeof ZeroETLIntegrationStatus)[keyof typeof ZeroETLIntegrationStatus];
|
|
539
|
+
/**
|
|
540
|
+
* @public
|
|
541
|
+
* <p>The content of an inbound integration.</p>
|
|
542
|
+
*/
|
|
543
|
+
export interface InboundIntegration {
|
|
544
|
+
/**
|
|
545
|
+
* @public
|
|
546
|
+
* <p>The Amazon Resource Name (ARN) of an inbound integration.</p>
|
|
547
|
+
*/
|
|
548
|
+
IntegrationArn?: string;
|
|
549
|
+
/**
|
|
550
|
+
* @public
|
|
551
|
+
* <p>The Amazon Resource Name (ARN) of the source of an inbound integration.</p>
|
|
552
|
+
*/
|
|
553
|
+
SourceArn?: string;
|
|
554
|
+
/**
|
|
555
|
+
* @public
|
|
556
|
+
* <p>The Amazon Resource Name (ARN) of the target of an inbound integration.</p>
|
|
557
|
+
*/
|
|
558
|
+
TargetArn?: string;
|
|
559
|
+
/**
|
|
560
|
+
* @public
|
|
561
|
+
* <p>The status of an inbound integration.</p>
|
|
562
|
+
*/
|
|
563
|
+
Status?: ZeroETLIntegrationStatus;
|
|
564
|
+
/**
|
|
565
|
+
* @public
|
|
566
|
+
* <p>The outstanding errors of an inbound integration. Each item is an "IntegrationError". This is null if there is no error.</p>
|
|
567
|
+
*/
|
|
568
|
+
Errors?: IntegrationError[];
|
|
569
|
+
/**
|
|
570
|
+
* @public
|
|
571
|
+
* <p>The creation time of an inbound integration.</p>
|
|
572
|
+
*/
|
|
573
|
+
CreateTime?: Date;
|
|
574
|
+
}
|
|
575
|
+
/**
|
|
576
|
+
* @public
|
|
577
|
+
*/
|
|
578
|
+
export interface InboundIntegrationsMessage {
|
|
579
|
+
/**
|
|
580
|
+
* @public
|
|
581
|
+
* <p>A value that indicates the starting point for the next set of response records in a
|
|
582
|
+
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
583
|
+
* of records by providing this returned marker value in the <code>Marker</code> parameter
|
|
584
|
+
* and retrying the command. If the <code>Marker</code> field is empty, all response
|
|
585
|
+
* records have been retrieved for the request. </p>
|
|
586
|
+
*/
|
|
587
|
+
Marker?: string;
|
|
588
|
+
/**
|
|
589
|
+
* @public
|
|
590
|
+
* <p>A list of <a>InboundIntegration</a> instances.</p>
|
|
591
|
+
*/
|
|
592
|
+
InboundIntegrations?: InboundIntegration[];
|
|
593
|
+
}
|
|
594
|
+
/**
|
|
595
|
+
* @public
|
|
596
|
+
* <p>The integration can't be found.</p>
|
|
597
|
+
*/
|
|
598
|
+
export declare class IntegrationNotFoundFault extends __BaseException {
|
|
599
|
+
readonly name: "IntegrationNotFoundFault";
|
|
600
|
+
readonly $fault: "client";
|
|
601
|
+
/**
|
|
602
|
+
* @internal
|
|
603
|
+
*/
|
|
604
|
+
constructor(opts: __ExceptionOptionType<IntegrationNotFoundFault, __BaseException>);
|
|
605
|
+
}
|
|
426
606
|
/**
|
|
427
607
|
* @public
|
|
428
608
|
* <p></p>
|
|
@@ -2312,6 +2492,54 @@ export interface GetReservedNodeExchangeOfferingsOutputMessage {
|
|
|
2312
2492
|
*/
|
|
2313
2493
|
ReservedNodeOfferings?: ReservedNodeOffering[];
|
|
2314
2494
|
}
|
|
2495
|
+
/**
|
|
2496
|
+
* @public
|
|
2497
|
+
*/
|
|
2498
|
+
export interface GetResourcePolicyMessage {
|
|
2499
|
+
/**
|
|
2500
|
+
* @public
|
|
2501
|
+
* <p>The Amazon Resource Name (ARN) of the resource of which its resource policy is fetched.</p>
|
|
2502
|
+
*/
|
|
2503
|
+
ResourceArn: string | undefined;
|
|
2504
|
+
}
|
|
2505
|
+
/**
|
|
2506
|
+
* @public
|
|
2507
|
+
* <p>The policy that is attached to a resource.</p>
|
|
2508
|
+
*/
|
|
2509
|
+
export interface ResourcePolicy {
|
|
2510
|
+
/**
|
|
2511
|
+
* @public
|
|
2512
|
+
* <p>The resources that a policy is attached to.</p>
|
|
2513
|
+
*/
|
|
2514
|
+
ResourceArn?: string;
|
|
2515
|
+
/**
|
|
2516
|
+
* @public
|
|
2517
|
+
* <p>The content of a resource policy.</p>
|
|
2518
|
+
*/
|
|
2519
|
+
Policy?: string;
|
|
2520
|
+
}
|
|
2521
|
+
/**
|
|
2522
|
+
* @public
|
|
2523
|
+
*/
|
|
2524
|
+
export interface GetResourcePolicyResult {
|
|
2525
|
+
/**
|
|
2526
|
+
* @public
|
|
2527
|
+
* <p>The content of the resource policy.</p>
|
|
2528
|
+
*/
|
|
2529
|
+
ResourcePolicy?: ResourcePolicy;
|
|
2530
|
+
}
|
|
2531
|
+
/**
|
|
2532
|
+
* @public
|
|
2533
|
+
* <p>The resource policy isn't valid.</p>
|
|
2534
|
+
*/
|
|
2535
|
+
export declare class InvalidPolicyFault extends __BaseException {
|
|
2536
|
+
readonly name: "InvalidPolicyFault";
|
|
2537
|
+
readonly $fault: "client";
|
|
2538
|
+
/**
|
|
2539
|
+
* @internal
|
|
2540
|
+
*/
|
|
2541
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyFault, __BaseException>);
|
|
2542
|
+
}
|
|
2315
2543
|
/**
|
|
2316
2544
|
* @public
|
|
2317
2545
|
* <p>You have exceeded the allowed number of table restore requests. Wait for your
|
|
@@ -3315,6 +3543,31 @@ export declare class ReservedNodeQuotaExceededFault extends __BaseException {
|
|
|
3315
3543
|
*/
|
|
3316
3544
|
constructor(opts: __ExceptionOptionType<ReservedNodeQuotaExceededFault, __BaseException>);
|
|
3317
3545
|
}
|
|
3546
|
+
/**
|
|
3547
|
+
* @public
|
|
3548
|
+
*/
|
|
3549
|
+
export interface PutResourcePolicyMessage {
|
|
3550
|
+
/**
|
|
3551
|
+
* @public
|
|
3552
|
+
* <p>The Amazon Resource Name (ARN) of the resource of which its resource policy is updated.</p>
|
|
3553
|
+
*/
|
|
3554
|
+
ResourceArn: string | undefined;
|
|
3555
|
+
/**
|
|
3556
|
+
* @public
|
|
3557
|
+
* <p>The content of the resource policy being updated.</p>
|
|
3558
|
+
*/
|
|
3559
|
+
Policy: string | undefined;
|
|
3560
|
+
}
|
|
3561
|
+
/**
|
|
3562
|
+
* @public
|
|
3563
|
+
*/
|
|
3564
|
+
export interface PutResourcePolicyResult {
|
|
3565
|
+
/**
|
|
3566
|
+
* @public
|
|
3567
|
+
* <p>The content of the updated resource policy.</p>
|
|
3568
|
+
*/
|
|
3569
|
+
ResourcePolicy?: ResourcePolicy;
|
|
3570
|
+
}
|
|
3318
3571
|
/**
|
|
3319
3572
|
* @public
|
|
3320
3573
|
* <p></p>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { DescribeInboundIntegrationsCommandInput, DescribeInboundIntegrationsCommandOutput } from "../commands/DescribeInboundIntegrationsCommand";
|
|
3
|
+
import { RedshiftPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateDescribeInboundIntegrations(config: RedshiftPaginationConfiguration, input: DescribeInboundIntegrationsCommandInput, ...additionalArguments: any): Paginator<DescribeInboundIntegrationsCommandOutput>;
|
|
@@ -19,6 +19,7 @@ export * from "./DescribeEventSubscriptionsPaginator";
|
|
|
19
19
|
export * from "./DescribeEventsPaginator";
|
|
20
20
|
export * from "./DescribeHsmClientCertificatesPaginator";
|
|
21
21
|
export * from "./DescribeHsmConfigurationsPaginator";
|
|
22
|
+
export * from "./DescribeInboundIntegrationsPaginator";
|
|
22
23
|
export * from "./DescribeNodeConfigurationOptionsPaginator";
|
|
23
24
|
export * from "./DescribeOrderableClusterOptionsPaginator";
|
|
24
25
|
export * from "./DescribeReservedNodeExchangeStatusPaginator";
|
|
@@ -40,6 +40,7 @@ import { DeleteEventSubscriptionCommandInput, DeleteEventSubscriptionCommandOutp
|
|
|
40
40
|
import { DeleteHsmClientCertificateCommandInput, DeleteHsmClientCertificateCommandOutput } from "../commands/DeleteHsmClientCertificateCommand";
|
|
41
41
|
import { DeleteHsmConfigurationCommandInput, DeleteHsmConfigurationCommandOutput } from "../commands/DeleteHsmConfigurationCommand";
|
|
42
42
|
import { DeletePartnerCommandInput, DeletePartnerCommandOutput } from "../commands/DeletePartnerCommand";
|
|
43
|
+
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "../commands/DeleteResourcePolicyCommand";
|
|
43
44
|
import { DeleteScheduledActionCommandInput, DeleteScheduledActionCommandOutput } from "../commands/DeleteScheduledActionCommand";
|
|
44
45
|
import { DeleteSnapshotCopyGrantCommandInput, DeleteSnapshotCopyGrantCommandOutput } from "../commands/DeleteSnapshotCopyGrantCommand";
|
|
45
46
|
import { DeleteSnapshotScheduleCommandInput, DeleteSnapshotScheduleCommandOutput } from "../commands/DeleteSnapshotScheduleCommand";
|
|
@@ -68,6 +69,7 @@ import { DescribeEventsCommandInput, DescribeEventsCommandOutput } from "../comm
|
|
|
68
69
|
import { DescribeEventSubscriptionsCommandInput, DescribeEventSubscriptionsCommandOutput } from "../commands/DescribeEventSubscriptionsCommand";
|
|
69
70
|
import { DescribeHsmClientCertificatesCommandInput, DescribeHsmClientCertificatesCommandOutput } from "../commands/DescribeHsmClientCertificatesCommand";
|
|
70
71
|
import { DescribeHsmConfigurationsCommandInput, DescribeHsmConfigurationsCommandOutput } from "../commands/DescribeHsmConfigurationsCommand";
|
|
72
|
+
import { DescribeInboundIntegrationsCommandInput, DescribeInboundIntegrationsCommandOutput } from "../commands/DescribeInboundIntegrationsCommand";
|
|
71
73
|
import { DescribeLoggingStatusCommandInput, DescribeLoggingStatusCommandOutput } from "../commands/DescribeLoggingStatusCommand";
|
|
72
74
|
import { DescribeNodeConfigurationOptionsCommandInput, DescribeNodeConfigurationOptionsCommandOutput } from "../commands/DescribeNodeConfigurationOptionsCommand";
|
|
73
75
|
import { DescribeOrderableClusterOptionsCommandInput, DescribeOrderableClusterOptionsCommandOutput } from "../commands/DescribeOrderableClusterOptionsCommand";
|
|
@@ -92,6 +94,7 @@ import { GetClusterCredentialsCommandInput, GetClusterCredentialsCommandOutput }
|
|
|
92
94
|
import { GetClusterCredentialsWithIAMCommandInput, GetClusterCredentialsWithIAMCommandOutput } from "../commands/GetClusterCredentialsWithIAMCommand";
|
|
93
95
|
import { GetReservedNodeExchangeConfigurationOptionsCommandInput, GetReservedNodeExchangeConfigurationOptionsCommandOutput } from "../commands/GetReservedNodeExchangeConfigurationOptionsCommand";
|
|
94
96
|
import { GetReservedNodeExchangeOfferingsCommandInput, GetReservedNodeExchangeOfferingsCommandOutput } from "../commands/GetReservedNodeExchangeOfferingsCommand";
|
|
97
|
+
import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "../commands/GetResourcePolicyCommand";
|
|
95
98
|
import { ModifyAquaConfigurationCommandInput, ModifyAquaConfigurationCommandOutput } from "../commands/ModifyAquaConfigurationCommand";
|
|
96
99
|
import { ModifyAuthenticationProfileCommandInput, ModifyAuthenticationProfileCommandOutput } from "../commands/ModifyAuthenticationProfileCommand";
|
|
97
100
|
import { ModifyClusterCommandInput, ModifyClusterCommandOutput } from "../commands/ModifyClusterCommand";
|
|
@@ -111,6 +114,7 @@ import { ModifySnapshotScheduleCommandInput, ModifySnapshotScheduleCommandOutput
|
|
|
111
114
|
import { ModifyUsageLimitCommandInput, ModifyUsageLimitCommandOutput } from "../commands/ModifyUsageLimitCommand";
|
|
112
115
|
import { PauseClusterCommandInput, PauseClusterCommandOutput } from "../commands/PauseClusterCommand";
|
|
113
116
|
import { PurchaseReservedNodeOfferingCommandInput, PurchaseReservedNodeOfferingCommandOutput } from "../commands/PurchaseReservedNodeOfferingCommand";
|
|
117
|
+
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
|
|
114
118
|
import { RebootClusterCommandInput, RebootClusterCommandOutput } from "../commands/RebootClusterCommand";
|
|
115
119
|
import { RejectDataShareCommandInput, RejectDataShareCommandOutput } from "../commands/RejectDataShareCommand";
|
|
116
120
|
import { ResetClusterParameterGroupCommandInput, ResetClusterParameterGroupCommandOutput } from "../commands/ResetClusterParameterGroupCommand";
|
|
@@ -283,6 +287,10 @@ export declare const se_DeleteHsmConfigurationCommand: (input: DeleteHsmConfigur
|
|
|
283
287
|
* serializeAws_queryDeletePartnerCommand
|
|
284
288
|
*/
|
|
285
289
|
export declare const se_DeletePartnerCommand: (input: DeletePartnerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
290
|
+
/**
|
|
291
|
+
* serializeAws_queryDeleteResourcePolicyCommand
|
|
292
|
+
*/
|
|
293
|
+
export declare const se_DeleteResourcePolicyCommand: (input: DeleteResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
286
294
|
/**
|
|
287
295
|
* serializeAws_queryDeleteScheduledActionCommand
|
|
288
296
|
*/
|
|
@@ -395,6 +403,10 @@ export declare const se_DescribeHsmClientCertificatesCommand: (input: DescribeHs
|
|
|
395
403
|
* serializeAws_queryDescribeHsmConfigurationsCommand
|
|
396
404
|
*/
|
|
397
405
|
export declare const se_DescribeHsmConfigurationsCommand: (input: DescribeHsmConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
406
|
+
/**
|
|
407
|
+
* serializeAws_queryDescribeInboundIntegrationsCommand
|
|
408
|
+
*/
|
|
409
|
+
export declare const se_DescribeInboundIntegrationsCommand: (input: DescribeInboundIntegrationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
398
410
|
/**
|
|
399
411
|
* serializeAws_queryDescribeLoggingStatusCommand
|
|
400
412
|
*/
|
|
@@ -491,6 +503,10 @@ export declare const se_GetReservedNodeExchangeConfigurationOptionsCommand: (inp
|
|
|
491
503
|
* serializeAws_queryGetReservedNodeExchangeOfferingsCommand
|
|
492
504
|
*/
|
|
493
505
|
export declare const se_GetReservedNodeExchangeOfferingsCommand: (input: GetReservedNodeExchangeOfferingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
506
|
+
/**
|
|
507
|
+
* serializeAws_queryGetResourcePolicyCommand
|
|
508
|
+
*/
|
|
509
|
+
export declare const se_GetResourcePolicyCommand: (input: GetResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
494
510
|
/**
|
|
495
511
|
* serializeAws_queryModifyAquaConfigurationCommand
|
|
496
512
|
*/
|
|
@@ -567,6 +583,10 @@ export declare const se_PauseClusterCommand: (input: PauseClusterCommandInput, c
|
|
|
567
583
|
* serializeAws_queryPurchaseReservedNodeOfferingCommand
|
|
568
584
|
*/
|
|
569
585
|
export declare const se_PurchaseReservedNodeOfferingCommand: (input: PurchaseReservedNodeOfferingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
586
|
+
/**
|
|
587
|
+
* serializeAws_queryPutResourcePolicyCommand
|
|
588
|
+
*/
|
|
589
|
+
export declare const se_PutResourcePolicyCommand: (input: PutResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
570
590
|
/**
|
|
571
591
|
* serializeAws_queryRebootClusterCommand
|
|
572
592
|
*/
|
|
@@ -775,6 +795,10 @@ export declare const de_DeleteHsmConfigurationCommand: (output: __HttpResponse,
|
|
|
775
795
|
* deserializeAws_queryDeletePartnerCommand
|
|
776
796
|
*/
|
|
777
797
|
export declare const de_DeletePartnerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePartnerCommandOutput>;
|
|
798
|
+
/**
|
|
799
|
+
* deserializeAws_queryDeleteResourcePolicyCommand
|
|
800
|
+
*/
|
|
801
|
+
export declare const de_DeleteResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourcePolicyCommandOutput>;
|
|
778
802
|
/**
|
|
779
803
|
* deserializeAws_queryDeleteScheduledActionCommand
|
|
780
804
|
*/
|
|
@@ -887,6 +911,10 @@ export declare const de_DescribeHsmClientCertificatesCommand: (output: __HttpRes
|
|
|
887
911
|
* deserializeAws_queryDescribeHsmConfigurationsCommand
|
|
888
912
|
*/
|
|
889
913
|
export declare const de_DescribeHsmConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeHsmConfigurationsCommandOutput>;
|
|
914
|
+
/**
|
|
915
|
+
* deserializeAws_queryDescribeInboundIntegrationsCommand
|
|
916
|
+
*/
|
|
917
|
+
export declare const de_DescribeInboundIntegrationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeInboundIntegrationsCommandOutput>;
|
|
890
918
|
/**
|
|
891
919
|
* deserializeAws_queryDescribeLoggingStatusCommand
|
|
892
920
|
*/
|
|
@@ -983,6 +1011,10 @@ export declare const de_GetReservedNodeExchangeConfigurationOptionsCommand: (out
|
|
|
983
1011
|
* deserializeAws_queryGetReservedNodeExchangeOfferingsCommand
|
|
984
1012
|
*/
|
|
985
1013
|
export declare const de_GetReservedNodeExchangeOfferingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetReservedNodeExchangeOfferingsCommandOutput>;
|
|
1014
|
+
/**
|
|
1015
|
+
* deserializeAws_queryGetResourcePolicyCommand
|
|
1016
|
+
*/
|
|
1017
|
+
export declare const de_GetResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourcePolicyCommandOutput>;
|
|
986
1018
|
/**
|
|
987
1019
|
* deserializeAws_queryModifyAquaConfigurationCommand
|
|
988
1020
|
*/
|
|
@@ -1059,6 +1091,10 @@ export declare const de_PauseClusterCommand: (output: __HttpResponse, context: _
|
|
|
1059
1091
|
* deserializeAws_queryPurchaseReservedNodeOfferingCommand
|
|
1060
1092
|
*/
|
|
1061
1093
|
export declare const de_PurchaseReservedNodeOfferingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PurchaseReservedNodeOfferingCommandOutput>;
|
|
1094
|
+
/**
|
|
1095
|
+
* deserializeAws_queryPutResourcePolicyCommand
|
|
1096
|
+
*/
|
|
1097
|
+
export declare const de_PutResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePolicyCommandOutput>;
|
|
1062
1098
|
/**
|
|
1063
1099
|
* deserializeAws_queryRebootClusterCommand
|
|
1064
1100
|
*/
|
|
@@ -159,6 +159,10 @@ import {
|
|
|
159
159
|
DeletePartnerCommandInput,
|
|
160
160
|
DeletePartnerCommandOutput,
|
|
161
161
|
} from "./commands/DeletePartnerCommand";
|
|
162
|
+
import {
|
|
163
|
+
DeleteResourcePolicyCommandInput,
|
|
164
|
+
DeleteResourcePolicyCommandOutput,
|
|
165
|
+
} from "./commands/DeleteResourcePolicyCommand";
|
|
162
166
|
import {
|
|
163
167
|
DeleteScheduledActionCommandInput,
|
|
164
168
|
DeleteScheduledActionCommandOutput,
|
|
@@ -271,6 +275,10 @@ import {
|
|
|
271
275
|
DescribeHsmConfigurationsCommandInput,
|
|
272
276
|
DescribeHsmConfigurationsCommandOutput,
|
|
273
277
|
} from "./commands/DescribeHsmConfigurationsCommand";
|
|
278
|
+
import {
|
|
279
|
+
DescribeInboundIntegrationsCommandInput,
|
|
280
|
+
DescribeInboundIntegrationsCommandOutput,
|
|
281
|
+
} from "./commands/DescribeInboundIntegrationsCommand";
|
|
274
282
|
import {
|
|
275
283
|
DescribeLoggingStatusCommandInput,
|
|
276
284
|
DescribeLoggingStatusCommandOutput,
|
|
@@ -367,6 +375,10 @@ import {
|
|
|
367
375
|
GetReservedNodeExchangeOfferingsCommandInput,
|
|
368
376
|
GetReservedNodeExchangeOfferingsCommandOutput,
|
|
369
377
|
} from "./commands/GetReservedNodeExchangeOfferingsCommand";
|
|
378
|
+
import {
|
|
379
|
+
GetResourcePolicyCommandInput,
|
|
380
|
+
GetResourcePolicyCommandOutput,
|
|
381
|
+
} from "./commands/GetResourcePolicyCommand";
|
|
370
382
|
import {
|
|
371
383
|
ModifyAquaConfigurationCommandInput,
|
|
372
384
|
ModifyAquaConfigurationCommandOutput,
|
|
@@ -443,6 +455,10 @@ import {
|
|
|
443
455
|
PurchaseReservedNodeOfferingCommandInput,
|
|
444
456
|
PurchaseReservedNodeOfferingCommandOutput,
|
|
445
457
|
} from "./commands/PurchaseReservedNodeOfferingCommand";
|
|
458
|
+
import {
|
|
459
|
+
PutResourcePolicyCommandInput,
|
|
460
|
+
PutResourcePolicyCommandOutput,
|
|
461
|
+
} from "./commands/PutResourcePolicyCommand";
|
|
446
462
|
import {
|
|
447
463
|
RebootClusterCommandInput,
|
|
448
464
|
RebootClusterCommandOutput,
|
|
@@ -1019,6 +1035,19 @@ export interface Redshift {
|
|
|
1019
1035
|
options: __HttpHandlerOptions,
|
|
1020
1036
|
cb: (err: any, data?: DeletePartnerCommandOutput) => void
|
|
1021
1037
|
): void;
|
|
1038
|
+
deleteResourcePolicy(
|
|
1039
|
+
args: DeleteResourcePolicyCommandInput,
|
|
1040
|
+
options?: __HttpHandlerOptions
|
|
1041
|
+
): Promise<DeleteResourcePolicyCommandOutput>;
|
|
1042
|
+
deleteResourcePolicy(
|
|
1043
|
+
args: DeleteResourcePolicyCommandInput,
|
|
1044
|
+
cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
|
|
1045
|
+
): void;
|
|
1046
|
+
deleteResourcePolicy(
|
|
1047
|
+
args: DeleteResourcePolicyCommandInput,
|
|
1048
|
+
options: __HttpHandlerOptions,
|
|
1049
|
+
cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
|
|
1050
|
+
): void;
|
|
1022
1051
|
deleteScheduledAction(
|
|
1023
1052
|
args: DeleteScheduledActionCommandInput,
|
|
1024
1053
|
options?: __HttpHandlerOptions
|
|
@@ -1383,6 +1412,19 @@ export interface Redshift {
|
|
|
1383
1412
|
options: __HttpHandlerOptions,
|
|
1384
1413
|
cb: (err: any, data?: DescribeHsmConfigurationsCommandOutput) => void
|
|
1385
1414
|
): void;
|
|
1415
|
+
describeInboundIntegrations(
|
|
1416
|
+
args: DescribeInboundIntegrationsCommandInput,
|
|
1417
|
+
options?: __HttpHandlerOptions
|
|
1418
|
+
): Promise<DescribeInboundIntegrationsCommandOutput>;
|
|
1419
|
+
describeInboundIntegrations(
|
|
1420
|
+
args: DescribeInboundIntegrationsCommandInput,
|
|
1421
|
+
cb: (err: any, data?: DescribeInboundIntegrationsCommandOutput) => void
|
|
1422
|
+
): void;
|
|
1423
|
+
describeInboundIntegrations(
|
|
1424
|
+
args: DescribeInboundIntegrationsCommandInput,
|
|
1425
|
+
options: __HttpHandlerOptions,
|
|
1426
|
+
cb: (err: any, data?: DescribeInboundIntegrationsCommandOutput) => void
|
|
1427
|
+
): void;
|
|
1386
1428
|
describeLoggingStatus(
|
|
1387
1429
|
args: DescribeLoggingStatusCommandInput,
|
|
1388
1430
|
options?: __HttpHandlerOptions
|
|
@@ -1707,6 +1749,19 @@ export interface Redshift {
|
|
|
1707
1749
|
options: __HttpHandlerOptions,
|
|
1708
1750
|
cb: (err: any, data?: GetReservedNodeExchangeOfferingsCommandOutput) => void
|
|
1709
1751
|
): void;
|
|
1752
|
+
getResourcePolicy(
|
|
1753
|
+
args: GetResourcePolicyCommandInput,
|
|
1754
|
+
options?: __HttpHandlerOptions
|
|
1755
|
+
): Promise<GetResourcePolicyCommandOutput>;
|
|
1756
|
+
getResourcePolicy(
|
|
1757
|
+
args: GetResourcePolicyCommandInput,
|
|
1758
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
1759
|
+
): void;
|
|
1760
|
+
getResourcePolicy(
|
|
1761
|
+
args: GetResourcePolicyCommandInput,
|
|
1762
|
+
options: __HttpHandlerOptions,
|
|
1763
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
1764
|
+
): void;
|
|
1710
1765
|
modifyAquaConfiguration(
|
|
1711
1766
|
args: ModifyAquaConfigurationCommandInput,
|
|
1712
1767
|
options?: __HttpHandlerOptions
|
|
@@ -1960,6 +2015,19 @@ export interface Redshift {
|
|
|
1960
2015
|
options: __HttpHandlerOptions,
|
|
1961
2016
|
cb: (err: any, data?: PurchaseReservedNodeOfferingCommandOutput) => void
|
|
1962
2017
|
): void;
|
|
2018
|
+
putResourcePolicy(
|
|
2019
|
+
args: PutResourcePolicyCommandInput,
|
|
2020
|
+
options?: __HttpHandlerOptions
|
|
2021
|
+
): Promise<PutResourcePolicyCommandOutput>;
|
|
2022
|
+
putResourcePolicy(
|
|
2023
|
+
args: PutResourcePolicyCommandInput,
|
|
2024
|
+
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
|
|
2025
|
+
): void;
|
|
2026
|
+
putResourcePolicy(
|
|
2027
|
+
args: PutResourcePolicyCommandInput,
|
|
2028
|
+
options: __HttpHandlerOptions,
|
|
2029
|
+
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
|
|
2030
|
+
): void;
|
|
1963
2031
|
rebootCluster(
|
|
1964
2032
|
args: RebootClusterCommandInput,
|
|
1965
2033
|
options?: __HttpHandlerOptions
|
|
@@ -205,6 +205,10 @@ import {
|
|
|
205
205
|
DeletePartnerCommandInput,
|
|
206
206
|
DeletePartnerCommandOutput,
|
|
207
207
|
} from "./commands/DeletePartnerCommand";
|
|
208
|
+
import {
|
|
209
|
+
DeleteResourcePolicyCommandInput,
|
|
210
|
+
DeleteResourcePolicyCommandOutput,
|
|
211
|
+
} from "./commands/DeleteResourcePolicyCommand";
|
|
208
212
|
import {
|
|
209
213
|
DeleteScheduledActionCommandInput,
|
|
210
214
|
DeleteScheduledActionCommandOutput,
|
|
@@ -317,6 +321,10 @@ import {
|
|
|
317
321
|
DescribeHsmConfigurationsCommandInput,
|
|
318
322
|
DescribeHsmConfigurationsCommandOutput,
|
|
319
323
|
} from "./commands/DescribeHsmConfigurationsCommand";
|
|
324
|
+
import {
|
|
325
|
+
DescribeInboundIntegrationsCommandInput,
|
|
326
|
+
DescribeInboundIntegrationsCommandOutput,
|
|
327
|
+
} from "./commands/DescribeInboundIntegrationsCommand";
|
|
320
328
|
import {
|
|
321
329
|
DescribeLoggingStatusCommandInput,
|
|
322
330
|
DescribeLoggingStatusCommandOutput,
|
|
@@ -413,6 +421,10 @@ import {
|
|
|
413
421
|
GetReservedNodeExchangeOfferingsCommandInput,
|
|
414
422
|
GetReservedNodeExchangeOfferingsCommandOutput,
|
|
415
423
|
} from "./commands/GetReservedNodeExchangeOfferingsCommand";
|
|
424
|
+
import {
|
|
425
|
+
GetResourcePolicyCommandInput,
|
|
426
|
+
GetResourcePolicyCommandOutput,
|
|
427
|
+
} from "./commands/GetResourcePolicyCommand";
|
|
416
428
|
import {
|
|
417
429
|
ModifyAquaConfigurationCommandInput,
|
|
418
430
|
ModifyAquaConfigurationCommandOutput,
|
|
@@ -489,6 +501,10 @@ import {
|
|
|
489
501
|
PurchaseReservedNodeOfferingCommandInput,
|
|
490
502
|
PurchaseReservedNodeOfferingCommandOutput,
|
|
491
503
|
} from "./commands/PurchaseReservedNodeOfferingCommand";
|
|
504
|
+
import {
|
|
505
|
+
PutResourcePolicyCommandInput,
|
|
506
|
+
PutResourcePolicyCommandOutput,
|
|
507
|
+
} from "./commands/PutResourcePolicyCommand";
|
|
492
508
|
import {
|
|
493
509
|
RebootClusterCommandInput,
|
|
494
510
|
RebootClusterCommandOutput,
|
|
@@ -585,6 +601,7 @@ export type ServiceInputTypes =
|
|
|
585
601
|
| DeleteHsmClientCertificateCommandInput
|
|
586
602
|
| DeleteHsmConfigurationCommandInput
|
|
587
603
|
| DeletePartnerCommandInput
|
|
604
|
+
| DeleteResourcePolicyCommandInput
|
|
588
605
|
| DeleteScheduledActionCommandInput
|
|
589
606
|
| DeleteSnapshotCopyGrantCommandInput
|
|
590
607
|
| DeleteSnapshotScheduleCommandInput
|
|
@@ -613,6 +630,7 @@ export type ServiceInputTypes =
|
|
|
613
630
|
| DescribeEventsCommandInput
|
|
614
631
|
| DescribeHsmClientCertificatesCommandInput
|
|
615
632
|
| DescribeHsmConfigurationsCommandInput
|
|
633
|
+
| DescribeInboundIntegrationsCommandInput
|
|
616
634
|
| DescribeLoggingStatusCommandInput
|
|
617
635
|
| DescribeNodeConfigurationOptionsCommandInput
|
|
618
636
|
| DescribeOrderableClusterOptionsCommandInput
|
|
@@ -637,6 +655,7 @@ export type ServiceInputTypes =
|
|
|
637
655
|
| GetClusterCredentialsWithIAMCommandInput
|
|
638
656
|
| GetReservedNodeExchangeConfigurationOptionsCommandInput
|
|
639
657
|
| GetReservedNodeExchangeOfferingsCommandInput
|
|
658
|
+
| GetResourcePolicyCommandInput
|
|
640
659
|
| ModifyAquaConfigurationCommandInput
|
|
641
660
|
| ModifyAuthenticationProfileCommandInput
|
|
642
661
|
| ModifyClusterCommandInput
|
|
@@ -656,6 +675,7 @@ export type ServiceInputTypes =
|
|
|
656
675
|
| ModifyUsageLimitCommandInput
|
|
657
676
|
| PauseClusterCommandInput
|
|
658
677
|
| PurchaseReservedNodeOfferingCommandInput
|
|
678
|
+
| PutResourcePolicyCommandInput
|
|
659
679
|
| RebootClusterCommandInput
|
|
660
680
|
| RejectDataShareCommandInput
|
|
661
681
|
| ResetClusterParameterGroupCommandInput
|
|
@@ -709,6 +729,7 @@ export type ServiceOutputTypes =
|
|
|
709
729
|
| DeleteHsmClientCertificateCommandOutput
|
|
710
730
|
| DeleteHsmConfigurationCommandOutput
|
|
711
731
|
| DeletePartnerCommandOutput
|
|
732
|
+
| DeleteResourcePolicyCommandOutput
|
|
712
733
|
| DeleteScheduledActionCommandOutput
|
|
713
734
|
| DeleteSnapshotCopyGrantCommandOutput
|
|
714
735
|
| DeleteSnapshotScheduleCommandOutput
|
|
@@ -737,6 +758,7 @@ export type ServiceOutputTypes =
|
|
|
737
758
|
| DescribeEventsCommandOutput
|
|
738
759
|
| DescribeHsmClientCertificatesCommandOutput
|
|
739
760
|
| DescribeHsmConfigurationsCommandOutput
|
|
761
|
+
| DescribeInboundIntegrationsCommandOutput
|
|
740
762
|
| DescribeLoggingStatusCommandOutput
|
|
741
763
|
| DescribeNodeConfigurationOptionsCommandOutput
|
|
742
764
|
| DescribeOrderableClusterOptionsCommandOutput
|
|
@@ -761,6 +783,7 @@ export type ServiceOutputTypes =
|
|
|
761
783
|
| GetClusterCredentialsWithIAMCommandOutput
|
|
762
784
|
| GetReservedNodeExchangeConfigurationOptionsCommandOutput
|
|
763
785
|
| GetReservedNodeExchangeOfferingsCommandOutput
|
|
786
|
+
| GetResourcePolicyCommandOutput
|
|
764
787
|
| ModifyAquaConfigurationCommandOutput
|
|
765
788
|
| ModifyAuthenticationProfileCommandOutput
|
|
766
789
|
| ModifyClusterCommandOutput
|
|
@@ -780,6 +803,7 @@ export type ServiceOutputTypes =
|
|
|
780
803
|
| ModifyUsageLimitCommandOutput
|
|
781
804
|
| PauseClusterCommandOutput
|
|
782
805
|
| PurchaseReservedNodeOfferingCommandOutput
|
|
806
|
+
| PutResourcePolicyCommandOutput
|
|
783
807
|
| RebootClusterCommandOutput
|
|
784
808
|
| RejectDataShareCommandOutput
|
|
785
809
|
| ResetClusterParameterGroupCommandOutput
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { DeleteResourcePolicyMessage } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
RedshiftClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../RedshiftClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeleteResourcePolicyCommandInput
|
|
17
|
+
extends DeleteResourcePolicyMessage {}
|
|
18
|
+
export interface DeleteResourcePolicyCommandOutput extends __MetadataBearer {}
|
|
19
|
+
export declare class DeleteResourcePolicyCommand extends $Command<
|
|
20
|
+
DeleteResourcePolicyCommandInput,
|
|
21
|
+
DeleteResourcePolicyCommandOutput,
|
|
22
|
+
RedshiftClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteResourcePolicyCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteResourcePolicyCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: RedshiftClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeleteResourcePolicyCommandInput,
|
|
33
|
+
DeleteResourcePolicyCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|