@aws-sdk/client-datazone 3.864.0 → 3.867.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 +48 -0
- package/dist-cjs/index.js +496 -77
- package/dist-es/DataZone.js +12 -0
- package/dist-es/commands/CreateAccountPoolCommand.js +23 -0
- package/dist-es/commands/CreateRuleCommand.js +1 -1
- package/dist-es/commands/DeleteAccountPoolCommand.js +22 -0
- package/dist-es/commands/GetAccountPoolCommand.js +23 -0
- package/dist-es/commands/ListAccountPoolsCommand.js +23 -0
- package/dist-es/commands/ListAccountsInAccountPoolCommand.js +23 -0
- package/dist-es/commands/PostLineageEventCommand.js +1 -1
- package/dist-es/commands/RejectSubscriptionRequestCommand.js +1 -1
- package/dist-es/commands/RevokeSubscriptionCommand.js +1 -1
- package/dist-es/commands/UpdateAccountPoolCommand.js +23 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +41 -36
- package/dist-es/models/models_1.js +59 -29
- package/dist-es/models/models_2.js +40 -1
- package/dist-es/pagination/ListAccountPoolsPaginator.js +4 -0
- package/dist-es/pagination/ListAccountsInAccountPoolPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +197 -0
- package/dist-types/DataZone.d.ts +42 -0
- package/dist-types/DataZoneClient.d.ts +8 -2
- package/dist-types/commands/CreateAccountPoolCommand.d.ts +138 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +10 -0
- package/dist-types/commands/CreateProjectProfileCommand.d.ts +6 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAccountPoolCommand.d.ts +89 -0
- package/dist-types/commands/GetAccountPoolCommand.d.ts +115 -0
- package/dist-types/commands/GetProjectCommand.d.ts +5 -0
- package/dist-types/commands/GetProjectProfileCommand.d.ts +3 -0
- package/dist-types/commands/ListAccountPoolsCommand.d.ts +103 -0
- package/dist-types/commands/ListAccountsInAccountPoolCommand.d.ts +102 -0
- package/dist-types/commands/PostLineageEventCommand.d.ts +2 -1
- package/dist-types/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
- package/dist-types/commands/RejectPredictionsCommand.d.ts +1 -1
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/commands/RemoveEntityOwnerCommand.d.ts +1 -1
- package/dist-types/commands/RemovePolicyGrantCommand.d.ts +1 -1
- package/dist-types/commands/RevokeSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAccountPoolCommand.d.ts +139 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +10 -0
- package/dist-types/commands/UpdateProjectProfileCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +289 -235
- package/dist-types/models/models_1.d.ts +511 -515
- package/dist-types/models/models_2.d.ts +582 -2
- package/dist-types/pagination/ListAccountPoolsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAccountsInAccountPoolPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/DataZone.d.ts +102 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateAccountPoolCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAccountPoolCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAccountPoolCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAccountPoolsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListAccountsInAccountPoolCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PostLineageEventCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RejectPredictionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemoveEntityOwnerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemovePolicyGrantCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAccountPoolCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -84
- package/dist-types/ts3.4/models/models_1.d.ts +155 -123
- package/dist-types/ts3.4/models/models_2.d.ts +156 -3
- package/dist-types/ts3.4/pagination/ListAccountPoolsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAccountsInAccountPoolPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +1 -1
|
@@ -625,6 +625,142 @@ export interface AcceptSubscriptionRequestOutput {
|
|
|
625
625
|
*/
|
|
626
626
|
metadataForms?: FormOutput[] | undefined;
|
|
627
627
|
}
|
|
628
|
+
/**
|
|
629
|
+
* <p>The account information within an account pool.</p>
|
|
630
|
+
* @public
|
|
631
|
+
*/
|
|
632
|
+
export interface AccountInfo {
|
|
633
|
+
/**
|
|
634
|
+
* <p>The account ID.</p>
|
|
635
|
+
* @public
|
|
636
|
+
*/
|
|
637
|
+
awsAccountId: string | undefined;
|
|
638
|
+
/**
|
|
639
|
+
* <p>The regions supported for an account within an account pool. </p>
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
642
|
+
supportedRegions: string[] | undefined;
|
|
643
|
+
/**
|
|
644
|
+
* <p>The account name.</p>
|
|
645
|
+
* @public
|
|
646
|
+
*/
|
|
647
|
+
awsAccountName?: string | undefined;
|
|
648
|
+
}
|
|
649
|
+
/**
|
|
650
|
+
* @public
|
|
651
|
+
* @enum
|
|
652
|
+
*/
|
|
653
|
+
export declare const ResolutionStrategy: {
|
|
654
|
+
readonly MANUAL: "MANUAL";
|
|
655
|
+
};
|
|
656
|
+
/**
|
|
657
|
+
* @public
|
|
658
|
+
*/
|
|
659
|
+
export type ResolutionStrategy = (typeof ResolutionStrategy)[keyof typeof ResolutionStrategy];
|
|
660
|
+
/**
|
|
661
|
+
* <p>The summary of the account pool.</p>
|
|
662
|
+
* @public
|
|
663
|
+
*/
|
|
664
|
+
export interface AccountPoolSummary {
|
|
665
|
+
/**
|
|
666
|
+
* <p>The ID of the domain.</p>
|
|
667
|
+
* @public
|
|
668
|
+
*/
|
|
669
|
+
domainId?: string | undefined;
|
|
670
|
+
/**
|
|
671
|
+
* <p>The ID of the account pool.</p>
|
|
672
|
+
* @public
|
|
673
|
+
*/
|
|
674
|
+
id?: string | undefined;
|
|
675
|
+
/**
|
|
676
|
+
* <p>The name of the account pool.</p>
|
|
677
|
+
* @public
|
|
678
|
+
*/
|
|
679
|
+
name?: string | undefined;
|
|
680
|
+
/**
|
|
681
|
+
* <p>The mechanism used to resolve the account selection from the account pool.</p>
|
|
682
|
+
* @public
|
|
683
|
+
*/
|
|
684
|
+
resolutionStrategy?: ResolutionStrategy | undefined;
|
|
685
|
+
/**
|
|
686
|
+
* <p>The ID of the domain unit.</p>
|
|
687
|
+
* @public
|
|
688
|
+
*/
|
|
689
|
+
domainUnitId?: string | undefined;
|
|
690
|
+
/**
|
|
691
|
+
* <p>The user who created the account pool.</p>
|
|
692
|
+
* @public
|
|
693
|
+
*/
|
|
694
|
+
createdBy?: string | undefined;
|
|
695
|
+
/**
|
|
696
|
+
* <p>The user who updated the account pool.</p>
|
|
697
|
+
* @public
|
|
698
|
+
*/
|
|
699
|
+
updatedBy?: string | undefined;
|
|
700
|
+
}
|
|
701
|
+
/**
|
|
702
|
+
* <p>The custom Amazon Web Services Lambda handler within an account pool.</p>
|
|
703
|
+
* @public
|
|
704
|
+
*/
|
|
705
|
+
export interface CustomAccountPoolHandler {
|
|
706
|
+
/**
|
|
707
|
+
* <p>The ARN of the Amazon Web Services Lambda function for the custom Amazon Web Services
|
|
708
|
+
* Lambda handler.</p>
|
|
709
|
+
* @public
|
|
710
|
+
*/
|
|
711
|
+
lambdaFunctionArn: string | undefined;
|
|
712
|
+
/**
|
|
713
|
+
* <p>The ARN of the IAM role that enables Amazon SageMaker Unified Studio to invoke the
|
|
714
|
+
* Amazon Web Services Lambda funtion if the account source is the custom account pool
|
|
715
|
+
* handler.</p>
|
|
716
|
+
* @public
|
|
717
|
+
*/
|
|
718
|
+
lambdaExecutionRoleArn?: string | undefined;
|
|
719
|
+
}
|
|
720
|
+
/**
|
|
721
|
+
* <p>The source of accounts for the account pool. In the current release, it's either a
|
|
722
|
+
* static list of accounts provided by the customer or a custom Amazon Web Services Lambda
|
|
723
|
+
* handler. </p>
|
|
724
|
+
* @public
|
|
725
|
+
*/
|
|
726
|
+
export type AccountSource = AccountSource.AccountsMember | AccountSource.CustomAccountPoolHandlerMember | AccountSource.$UnknownMember;
|
|
727
|
+
/**
|
|
728
|
+
* @public
|
|
729
|
+
*/
|
|
730
|
+
export declare namespace AccountSource {
|
|
731
|
+
/**
|
|
732
|
+
* <p>The static list of accounts within an account pool.</p>
|
|
733
|
+
* @public
|
|
734
|
+
*/
|
|
735
|
+
interface AccountsMember {
|
|
736
|
+
accounts: AccountInfo[];
|
|
737
|
+
customAccountPoolHandler?: never;
|
|
738
|
+
$unknown?: never;
|
|
739
|
+
}
|
|
740
|
+
/**
|
|
741
|
+
* <p>The custom Amazon Web Services Lambda handler within an account pool.</p>
|
|
742
|
+
* @public
|
|
743
|
+
*/
|
|
744
|
+
interface CustomAccountPoolHandlerMember {
|
|
745
|
+
accounts?: never;
|
|
746
|
+
customAccountPoolHandler: CustomAccountPoolHandler;
|
|
747
|
+
$unknown?: never;
|
|
748
|
+
}
|
|
749
|
+
/**
|
|
750
|
+
* @public
|
|
751
|
+
*/
|
|
752
|
+
interface $UnknownMember {
|
|
753
|
+
accounts?: never;
|
|
754
|
+
customAccountPoolHandler?: never;
|
|
755
|
+
$unknown: [string, any];
|
|
756
|
+
}
|
|
757
|
+
interface Visitor<T> {
|
|
758
|
+
accounts: (value: AccountInfo[]) => T;
|
|
759
|
+
customAccountPoolHandler: (value: CustomAccountPoolHandler) => T;
|
|
760
|
+
_: (name: string, value: any) => T;
|
|
761
|
+
}
|
|
762
|
+
const visit: <T>(value: AccountSource, visitor: Visitor<T>) => T;
|
|
763
|
+
}
|
|
628
764
|
/**
|
|
629
765
|
* <p>The parameters of the console link specified as part of the environment action.</p>
|
|
630
766
|
* @public
|
|
@@ -2174,9 +2310,10 @@ export interface GetAssetInput {
|
|
|
2174
2310
|
domainIdentifier: string | undefined;
|
|
2175
2311
|
/**
|
|
2176
2312
|
* <p>The ID of the Amazon DataZone asset.</p>
|
|
2177
|
-
* <p>This parameter supports either the value of <code>assetId</code> or
|
|
2178
|
-
*
|
|
2179
|
-
*
|
|
2313
|
+
* <p>This parameter supports either the value of <code>assetId</code> or
|
|
2314
|
+
* <code>externalIdentifier</code> as input. If you are passing the value of
|
|
2315
|
+
* <code>externalIdentifier</code>, you must prefix this value with
|
|
2316
|
+
* <code>externalIdentifer%2F</code>.</p>
|
|
2180
2317
|
* @public
|
|
2181
2318
|
*/
|
|
2182
2319
|
identifier: string | undefined;
|
|
@@ -5615,6 +5752,100 @@ export interface ConnectionSummary {
|
|
|
5615
5752
|
*/
|
|
5616
5753
|
type: ConnectionType | undefined;
|
|
5617
5754
|
}
|
|
5755
|
+
/**
|
|
5756
|
+
* @public
|
|
5757
|
+
*/
|
|
5758
|
+
export interface CreateAccountPoolInput {
|
|
5759
|
+
/**
|
|
5760
|
+
* <p>The ID of the domain where the account pool is created.</p>
|
|
5761
|
+
* @public
|
|
5762
|
+
*/
|
|
5763
|
+
domainIdentifier: string | undefined;
|
|
5764
|
+
/**
|
|
5765
|
+
* <p>The name of the account pool.</p>
|
|
5766
|
+
* @public
|
|
5767
|
+
*/
|
|
5768
|
+
name: string | undefined;
|
|
5769
|
+
/**
|
|
5770
|
+
* <p>The description of the account pool.</p>
|
|
5771
|
+
* @public
|
|
5772
|
+
*/
|
|
5773
|
+
description?: string | undefined;
|
|
5774
|
+
/**
|
|
5775
|
+
* <p>The mechanism used to resolve the account selection from the account pool.</p>
|
|
5776
|
+
* @public
|
|
5777
|
+
*/
|
|
5778
|
+
resolutionStrategy: ResolutionStrategy | undefined;
|
|
5779
|
+
/**
|
|
5780
|
+
* <p>The source of accounts for the account pool. In the current release, it's either a
|
|
5781
|
+
* static list of accounts provided by the customer or a custom Amazon Web Services Lambda
|
|
5782
|
+
* handler. </p>
|
|
5783
|
+
* @public
|
|
5784
|
+
*/
|
|
5785
|
+
accountSource: AccountSource | undefined;
|
|
5786
|
+
}
|
|
5787
|
+
/**
|
|
5788
|
+
* @public
|
|
5789
|
+
*/
|
|
5790
|
+
export interface CreateAccountPoolOutput {
|
|
5791
|
+
/**
|
|
5792
|
+
* <p>The ID of the domain where the account pool is created.</p>
|
|
5793
|
+
* @public
|
|
5794
|
+
*/
|
|
5795
|
+
domainId?: string | undefined;
|
|
5796
|
+
/**
|
|
5797
|
+
* <p>The name of the account pool.</p>
|
|
5798
|
+
* @public
|
|
5799
|
+
*/
|
|
5800
|
+
name?: string | undefined;
|
|
5801
|
+
/**
|
|
5802
|
+
* <p>The ID of the account pool.</p>
|
|
5803
|
+
* @public
|
|
5804
|
+
*/
|
|
5805
|
+
id?: string | undefined;
|
|
5806
|
+
/**
|
|
5807
|
+
* <p>The description of the account pool.</p>
|
|
5808
|
+
* @public
|
|
5809
|
+
*/
|
|
5810
|
+
description?: string | undefined;
|
|
5811
|
+
/**
|
|
5812
|
+
* <p>The mechanism used to resolve the account selection from the account pool.</p>
|
|
5813
|
+
* @public
|
|
5814
|
+
*/
|
|
5815
|
+
resolutionStrategy?: ResolutionStrategy | undefined;
|
|
5816
|
+
/**
|
|
5817
|
+
* <p>The source of accounts for the account pool. In the current release, it's either a
|
|
5818
|
+
* static list of accounts provided by the customer or a custom Amazon Web Services Lambda
|
|
5819
|
+
* handler. </p>
|
|
5820
|
+
* @public
|
|
5821
|
+
*/
|
|
5822
|
+
accountSource: AccountSource | undefined;
|
|
5823
|
+
/**
|
|
5824
|
+
* <p>The user who created the account pool.</p>
|
|
5825
|
+
* @public
|
|
5826
|
+
*/
|
|
5827
|
+
createdBy: string | undefined;
|
|
5828
|
+
/**
|
|
5829
|
+
* <p>The timestamp at which the account pool was created.</p>
|
|
5830
|
+
* @public
|
|
5831
|
+
*/
|
|
5832
|
+
createdAt?: Date | undefined;
|
|
5833
|
+
/**
|
|
5834
|
+
* <p>The timestamp at which the account pool was last updated.</p>
|
|
5835
|
+
* @public
|
|
5836
|
+
*/
|
|
5837
|
+
lastUpdatedAt?: Date | undefined;
|
|
5838
|
+
/**
|
|
5839
|
+
* <p>The user who last updated the account pool.</p>
|
|
5840
|
+
* @public
|
|
5841
|
+
*/
|
|
5842
|
+
updatedBy?: string | undefined;
|
|
5843
|
+
/**
|
|
5844
|
+
* <p>The ID of the domain where the account pool is created.</p>
|
|
5845
|
+
* @public
|
|
5846
|
+
*/
|
|
5847
|
+
domainUnitId?: string | undefined;
|
|
5848
|
+
}
|
|
5618
5849
|
/**
|
|
5619
5850
|
* @public
|
|
5620
5851
|
*/
|
|
@@ -8167,6 +8398,28 @@ export interface CreateListingChangeSetOutput {
|
|
|
8167
8398
|
*/
|
|
8168
8399
|
status: ListingStatus | undefined;
|
|
8169
8400
|
}
|
|
8401
|
+
/**
|
|
8402
|
+
* <p>Specifies the account/Region that is to be used during project creation for a particular
|
|
8403
|
+
* blueprint.</p>
|
|
8404
|
+
* @public
|
|
8405
|
+
*/
|
|
8406
|
+
export interface EnvironmentResolvedAccount {
|
|
8407
|
+
/**
|
|
8408
|
+
* <p>The ID of the resolved account.</p>
|
|
8409
|
+
* @public
|
|
8410
|
+
*/
|
|
8411
|
+
awsAccountId: string | undefined;
|
|
8412
|
+
/**
|
|
8413
|
+
* <p>The name of the resolved Region.</p>
|
|
8414
|
+
* @public
|
|
8415
|
+
*/
|
|
8416
|
+
regionName: string | undefined;
|
|
8417
|
+
/**
|
|
8418
|
+
* <p>The ID of the account pool.</p>
|
|
8419
|
+
* @public
|
|
8420
|
+
*/
|
|
8421
|
+
sourceAccountPoolId?: string | undefined;
|
|
8422
|
+
}
|
|
8170
8423
|
/**
|
|
8171
8424
|
* <p>The environment configuration user parameters.</p>
|
|
8172
8425
|
* @public
|
|
@@ -8177,6 +8430,12 @@ export interface EnvironmentConfigurationUserParameter {
|
|
|
8177
8430
|
* @public
|
|
8178
8431
|
*/
|
|
8179
8432
|
environmentId?: string | undefined;
|
|
8433
|
+
/**
|
|
8434
|
+
* <p>Specifies the account/Region that is to be used during project creation for a particular
|
|
8435
|
+
* blueprint.</p>
|
|
8436
|
+
* @public
|
|
8437
|
+
*/
|
|
8438
|
+
environmentResolvedAccount?: EnvironmentResolvedAccount | undefined;
|
|
8180
8439
|
/**
|
|
8181
8440
|
* <p>The environment configuration name.</p>
|
|
8182
8441
|
* @public
|
|
@@ -8590,12 +8849,17 @@ export interface EnvironmentConfiguration {
|
|
|
8590
8849
|
* <p>The Amazon Web Services account of the environment.</p>
|
|
8591
8850
|
* @public
|
|
8592
8851
|
*/
|
|
8593
|
-
awsAccount
|
|
8852
|
+
awsAccount?: AwsAccount | undefined;
|
|
8853
|
+
/**
|
|
8854
|
+
* <p>The account pools used by a custom project profile.</p>
|
|
8855
|
+
* @public
|
|
8856
|
+
*/
|
|
8857
|
+
accountPools?: string[] | undefined;
|
|
8594
8858
|
/**
|
|
8595
8859
|
* <p>The Amazon Web Services Region of the environment.</p>
|
|
8596
8860
|
* @public
|
|
8597
8861
|
*/
|
|
8598
|
-
awsRegion
|
|
8862
|
+
awsRegion?: Region | undefined;
|
|
8599
8863
|
/**
|
|
8600
8864
|
* <p>The deployment order of the environment.</p>
|
|
8601
8865
|
* @public
|
|
@@ -8810,228 +9074,6 @@ export interface RuleScope {
|
|
|
8810
9074
|
*/
|
|
8811
9075
|
project?: ProjectsForRule | undefined;
|
|
8812
9076
|
}
|
|
8813
|
-
/**
|
|
8814
|
-
* <p>The target for the domain unit.</p>
|
|
8815
|
-
* @public
|
|
8816
|
-
*/
|
|
8817
|
-
export interface DomainUnitTarget {
|
|
8818
|
-
/**
|
|
8819
|
-
* <p>The ID of the domain unit.</p>
|
|
8820
|
-
* @public
|
|
8821
|
-
*/
|
|
8822
|
-
domainUnitId: string | undefined;
|
|
8823
|
-
/**
|
|
8824
|
-
* <p>Specifies whether to apply a rule to the child domain units.</p>
|
|
8825
|
-
* @public
|
|
8826
|
-
*/
|
|
8827
|
-
includeChildDomainUnits?: boolean | undefined;
|
|
8828
|
-
}
|
|
8829
|
-
/**
|
|
8830
|
-
* <p>The target of the rule.</p>
|
|
8831
|
-
* @public
|
|
8832
|
-
*/
|
|
8833
|
-
export type RuleTarget = RuleTarget.DomainUnitTargetMember | RuleTarget.$UnknownMember;
|
|
8834
|
-
/**
|
|
8835
|
-
* @public
|
|
8836
|
-
*/
|
|
8837
|
-
export declare namespace RuleTarget {
|
|
8838
|
-
/**
|
|
8839
|
-
* <p>The ID of the domain unit.</p>
|
|
8840
|
-
* @public
|
|
8841
|
-
*/
|
|
8842
|
-
interface DomainUnitTargetMember {
|
|
8843
|
-
domainUnitTarget: DomainUnitTarget;
|
|
8844
|
-
$unknown?: never;
|
|
8845
|
-
}
|
|
8846
|
-
/**
|
|
8847
|
-
* @public
|
|
8848
|
-
*/
|
|
8849
|
-
interface $UnknownMember {
|
|
8850
|
-
domainUnitTarget?: never;
|
|
8851
|
-
$unknown: [string, any];
|
|
8852
|
-
}
|
|
8853
|
-
interface Visitor<T> {
|
|
8854
|
-
domainUnitTarget: (value: DomainUnitTarget) => T;
|
|
8855
|
-
_: (name: string, value: any) => T;
|
|
8856
|
-
}
|
|
8857
|
-
const visit: <T>(value: RuleTarget, visitor: Visitor<T>) => T;
|
|
8858
|
-
}
|
|
8859
|
-
/**
|
|
8860
|
-
* @public
|
|
8861
|
-
*/
|
|
8862
|
-
export interface CreateRuleInput {
|
|
8863
|
-
/**
|
|
8864
|
-
* <p>The ID of the domain where the rule is created.</p>
|
|
8865
|
-
* @public
|
|
8866
|
-
*/
|
|
8867
|
-
domainIdentifier: string | undefined;
|
|
8868
|
-
/**
|
|
8869
|
-
* <p>The name of the rule.</p>
|
|
8870
|
-
* @public
|
|
8871
|
-
*/
|
|
8872
|
-
name: string | undefined;
|
|
8873
|
-
/**
|
|
8874
|
-
* <p>The target of the rule.</p>
|
|
8875
|
-
* @public
|
|
8876
|
-
*/
|
|
8877
|
-
target: RuleTarget | undefined;
|
|
8878
|
-
/**
|
|
8879
|
-
* <p>The action of the rule.</p>
|
|
8880
|
-
* @public
|
|
8881
|
-
*/
|
|
8882
|
-
action: RuleAction | undefined;
|
|
8883
|
-
/**
|
|
8884
|
-
* <p>The scope of the rule.</p>
|
|
8885
|
-
* @public
|
|
8886
|
-
*/
|
|
8887
|
-
scope: RuleScope | undefined;
|
|
8888
|
-
/**
|
|
8889
|
-
* <p>The detail of the rule.</p>
|
|
8890
|
-
* @public
|
|
8891
|
-
*/
|
|
8892
|
-
detail: RuleDetail | undefined;
|
|
8893
|
-
/**
|
|
8894
|
-
* <p>The description of the rule.</p>
|
|
8895
|
-
* @public
|
|
8896
|
-
*/
|
|
8897
|
-
description?: string | undefined;
|
|
8898
|
-
/**
|
|
8899
|
-
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
8900
|
-
* request.</p>
|
|
8901
|
-
* @public
|
|
8902
|
-
*/
|
|
8903
|
-
clientToken?: string | undefined;
|
|
8904
|
-
}
|
|
8905
|
-
/**
|
|
8906
|
-
* @public
|
|
8907
|
-
* @enum
|
|
8908
|
-
*/
|
|
8909
|
-
export declare const RuleType: {
|
|
8910
|
-
readonly METADATA_FORM_ENFORCEMENT: "METADATA_FORM_ENFORCEMENT";
|
|
8911
|
-
};
|
|
8912
|
-
/**
|
|
8913
|
-
* @public
|
|
8914
|
-
*/
|
|
8915
|
-
export type RuleType = (typeof RuleType)[keyof typeof RuleType];
|
|
8916
|
-
/**
|
|
8917
|
-
* @public
|
|
8918
|
-
* @enum
|
|
8919
|
-
*/
|
|
8920
|
-
export declare const RuleTargetType: {
|
|
8921
|
-
readonly DOMAIN_UNIT: "DOMAIN_UNIT";
|
|
8922
|
-
};
|
|
8923
|
-
/**
|
|
8924
|
-
* @public
|
|
8925
|
-
*/
|
|
8926
|
-
export type RuleTargetType = (typeof RuleTargetType)[keyof typeof RuleTargetType];
|
|
8927
|
-
/**
|
|
8928
|
-
* @public
|
|
8929
|
-
*/
|
|
8930
|
-
export interface CreateRuleOutput {
|
|
8931
|
-
/**
|
|
8932
|
-
* <p>The ID of the rule.</p>
|
|
8933
|
-
* @public
|
|
8934
|
-
*/
|
|
8935
|
-
identifier: string | undefined;
|
|
8936
|
-
/**
|
|
8937
|
-
* <p>The name of the rule.</p>
|
|
8938
|
-
* @public
|
|
8939
|
-
*/
|
|
8940
|
-
name: string | undefined;
|
|
8941
|
-
/**
|
|
8942
|
-
* <p>The type of the rule.</p>
|
|
8943
|
-
* @public
|
|
8944
|
-
*/
|
|
8945
|
-
ruleType: RuleType | undefined;
|
|
8946
|
-
/**
|
|
8947
|
-
* <p>The target of the rule.</p>
|
|
8948
|
-
* @public
|
|
8949
|
-
*/
|
|
8950
|
-
target: RuleTarget | undefined;
|
|
8951
|
-
/**
|
|
8952
|
-
* <p>The action of the rule.</p>
|
|
8953
|
-
* @public
|
|
8954
|
-
*/
|
|
8955
|
-
action: RuleAction | undefined;
|
|
8956
|
-
/**
|
|
8957
|
-
* <p>The scope of the rule.</p>
|
|
8958
|
-
* @public
|
|
8959
|
-
*/
|
|
8960
|
-
scope: RuleScope | undefined;
|
|
8961
|
-
/**
|
|
8962
|
-
* <p>The detail of the rule.</p>
|
|
8963
|
-
* @public
|
|
8964
|
-
*/
|
|
8965
|
-
detail: RuleDetail | undefined;
|
|
8966
|
-
/**
|
|
8967
|
-
* <p>The target type of the rule.</p>
|
|
8968
|
-
* @public
|
|
8969
|
-
*/
|
|
8970
|
-
targetType?: RuleTargetType | undefined;
|
|
8971
|
-
/**
|
|
8972
|
-
* <p>The description of the rule.</p>
|
|
8973
|
-
* @public
|
|
8974
|
-
*/
|
|
8975
|
-
description?: string | undefined;
|
|
8976
|
-
/**
|
|
8977
|
-
* <p>The timestamp at which the rule is created.</p>
|
|
8978
|
-
* @public
|
|
8979
|
-
*/
|
|
8980
|
-
createdAt: Date | undefined;
|
|
8981
|
-
/**
|
|
8982
|
-
* <p>The user who creates the rule.</p>
|
|
8983
|
-
* @public
|
|
8984
|
-
*/
|
|
8985
|
-
createdBy: string | undefined;
|
|
8986
|
-
}
|
|
8987
|
-
/**
|
|
8988
|
-
* <p>A revision to be made to an asset published in a Amazon DataZone catalog.</p>
|
|
8989
|
-
* @public
|
|
8990
|
-
*/
|
|
8991
|
-
export interface ListingRevisionInput {
|
|
8992
|
-
/**
|
|
8993
|
-
* <p>An identifier of revision to be made to an asset published in a Amazon DataZone
|
|
8994
|
-
* catalog.</p>
|
|
8995
|
-
* @public
|
|
8996
|
-
*/
|
|
8997
|
-
identifier: string | undefined;
|
|
8998
|
-
/**
|
|
8999
|
-
* <p>The details of a revision to be made to an asset published in a Amazon DataZone
|
|
9000
|
-
* catalog.</p>
|
|
9001
|
-
* @public
|
|
9002
|
-
*/
|
|
9003
|
-
revision: string | undefined;
|
|
9004
|
-
}
|
|
9005
|
-
/**
|
|
9006
|
-
* <p>The details of a listing for which a subscription is to be granted.</p>
|
|
9007
|
-
* @public
|
|
9008
|
-
*/
|
|
9009
|
-
export type GrantedEntityInput = GrantedEntityInput.ListingMember | GrantedEntityInput.$UnknownMember;
|
|
9010
|
-
/**
|
|
9011
|
-
* @public
|
|
9012
|
-
*/
|
|
9013
|
-
export declare namespace GrantedEntityInput {
|
|
9014
|
-
/**
|
|
9015
|
-
* <p>The listing for which a subscription is to be granted.</p>
|
|
9016
|
-
* @public
|
|
9017
|
-
*/
|
|
9018
|
-
interface ListingMember {
|
|
9019
|
-
listing: ListingRevisionInput;
|
|
9020
|
-
$unknown?: never;
|
|
9021
|
-
}
|
|
9022
|
-
/**
|
|
9023
|
-
* @public
|
|
9024
|
-
*/
|
|
9025
|
-
interface $UnknownMember {
|
|
9026
|
-
listing?: never;
|
|
9027
|
-
$unknown: [string, any];
|
|
9028
|
-
}
|
|
9029
|
-
interface Visitor<T> {
|
|
9030
|
-
listing: (value: ListingRevisionInput) => T;
|
|
9031
|
-
_: (name: string, value: any) => T;
|
|
9032
|
-
}
|
|
9033
|
-
const visit: <T>(value: GrantedEntityInput, visitor: Visitor<T>) => T;
|
|
9034
|
-
}
|
|
9035
9077
|
/**
|
|
9036
9078
|
* @internal
|
|
9037
9079
|
*/
|
|
@@ -9080,6 +9122,18 @@ export declare const SubscribedPrincipalFilterSensitiveLog: (obj: SubscribedPrin
|
|
|
9080
9122
|
* @internal
|
|
9081
9123
|
*/
|
|
9082
9124
|
export declare const AcceptSubscriptionRequestOutputFilterSensitiveLog: (obj: AcceptSubscriptionRequestOutput) => any;
|
|
9125
|
+
/**
|
|
9126
|
+
* @internal
|
|
9127
|
+
*/
|
|
9128
|
+
export declare const AccountInfoFilterSensitiveLog: (obj: AccountInfo) => any;
|
|
9129
|
+
/**
|
|
9130
|
+
* @internal
|
|
9131
|
+
*/
|
|
9132
|
+
export declare const AccountPoolSummaryFilterSensitiveLog: (obj: AccountPoolSummary) => any;
|
|
9133
|
+
/**
|
|
9134
|
+
* @internal
|
|
9135
|
+
*/
|
|
9136
|
+
export declare const AccountSourceFilterSensitiveLog: (obj: AccountSource) => any;
|
|
9083
9137
|
/**
|
|
9084
9138
|
* @internal
|
|
9085
9139
|
*/
|
|
@@ -9240,6 +9294,14 @@ export declare const PhysicalEndpointFilterSensitiveLog: (obj: PhysicalEndpoint)
|
|
|
9240
9294
|
* @internal
|
|
9241
9295
|
*/
|
|
9242
9296
|
export declare const ConnectionSummaryFilterSensitiveLog: (obj: ConnectionSummary) => any;
|
|
9297
|
+
/**
|
|
9298
|
+
* @internal
|
|
9299
|
+
*/
|
|
9300
|
+
export declare const CreateAccountPoolInputFilterSensitiveLog: (obj: CreateAccountPoolInput) => any;
|
|
9301
|
+
/**
|
|
9302
|
+
* @internal
|
|
9303
|
+
*/
|
|
9304
|
+
export declare const CreateAccountPoolOutputFilterSensitiveLog: (obj: CreateAccountPoolOutput) => any;
|
|
9243
9305
|
/**
|
|
9244
9306
|
* @internal
|
|
9245
9307
|
*/
|
|
@@ -9356,11 +9418,3 @@ export declare const CreateProjectProfileInputFilterSensitiveLog: (obj: CreatePr
|
|
|
9356
9418
|
* @internal
|
|
9357
9419
|
*/
|
|
9358
9420
|
export declare const CreateProjectProfileOutputFilterSensitiveLog: (obj: CreateProjectProfileOutput) => any;
|
|
9359
|
-
/**
|
|
9360
|
-
* @internal
|
|
9361
|
-
*/
|
|
9362
|
-
export declare const CreateRuleInputFilterSensitiveLog: (obj: CreateRuleInput) => any;
|
|
9363
|
-
/**
|
|
9364
|
-
* @internal
|
|
9365
|
-
*/
|
|
9366
|
-
export declare const CreateRuleOutputFilterSensitiveLog: (obj: CreateRuleOutput) => any;
|