@aws-sdk/client-datazone 3.596.0 → 3.598.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 (67) hide show
  1. package/README.md +56 -0
  2. package/dist-cjs/index.js +451 -66
  3. package/dist-es/DataZone.js +14 -0
  4. package/dist-es/commands/AssociateEnvironmentRoleCommand.js +24 -0
  5. package/dist-es/commands/CreateEnvironmentActionCommand.js +24 -0
  6. package/dist-es/commands/DeleteEnvironmentActionCommand.js +24 -0
  7. package/dist-es/commands/DisassociateEnvironmentRoleCommand.js +24 -0
  8. package/dist-es/commands/GetEnvironmentActionCommand.js +24 -0
  9. package/dist-es/commands/ListEnvironmentActionsCommand.js +24 -0
  10. package/dist-es/commands/ListProjectsCommand.js +1 -1
  11. package/dist-es/commands/ListSubscriptionRequestsCommand.js +1 -1
  12. package/dist-es/commands/ListSubscriptionsCommand.js +1 -1
  13. package/dist-es/commands/UpdateEnvironmentActionCommand.js +24 -0
  14. package/dist-es/commands/index.js +7 -0
  15. package/dist-es/models/models_0.js +30 -53
  16. package/dist-es/models/models_1.js +53 -0
  17. package/dist-es/pagination/ListEnvironmentActionsPaginator.js +4 -0
  18. package/dist-es/pagination/index.js +1 -0
  19. package/dist-es/protocols/Aws_restJson1.js +206 -0
  20. package/dist-types/DataZone.d.ts +49 -0
  21. package/dist-types/DataZoneClient.d.ts +9 -2
  22. package/dist-types/commands/AssociateEnvironmentRoleCommand.d.ts +81 -0
  23. package/dist-types/commands/CreateEnvironmentActionCommand.d.ts +99 -0
  24. package/dist-types/commands/CreateEnvironmentCommand.d.ts +4 -1
  25. package/dist-types/commands/DeleteDataSourceCommand.d.ts +24 -0
  26. package/dist-types/commands/DeleteEnvironmentActionCommand.d.ts +82 -0
  27. package/dist-types/commands/DisassociateEnvironmentRoleCommand.d.ts +81 -0
  28. package/dist-types/commands/GetDataSourceCommand.d.ts +22 -0
  29. package/dist-types/commands/GetEnvironmentActionCommand.d.ts +89 -0
  30. package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
  31. package/dist-types/commands/ListEnvironmentActionsCommand.d.ts +92 -0
  32. package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
  33. package/dist-types/commands/ListProjectMembershipsCommand.d.ts +1 -1
  34. package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
  35. package/dist-types/commands/ListSubscriptionGrantsCommand.d.ts +1 -1
  36. package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +1 -1
  37. package/dist-types/commands/ListSubscriptionsCommand.d.ts +1 -1
  38. package/dist-types/commands/UpdateDataSourceCommand.d.ts +24 -0
  39. package/dist-types/commands/UpdateEnvironmentActionCommand.d.ts +99 -0
  40. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +1 -1
  41. package/dist-types/commands/index.d.ts +7 -0
  42. package/dist-types/models/models_0.d.ts +516 -766
  43. package/dist-types/models/models_1.d.ts +808 -2
  44. package/dist-types/pagination/ListEnvironmentActionsPaginator.d.ts +7 -0
  45. package/dist-types/pagination/index.d.ts +1 -0
  46. package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
  47. package/dist-types/ts3.4/DataZone.d.ts +119 -0
  48. package/dist-types/ts3.4/DataZoneClient.d.ts +42 -0
  49. package/dist-types/ts3.4/commands/AssociateEnvironmentRoleCommand.d.ts +40 -0
  50. package/dist-types/ts3.4/commands/CreateEnvironmentActionCommand.d.ts +40 -0
  51. package/dist-types/ts3.4/commands/DeleteEnvironmentActionCommand.d.ts +36 -0
  52. package/dist-types/ts3.4/commands/DisassociateEnvironmentRoleCommand.d.ts +40 -0
  53. package/dist-types/ts3.4/commands/GetEnvironmentActionCommand.d.ts +40 -0
  54. package/dist-types/ts3.4/commands/ListEnvironmentActionsCommand.d.ts +40 -0
  55. package/dist-types/ts3.4/commands/ListProjectMembershipsCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/ListSubscriptionGrantsCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/ListSubscriptionRequestsCommand.d.ts +1 -1
  59. package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +1 -1
  60. package/dist-types/ts3.4/commands/UpdateEnvironmentActionCommand.d.ts +40 -0
  61. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  62. package/dist-types/ts3.4/models/models_0.d.ts +147 -187
  63. package/dist-types/ts3.4/models/models_1.d.ts +204 -2
  64. package/dist-types/ts3.4/pagination/ListEnvironmentActionsPaginator.d.ts +11 -0
  65. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  66. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
  67. package/package.json +37 -37
@@ -468,6 +468,47 @@ export interface AcceptSubscriptionRequestOutput {
468
468
  */
469
469
  decisionComment?: string;
470
470
  }
471
+ /**
472
+ * <p>The parameters of the console link specified as part of the environment action.</p>
473
+ * @public
474
+ */
475
+ export interface AwsConsoleLinkParameters {
476
+ /**
477
+ * <p>The URI of the console link specified as part of the environment action.</p>
478
+ * @public
479
+ */
480
+ uri?: string;
481
+ }
482
+ /**
483
+ * <p>The parameters of the environment action.</p>
484
+ * @public
485
+ */
486
+ export type ActionParameters = ActionParameters.AwsConsoleLinkMember | ActionParameters.$UnknownMember;
487
+ /**
488
+ * @public
489
+ */
490
+ export declare namespace ActionParameters {
491
+ /**
492
+ * <p>The console link specified as part of the environment action.</p>
493
+ * @public
494
+ */
495
+ interface AwsConsoleLinkMember {
496
+ awsConsoleLink: AwsConsoleLinkParameters;
497
+ $unknown?: never;
498
+ }
499
+ /**
500
+ * @public
501
+ */
502
+ interface $UnknownMember {
503
+ awsConsoleLink?: never;
504
+ $unknown: [string, any];
505
+ }
506
+ interface Visitor<T> {
507
+ awsConsoleLink: (value: AwsConsoleLinkParameters) => T;
508
+ _: (name: string, value: any) => T;
509
+ }
510
+ const visit: <T>(value: ActionParameters, visitor: Visitor<T>) => T;
511
+ }
471
512
  /**
472
513
  * @public
473
514
  * @enum
@@ -1662,6 +1703,31 @@ export interface AssetTypeItem {
1662
1703
  */
1663
1704
  updatedBy?: string;
1664
1705
  }
1706
+ /**
1707
+ * @public
1708
+ */
1709
+ export interface AssociateEnvironmentRoleInput {
1710
+ /**
1711
+ * <p>The ID of the Amazon DataZone domain in which the environment role is associated.</p>
1712
+ * @public
1713
+ */
1714
+ domainIdentifier: string | undefined;
1715
+ /**
1716
+ * <p>The ID of the Amazon DataZone environment.</p>
1717
+ * @public
1718
+ */
1719
+ environmentIdentifier: string | undefined;
1720
+ /**
1721
+ * <p>The ARN of the environment role.</p>
1722
+ * @public
1723
+ */
1724
+ environmentRoleArn: string | undefined;
1725
+ }
1726
+ /**
1727
+ * @public
1728
+ */
1729
+ export interface AssociateEnvironmentRoleOutput {
1730
+ }
1665
1731
  /**
1666
1732
  * @public
1667
1733
  * @enum
@@ -2778,6 +2844,21 @@ export interface CreateEnvironmentInput {
2778
2844
  * @public
2779
2845
  */
2780
2846
  glossaryTerms?: string[];
2847
+ /**
2848
+ * <p>The ID of the account in which the environment is being created.</p>
2849
+ * @public
2850
+ */
2851
+ environmentAccountIdentifier?: string;
2852
+ /**
2853
+ * <p>The region of the account in which the environment is being created.</p>
2854
+ * @public
2855
+ */
2856
+ environmentAccountRegion?: string;
2857
+ /**
2858
+ * <p>The ID of the blueprint with which the environment is being created.</p>
2859
+ * @public
2860
+ */
2861
+ environmentBlueprintIdentifier?: string;
2781
2862
  }
2782
2863
  /**
2783
2864
  * <p>The deployment properties of the Amazon DataZone blueprint.</p>
@@ -3039,7 +3120,7 @@ export interface CreateEnvironmentOutput {
3039
3120
  * created.</p>
3040
3121
  * @public
3041
3122
  */
3042
- environmentProfileId: string | undefined;
3123
+ environmentProfileId?: string;
3043
3124
  /**
3044
3125
  * <p>The Amazon Web Services account in which the Amazon DataZone environment is created.</p>
3045
3126
  * @public
@@ -3101,6 +3182,72 @@ export interface CreateEnvironmentOutput {
3101
3182
  */
3102
3183
  environmentBlueprintId?: string;
3103
3184
  }
3185
+ /**
3186
+ * @public
3187
+ */
3188
+ export interface CreateEnvironmentActionInput {
3189
+ /**
3190
+ * <p>The ID of the Amazon DataZone domain in which the environment action is created.</p>
3191
+ * @public
3192
+ */
3193
+ domainIdentifier: string | undefined;
3194
+ /**
3195
+ * <p>The ID of the environment in which the environment action is created.</p>
3196
+ * @public
3197
+ */
3198
+ environmentIdentifier: string | undefined;
3199
+ /**
3200
+ * <p>The name of the environment action.</p>
3201
+ * @public
3202
+ */
3203
+ name: string | undefined;
3204
+ /**
3205
+ * <p>The parameters of the environment action.</p>
3206
+ * @public
3207
+ */
3208
+ parameters: ActionParameters | undefined;
3209
+ /**
3210
+ * <p>The description of the environment action that is being created in the
3211
+ * environment.</p>
3212
+ * @public
3213
+ */
3214
+ description?: string;
3215
+ }
3216
+ /**
3217
+ * @public
3218
+ */
3219
+ export interface CreateEnvironmentActionOutput {
3220
+ /**
3221
+ * <p>The ID of the domain in which the environment action is created.</p>
3222
+ * @public
3223
+ */
3224
+ domainId: string | undefined;
3225
+ /**
3226
+ * <p>The ID of the environment in which the environment is created.</p>
3227
+ * @public
3228
+ */
3229
+ environmentId: string | undefined;
3230
+ /**
3231
+ * <p>The ID of the environment action.</p>
3232
+ * @public
3233
+ */
3234
+ id: string | undefined;
3235
+ /**
3236
+ * <p>The name of the environment action.</p>
3237
+ * @public
3238
+ */
3239
+ name: string | undefined;
3240
+ /**
3241
+ * <p>The parameters of the environment action.</p>
3242
+ * @public
3243
+ */
3244
+ parameters: ActionParameters | undefined;
3245
+ /**
3246
+ * <p>The description of the environment action.</p>
3247
+ * @public
3248
+ */
3249
+ description?: string;
3250
+ }
3104
3251
  /**
3105
3252
  * @public
3106
3253
  */
@@ -4719,6 +4866,119 @@ export interface DeleteDataSourceInput {
4719
4866
  * @public
4720
4867
  */
4721
4868
  clientToken?: string;
4869
+ /**
4870
+ * <p>Specifies that the granted permissions are retained in case of a self-subscribe
4871
+ * functionality failure for a data source.</p>
4872
+ * @public
4873
+ */
4874
+ retainPermissionsOnRevokeFailure?: boolean;
4875
+ }
4876
+ /**
4877
+ * @public
4878
+ * @enum
4879
+ */
4880
+ export declare const SelfGrantStatus: {
4881
+ readonly GRANTED: "GRANTED";
4882
+ readonly GRANT_FAILED: "GRANT_FAILED";
4883
+ readonly GRANT_IN_PROGRESS: "GRANT_IN_PROGRESS";
4884
+ readonly GRANT_PENDING: "GRANT_PENDING";
4885
+ readonly REVOKE_FAILED: "REVOKE_FAILED";
4886
+ readonly REVOKE_IN_PROGRESS: "REVOKE_IN_PROGRESS";
4887
+ readonly REVOKE_PENDING: "REVOKE_PENDING";
4888
+ };
4889
+ /**
4890
+ * @public
4891
+ */
4892
+ export type SelfGrantStatus = (typeof SelfGrantStatus)[keyof typeof SelfGrantStatus];
4893
+ /**
4894
+ * <p>The details for the self granting status.</p>
4895
+ * @public
4896
+ */
4897
+ export interface SelfGrantStatusDetail {
4898
+ /**
4899
+ * <p>The name of the database used for the data source.</p>
4900
+ * @public
4901
+ */
4902
+ databaseName: string | undefined;
4903
+ /**
4904
+ * <p>The name of the schema used in the data source.</p>
4905
+ * @public
4906
+ */
4907
+ schemaName?: string;
4908
+ /**
4909
+ * <p>The self granting status of the data source.</p>
4910
+ * @public
4911
+ */
4912
+ status: SelfGrantStatus | undefined;
4913
+ /**
4914
+ * <p>The reason for why the operation failed.</p>
4915
+ * @public
4916
+ */
4917
+ failureCause?: string;
4918
+ }
4919
+ /**
4920
+ * <p>The details of the self granting status.</p>
4921
+ * @public
4922
+ */
4923
+ export interface GlueSelfGrantStatusOutput {
4924
+ /**
4925
+ * <p>The details for the self granting status for a Glue data source.</p>
4926
+ * @public
4927
+ */
4928
+ selfGrantStatusDetails: SelfGrantStatusDetail[] | undefined;
4929
+ }
4930
+ /**
4931
+ * <p>The details for the self granting status for an Amazon Redshift data source.</p>
4932
+ * @public
4933
+ */
4934
+ export interface RedshiftSelfGrantStatusOutput {
4935
+ /**
4936
+ * <p>The details for the self granting status for an Amazon Redshift data source.</p>
4937
+ * @public
4938
+ */
4939
+ selfGrantStatusDetails: SelfGrantStatusDetail[] | undefined;
4940
+ }
4941
+ /**
4942
+ * <p>The details for the self granting status for a data source.</p>
4943
+ * @public
4944
+ */
4945
+ export type SelfGrantStatusOutput = SelfGrantStatusOutput.GlueSelfGrantStatusMember | SelfGrantStatusOutput.RedshiftSelfGrantStatusMember | SelfGrantStatusOutput.$UnknownMember;
4946
+ /**
4947
+ * @public
4948
+ */
4949
+ export declare namespace SelfGrantStatusOutput {
4950
+ /**
4951
+ * <p>The details for the self granting status for a Glue data source.</p>
4952
+ * @public
4953
+ */
4954
+ interface GlueSelfGrantStatusMember {
4955
+ glueSelfGrantStatus: GlueSelfGrantStatusOutput;
4956
+ redshiftSelfGrantStatus?: never;
4957
+ $unknown?: never;
4958
+ }
4959
+ /**
4960
+ * <p>The details for the self granting status for an Amazon Redshift data source.</p>
4961
+ * @public
4962
+ */
4963
+ interface RedshiftSelfGrantStatusMember {
4964
+ glueSelfGrantStatus?: never;
4965
+ redshiftSelfGrantStatus: RedshiftSelfGrantStatusOutput;
4966
+ $unknown?: never;
4967
+ }
4968
+ /**
4969
+ * @public
4970
+ */
4971
+ interface $UnknownMember {
4972
+ glueSelfGrantStatus?: never;
4973
+ redshiftSelfGrantStatus?: never;
4974
+ $unknown: [string, any];
4975
+ }
4976
+ interface Visitor<T> {
4977
+ glueSelfGrantStatus: (value: GlueSelfGrantStatusOutput) => T;
4978
+ redshiftSelfGrantStatus: (value: RedshiftSelfGrantStatusOutput) => T;
4979
+ _: (name: string, value: any) => T;
4980
+ }
4981
+ const visit: <T>(value: SelfGrantStatusOutput, visitor: Visitor<T>) => T;
4722
4982
  }
4723
4983
  /**
4724
4984
  * @public
@@ -4824,6 +5084,17 @@ export interface DeleteDataSourceOutput {
4824
5084
  * @public
4825
5085
  */
4826
5086
  updatedAt?: Date;
5087
+ /**
5088
+ * <p>Specifies the status of the self-granting functionality.</p>
5089
+ * @public
5090
+ */
5091
+ selfGrantStatus?: SelfGrantStatusOutput;
5092
+ /**
5093
+ * <p>Specifies that the granted permissions are retained in case of a self-subscribe
5094
+ * functionality failure for a data source.</p>
5095
+ * @public
5096
+ */
5097
+ retainPermissionsOnRevokeFailure?: boolean;
4827
5098
  }
4828
5099
  /**
4829
5100
  * @public
@@ -4952,6 +5223,11 @@ export interface GetDataSourceOutput {
4952
5223
  * @public
4953
5224
  */
4954
5225
  updatedAt?: Date;
5226
+ /**
5227
+ * <p>Specifies the status of the self-granting functionality.</p>
5228
+ * @public
5229
+ */
5230
+ selfGrantStatus?: SelfGrantStatusOutput;
4955
5231
  }
4956
5232
  /**
4957
5233
  * @public
@@ -5164,6 +5440,12 @@ export interface UpdateDataSourceInput {
5164
5440
  * @public
5165
5441
  */
5166
5442
  recommendation?: RecommendationConfiguration;
5443
+ /**
5444
+ * <p>Specifies that the granted permissions are retained in case of a self-subscribe
5445
+ * functionality failure for a data source.</p>
5446
+ * @public
5447
+ */
5448
+ retainPermissionsOnRevokeFailure?: boolean;
5167
5449
  }
5168
5450
  /**
5169
5451
  * @public
@@ -5276,6 +5558,17 @@ export interface UpdateDataSourceOutput {
5276
5558
  * @public
5277
5559
  */
5278
5560
  updatedAt?: Date;
5561
+ /**
5562
+ * <p>Specifies the status of the self-granting functionality.</p>
5563
+ * @public
5564
+ */
5565
+ selfGrantStatus?: SelfGrantStatusOutput;
5566
+ /**
5567
+ * <p>Specifies that the granted permissions are retained in case of a self-subscribe
5568
+ * functionality failure for a data source.</p>
5569
+ * @public
5570
+ */
5571
+ retainPermissionsOnRevokeFailure?: boolean;
5279
5572
  }
5280
5573
  /**
5281
5574
  * @public
@@ -5692,6 +5985,26 @@ export interface DeleteEnvironmentInput {
5692
5985
  */
5693
5986
  identifier: string | undefined;
5694
5987
  }
5988
+ /**
5989
+ * @public
5990
+ */
5991
+ export interface DeleteEnvironmentActionInput {
5992
+ /**
5993
+ * <p>The ID of the Amazon DataZone domain in which an environment action is deleted.</p>
5994
+ * @public
5995
+ */
5996
+ domainIdentifier: string | undefined;
5997
+ /**
5998
+ * <p>The ID of the environment where an environment action is deleted.</p>
5999
+ * @public
6000
+ */
6001
+ environmentIdentifier: string | undefined;
6002
+ /**
6003
+ * <p>The ID of the environment action that is deleted.</p>
6004
+ * @public
6005
+ */
6006
+ identifier: string | undefined;
6007
+ }
5695
6008
  /**
5696
6009
  * @public
5697
6010
  */
@@ -5917,6 +6230,31 @@ export interface DeleteTimeSeriesDataPointsInput {
5917
6230
  */
5918
6231
  export interface DeleteTimeSeriesDataPointsOutput {
5919
6232
  }
6233
+ /**
6234
+ * @public
6235
+ */
6236
+ export interface DisassociateEnvironmentRoleInput {
6237
+ /**
6238
+ * <p>The ID of the Amazon DataZone domain in which an environment role is disassociated.</p>
6239
+ * @public
6240
+ */
6241
+ domainIdentifier: string | undefined;
6242
+ /**
6243
+ * <p>The ID of the environment.</p>
6244
+ * @public
6245
+ */
6246
+ environmentIdentifier: string | undefined;
6247
+ /**
6248
+ * <p>The ARN of the environment role.</p>
6249
+ * @public
6250
+ */
6251
+ environmentRoleArn: string | undefined;
6252
+ }
6253
+ /**
6254
+ * @public
6255
+ */
6256
+ export interface DisassociateEnvironmentRoleOutput {
6257
+ }
5920
6258
  /**
5921
6259
  * @public
5922
6260
  */
@@ -6643,7 +6981,7 @@ export interface GetEnvironmentOutput {
6643
6981
  * <p>The ID of the environment profile with which the environment is created.</p>
6644
6982
  * @public
6645
6983
  */
6646
- environmentProfileId: string | undefined;
6984
+ environmentProfileId?: string;
6647
6985
  /**
6648
6986
  * <p>The ID of the Amazon Web Services account where the environment exists.</p>
6649
6987
  * @public
@@ -6708,14 +7046,20 @@ export interface GetEnvironmentOutput {
6708
7046
  /**
6709
7047
  * @public
6710
7048
  */
6711
- export interface GetEnvironmentBlueprintInput {
7049
+ export interface GetEnvironmentActionInput {
6712
7050
  /**
6713
- * <p>The identifier of the domain in which this blueprint exists.</p>
7051
+ * <p>The ID of the Amazon DataZone domain in which the <code>GetEnvironmentAction</code> API is
7052
+ * invoked. </p>
6714
7053
  * @public
6715
7054
  */
6716
7055
  domainIdentifier: string | undefined;
6717
7056
  /**
6718
- * <p>The ID of this Amazon DataZone blueprint.</p>
7057
+ * <p>The environment ID of the environment action.</p>
7058
+ * @public
7059
+ */
7060
+ environmentIdentifier: string | undefined;
7061
+ /**
7062
+ * <p>The ID of the environment action</p>
6719
7063
  * @public
6720
7064
  */
6721
7065
  identifier: string | undefined;
@@ -6723,22 +7067,72 @@ export interface GetEnvironmentBlueprintInput {
6723
7067
  /**
6724
7068
  * @public
6725
7069
  */
6726
- export interface GetEnvironmentBlueprintOutput {
7070
+ export interface GetEnvironmentActionOutput {
6727
7071
  /**
6728
- * <p>The ID of this Amazon DataZone blueprint.</p>
7072
+ * <p>The ID of the Amazon DataZone domain in which the environment action lives.</p>
6729
7073
  * @public
6730
7074
  */
6731
- id: string | undefined;
7075
+ domainId: string | undefined;
6732
7076
  /**
6733
- * <p>The name of this Amazon DataZone blueprint.</p>
7077
+ * <p>The environment ID of the environment action.</p>
6734
7078
  * @public
6735
7079
  */
6736
- name: string | undefined;
7080
+ environmentId: string | undefined;
6737
7081
  /**
6738
- * <p>The description of this Amazon DataZone blueprint.</p>
7082
+ * <p>The ID of the environment action.</p>
6739
7083
  * @public
6740
7084
  */
6741
- description?: string;
7085
+ id: string | undefined;
7086
+ /**
7087
+ * <p>The name of the environment action.</p>
7088
+ * @public
7089
+ */
7090
+ name: string | undefined;
7091
+ /**
7092
+ * <p>The parameters of the environment action.</p>
7093
+ * @public
7094
+ */
7095
+ parameters: ActionParameters | undefined;
7096
+ /**
7097
+ * <p>The description of the environment action.</p>
7098
+ * @public
7099
+ */
7100
+ description?: string;
7101
+ }
7102
+ /**
7103
+ * @public
7104
+ */
7105
+ export interface GetEnvironmentBlueprintInput {
7106
+ /**
7107
+ * <p>The identifier of the domain in which this blueprint exists.</p>
7108
+ * @public
7109
+ */
7110
+ domainIdentifier: string | undefined;
7111
+ /**
7112
+ * <p>The ID of this Amazon DataZone blueprint.</p>
7113
+ * @public
7114
+ */
7115
+ identifier: string | undefined;
7116
+ }
7117
+ /**
7118
+ * @public
7119
+ */
7120
+ export interface GetEnvironmentBlueprintOutput {
7121
+ /**
7122
+ * <p>The ID of this Amazon DataZone blueprint.</p>
7123
+ * @public
7124
+ */
7125
+ id: string | undefined;
7126
+ /**
7127
+ * <p>The name of this Amazon DataZone blueprint.</p>
7128
+ * @public
7129
+ */
7130
+ name: string | undefined;
7131
+ /**
7132
+ * <p>The description of this Amazon DataZone blueprint.</p>
7133
+ * @public
7134
+ */
7135
+ description?: string;
6742
7136
  /**
6743
7137
  * <p>The provider of this Amazon DataZone blueprint.</p>
6744
7138
  * @public
@@ -7946,6 +8340,98 @@ export interface ListDataSourceRunActivitiesOutput {
7946
8340
  */
7947
8341
  nextToken?: string;
7948
8342
  }
8343
+ /**
8344
+ * @public
8345
+ */
8346
+ export interface ListEnvironmentActionsInput {
8347
+ /**
8348
+ * <p>The ID of the Amazon DataZone domain in which the environment actions are listed.</p>
8349
+ * @public
8350
+ */
8351
+ domainIdentifier: string | undefined;
8352
+ /**
8353
+ * <p>The ID of the envrironment whose environment actions are listed.</p>
8354
+ * @public
8355
+ */
8356
+ environmentIdentifier: string | undefined;
8357
+ /**
8358
+ * <p>When the number of environment actions is greater than the default value for the
8359
+ * <code>MaxResults</code> parameter, or if you explicitly specify a value for
8360
+ * <code>MaxResults</code> that is less than the number of environment actions, the
8361
+ * response includes a pagination token named <code>NextToken</code>. You can specify this
8362
+ * <code>NextToken</code> value in a subsequent call to <code>ListEnvironmentActions</code>
8363
+ * to list the next set of environment actions.</p>
8364
+ * @public
8365
+ */
8366
+ nextToken?: string;
8367
+ /**
8368
+ * <p>The maximum number of environment actions to return in a single call to
8369
+ * <code>ListEnvironmentActions</code>. When the number of environment actions to be listed
8370
+ * is greater than the value of <code>MaxResults</code>, the response contains a
8371
+ * <code>NextToken</code> value that you can use in a subsequent call to
8372
+ * <code>ListEnvironmentActions</code> to list the next set of environment actions.</p>
8373
+ * @public
8374
+ */
8375
+ maxResults?: number;
8376
+ }
8377
+ /**
8378
+ * <p>The details about the specified action configured for an environment. For example, the
8379
+ * details of the specified console links for an analytics tool that is available in this
8380
+ * environment.</p>
8381
+ * @public
8382
+ */
8383
+ export interface EnvironmentActionSummary {
8384
+ /**
8385
+ * <p>The Amazon DataZone domain ID of the environment action.</p>
8386
+ * @public
8387
+ */
8388
+ domainId: string | undefined;
8389
+ /**
8390
+ * <p>The environment ID of the environment action.</p>
8391
+ * @public
8392
+ */
8393
+ environmentId: string | undefined;
8394
+ /**
8395
+ * <p>The ID of the environment action.</p>
8396
+ * @public
8397
+ */
8398
+ id: string | undefined;
8399
+ /**
8400
+ * <p>The name of the environment action.</p>
8401
+ * @public
8402
+ */
8403
+ name: string | undefined;
8404
+ /**
8405
+ * <p>The parameters of the environment action.</p>
8406
+ * @public
8407
+ */
8408
+ parameters: ActionParameters | undefined;
8409
+ /**
8410
+ * <p>The environment action description.</p>
8411
+ * @public
8412
+ */
8413
+ description?: string;
8414
+ }
8415
+ /**
8416
+ * @public
8417
+ */
8418
+ export interface ListEnvironmentActionsOutput {
8419
+ /**
8420
+ * <p>The results of <code>ListEnvironmentActions</code>.</p>
8421
+ * @public
8422
+ */
8423
+ items?: EnvironmentActionSummary[];
8424
+ /**
8425
+ * <p>When the number of environment actions is greater than the default value for the
8426
+ * <code>MaxResults</code> parameter, or if you explicitly specify a value for
8427
+ * <code>MaxResults</code> that is less than the number of environment actions, the
8428
+ * response includes a pagination token named <code>NextToken</code>. You can specify this
8429
+ * <code>NextToken</code> value in a subsequent call to <code>ListEnvironmentActions</code>
8430
+ * to list the next set of environment actions.</p>
8431
+ * @public
8432
+ */
8433
+ nextToken?: string;
8434
+ }
7949
8435
  /**
7950
8436
  * @public
7951
8437
  */
@@ -8305,7 +8791,7 @@ export interface EnvironmentSummary {
8305
8791
  * <p>The identifier of the environment profile with which the environment was created.</p>
8306
8792
  * @public
8307
8793
  */
8308
- environmentProfileId: string | undefined;
8794
+ environmentProfileId?: string;
8309
8795
  /**
8310
8796
  * <p>The identifier of the Amazon Web Services account in which an environment exists.</p>
8311
8797
  * @public
@@ -8728,747 +9214,39 @@ export declare const SortOrder: {
8728
9214
  */
8729
9215
  export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
8730
9216
  /**
8731
- * @public
9217
+ * @internal
8732
9218
  */
8733
- export interface ListProjectMembershipsInput {
8734
- /**
8735
- * <p>The identifier of the Amazon DataZone domain in which you want to list project
8736
- * memberships.</p>
8737
- * @public
8738
- */
8739
- domainIdentifier: string | undefined;
8740
- /**
8741
- * <p>The identifier of the project whose memberships you want to list.</p>
8742
- * @public
8743
- */
8744
- projectIdentifier: string | undefined;
8745
- /**
8746
- * <p>The method by which you want to sort the project memberships.</p>
8747
- * @public
8748
- */
8749
- sortBy?: SortFieldProject;
8750
- /**
8751
- * <p>The sort order of the project memberships.</p>
8752
- * @public
8753
- */
8754
- sortOrder?: SortOrder;
8755
- /**
8756
- * <p>When the number of memberships is greater than the default value for the
8757
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
8758
- * <code>MaxResults</code> that is less than the number of memberships, the response
8759
- * includes a pagination token named <code>NextToken</code>. You can specify this
8760
- * <code>NextToken</code> value in a subsequent call to <code>ListProjectMemberships</code>
8761
- * to list the next set of memberships.</p>
8762
- * @public
8763
- */
8764
- nextToken?: string;
8765
- /**
8766
- * <p>The maximum number of memberships to return in a single call to
8767
- * <code>ListProjectMemberships</code>. When the number of memberships to be listed is
8768
- * greater than the value of <code>MaxResults</code>, the response contains a
8769
- * <code>NextToken</code> value that you can use in a subsequent call to
8770
- * <code>ListProjectMemberships</code> to list the next set of memberships.</p>
8771
- * @public
8772
- */
8773
- maxResults?: number;
8774
- }
9219
+ export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
8775
9220
  /**
8776
- * <p>The details of a group in Amazon DataZone.</p>
8777
- * @public
9221
+ * @internal
8778
9222
  */
8779
- export interface GroupDetails {
8780
- /**
8781
- * <p>The identifier of the group in Amazon DataZone.</p>
8782
- * @public
8783
- */
8784
- groupId: string | undefined;
8785
- }
9223
+ export declare const AcceptPredictionsInputFilterSensitiveLog: (obj: AcceptPredictionsInput) => any;
8786
9224
  /**
8787
- * <p>The user details of a project member.</p>
8788
- * @public
9225
+ * @internal
8789
9226
  */
8790
- export interface UserDetails {
8791
- /**
8792
- * <p>The identifier of the Amazon DataZone user.</p>
8793
- * @public
8794
- */
8795
- userId: string | undefined;
8796
- }
9227
+ export declare const AcceptSubscriptionRequestInputFilterSensitiveLog: (obj: AcceptSubscriptionRequestInput) => any;
8797
9228
  /**
8798
- * <p>The details about a project member.</p>
8799
- * @public
9229
+ * @internal
8800
9230
  */
8801
- export type MemberDetails = MemberDetails.GroupMember | MemberDetails.UserMember | MemberDetails.$UnknownMember;
9231
+ export declare const DetailedGlossaryTermFilterSensitiveLog: (obj: DetailedGlossaryTerm) => any;
8802
9232
  /**
8803
- * @public
9233
+ * @internal
8804
9234
  */
8805
- export declare namespace MemberDetails {
8806
- /**
8807
- * <p>The user details of a project member.</p>
8808
- * @public
8809
- */
8810
- interface UserMember {
8811
- user: UserDetails;
8812
- group?: never;
8813
- $unknown?: never;
8814
- }
8815
- /**
8816
- * <p>The group details of a project member.</p>
8817
- * @public
8818
- */
8819
- interface GroupMember {
8820
- user?: never;
8821
- group: GroupDetails;
8822
- $unknown?: never;
8823
- }
8824
- /**
8825
- * @public
8826
- */
8827
- interface $UnknownMember {
8828
- user?: never;
8829
- group?: never;
8830
- $unknown: [string, any];
8831
- }
8832
- interface Visitor<T> {
8833
- user: (value: UserDetails) => T;
8834
- group: (value: GroupDetails) => T;
8835
- _: (name: string, value: any) => T;
8836
- }
8837
- const visit: <T>(value: MemberDetails, visitor: Visitor<T>) => T;
8838
- }
9235
+ export declare const SubscribedAssetListingFilterSensitiveLog: (obj: SubscribedAssetListing) => any;
8839
9236
  /**
8840
- * <p>The details of a project member.</p>
8841
- * @public
9237
+ * @internal
8842
9238
  */
8843
- export interface ProjectMember {
8844
- /**
8845
- * <p>The membership details of a project member.</p>
8846
- * @public
8847
- */
8848
- memberDetails: MemberDetails | undefined;
8849
- /**
8850
- * <p>The designated role of a project member.</p>
8851
- * @public
8852
- */
8853
- designation: UserDesignation | undefined;
8854
- }
9239
+ export declare const SubscribedListingItemFilterSensitiveLog: (obj: SubscribedListingItem) => any;
8855
9240
  /**
8856
- * @public
9241
+ * @internal
8857
9242
  */
8858
- export interface ListProjectMembershipsOutput {
8859
- /**
8860
- * <p>The members of the project.</p>
8861
- * @public
8862
- */
8863
- members: ProjectMember[] | undefined;
8864
- /**
8865
- * <p>When the number of memberships is greater than the default value for the
8866
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
8867
- * <code>MaxResults</code> that is less than the number of memberships, the response
8868
- * includes a pagination token named <code>NextToken</code>. You can specify this
8869
- * <code>NextToken</code> value in a subsequent call to <code>ListProjectMemberships</code>
8870
- * to list the next set of memberships.</p>
8871
- * @public
8872
- */
8873
- nextToken?: string;
8874
- }
9243
+ export declare const SubscribedListingFilterSensitiveLog: (obj: SubscribedListing) => any;
8875
9244
  /**
8876
- * @public
9245
+ * @internal
8877
9246
  */
8878
- export interface ListProjectsInput {
8879
- /**
8880
- * <p>The identifier of the Amazon DataZone domain.</p>
8881
- * @public
8882
- */
8883
- domainIdentifier: string | undefined;
8884
- /**
8885
- * <p>The identifier of the Amazon DataZone user.</p>
8886
- * @public
8887
- */
8888
- userIdentifier?: string;
8889
- /**
8890
- * <p>The identifier of a group.</p>
8891
- * @public
8892
- */
8893
- groupIdentifier?: string;
8894
- /**
8895
- * <p>The name of the project.</p>
8896
- * @public
8897
- */
8898
- name?: string;
8899
- /**
8900
- * <p>When the number of projects is greater than the default value for the
8901
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
8902
- * <code>MaxResults</code> that is less than the number of projects, the response includes
8903
- * a pagination token named <code>NextToken</code>. You can specify this
8904
- * <code>NextToken</code> value in a subsequent call to <code>ListProjects</code> to list
8905
- * the next set of projects.</p>
8906
- * @public
8907
- */
8908
- nextToken?: string;
8909
- /**
8910
- * <p>The maximum number of projects to return in a single call to <code>ListProjects</code>.
8911
- * When the number of projects to be listed is greater than the value of
8912
- * <code>MaxResults</code>, the response contains a <code>NextToken</code> value that you
8913
- * can use in a subsequent call to <code>ListProjects</code> to list the next set of
8914
- * projects.</p>
8915
- * @public
8916
- */
8917
- maxResults?: number;
8918
- }
9247
+ export declare const SubscribedProjectFilterSensitiveLog: (obj: SubscribedProject) => any;
8919
9248
  /**
8920
- * <p>The details of a Amazon DataZone project.</p>
8921
- * @public
8922
- */
8923
- export interface ProjectSummary {
8924
- /**
8925
- * <p>The identifier of a Amazon DataZone domain where the project exists.</p>
8926
- * @public
8927
- */
8928
- domainId: string | undefined;
8929
- /**
8930
- * <p>The identifier of a project.</p>
8931
- * @public
8932
- */
8933
- id: string | undefined;
8934
- /**
8935
- * <p>The name of a project.</p>
8936
- * @public
8937
- */
8938
- name: string | undefined;
8939
- /**
8940
- * <p>The description of a project.</p>
8941
- * @public
8942
- */
8943
- description?: string;
8944
- /**
8945
- * <p>The status of the project.</p>
8946
- * @public
8947
- */
8948
- projectStatus?: ProjectStatus;
8949
- /**
8950
- * <p>Specifies the error message that is returned if the operation cannot be successfully
8951
- * completed.</p>
8952
- * @public
8953
- */
8954
- failureReasons?: ProjectDeletionError[];
8955
- /**
8956
- * <p>The Amazon DataZone user who created the project.</p>
8957
- * @public
8958
- */
8959
- createdBy: string | undefined;
8960
- /**
8961
- * <p>The timestamp of when a project was created.</p>
8962
- * @public
8963
- */
8964
- createdAt?: Date;
8965
- /**
8966
- * <p>The timestamp of when the project was updated.</p>
8967
- * @public
8968
- */
8969
- updatedAt?: Date;
8970
- }
8971
- /**
8972
- * @public
8973
- */
8974
- export interface ListProjectsOutput {
8975
- /**
8976
- * <p>The results of the <code>ListProjects</code> action.</p>
8977
- * @public
8978
- */
8979
- items?: ProjectSummary[];
8980
- /**
8981
- * <p>When the number of projects is greater than the default value for the
8982
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
8983
- * <code>MaxResults</code> that is less than the number of projects, the response includes
8984
- * a pagination token named <code>NextToken</code>. You can specify this
8985
- * <code>NextToken</code> value in a subsequent call to <code>ListProjects</code> to list
8986
- * the next set of projects.</p>
8987
- * @public
8988
- */
8989
- nextToken?: string;
8990
- }
8991
- /**
8992
- * @public
8993
- * @enum
8994
- */
8995
- export declare const SortKey: {
8996
- readonly CREATED_AT: "CREATED_AT";
8997
- readonly UPDATED_AT: "UPDATED_AT";
8998
- };
8999
- /**
9000
- * @public
9001
- */
9002
- export type SortKey = (typeof SortKey)[keyof typeof SortKey];
9003
- /**
9004
- * @public
9005
- */
9006
- export interface ListSubscriptionGrantsInput {
9007
- /**
9008
- * <p>The identifier of the Amazon DataZone domain.</p>
9009
- * @public
9010
- */
9011
- domainIdentifier: string | undefined;
9012
- /**
9013
- * <p>The identifier of the Amazon DataZone environment.</p>
9014
- * @public
9015
- */
9016
- environmentId?: string;
9017
- /**
9018
- * <p>The identifier of the subscription target.</p>
9019
- * @public
9020
- */
9021
- subscriptionTargetId?: string;
9022
- /**
9023
- * <p>The identifier of the subscribed listing.</p>
9024
- * @public
9025
- */
9026
- subscribedListingId?: string;
9027
- /**
9028
- * <p>The identifier of the subscription.</p>
9029
- * @public
9030
- */
9031
- subscriptionId?: string;
9032
- /**
9033
- * <p>Specifies the way of sorting the results of this action.</p>
9034
- * @public
9035
- */
9036
- sortBy?: SortKey;
9037
- /**
9038
- * <p>Specifies the sort order of this action.</p>
9039
- * @public
9040
- */
9041
- sortOrder?: SortOrder;
9042
- /**
9043
- * <p>The maximum number of subscription grants to return in a single call to
9044
- * <code>ListSubscriptionGrants</code>. When the number of subscription grants to be listed
9045
- * is greater than the value of <code>MaxResults</code>, the response contains a
9046
- * <code>NextToken</code> value that you can use in a subsequent call to
9047
- * <code>ListSubscriptionGrants</code> to list the next set of subscription grants.</p>
9048
- * @public
9049
- */
9050
- maxResults?: number;
9051
- /**
9052
- * <p>When the number of subscription grants is greater than the default value for the
9053
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
9054
- * <code>MaxResults</code> that is less than the number of subscription grants, the
9055
- * response includes a pagination token named <code>NextToken</code>. You can specify this
9056
- * <code>NextToken</code> value in a subsequent call to <code>ListSubscriptionGrants</code>
9057
- * to list the next set of subscription grants.</p>
9058
- * @public
9059
- */
9060
- nextToken?: string;
9061
- }
9062
- /**
9063
- * <p>The details of the subscription grant.</p>
9064
- * @public
9065
- */
9066
- export interface SubscriptionGrantSummary {
9067
- /**
9068
- * <p>The identifier of the subscription grant.</p>
9069
- * @public
9070
- */
9071
- id: string | undefined;
9072
- /**
9073
- * <p>The datazone user who created the subscription grant.</p>
9074
- * @public
9075
- */
9076
- createdBy: string | undefined;
9077
- /**
9078
- * <p>The Amazon DataZone user who updated the subscription grant.</p>
9079
- * @public
9080
- */
9081
- updatedBy?: string;
9082
- /**
9083
- * <p>The identifier of the Amazon DataZone domain in which a subscription grant exists.</p>
9084
- * @public
9085
- */
9086
- domainId: string | undefined;
9087
- /**
9088
- * <p>The timestamp of when a subscription grant was created.</p>
9089
- * @public
9090
- */
9091
- createdAt: Date | undefined;
9092
- /**
9093
- * <p>The timestampf of when the subscription grant was updated.</p>
9094
- * @public
9095
- */
9096
- updatedAt: Date | undefined;
9097
- /**
9098
- * <p>The identifier of the target of the subscription grant.</p>
9099
- * @public
9100
- */
9101
- subscriptionTargetId: string | undefined;
9102
- /**
9103
- * <p>The entity to which the subscription is granted.</p>
9104
- * @public
9105
- */
9106
- grantedEntity: GrantedEntity | undefined;
9107
- /**
9108
- * <p>The status of the subscription grant.</p>
9109
- * @public
9110
- */
9111
- status: SubscriptionGrantOverallStatus | undefined;
9112
- /**
9113
- * <p>The assets included in the subscription grant.</p>
9114
- * @public
9115
- */
9116
- assets?: SubscribedAsset[];
9117
- /**
9118
- * <p>The ID of the subscription grant.</p>
9119
- * @public
9120
- */
9121
- subscriptionId?: string;
9122
- }
9123
- /**
9124
- * @public
9125
- */
9126
- export interface ListSubscriptionGrantsOutput {
9127
- /**
9128
- * <p>The results of the <code>ListSubscriptionGrants</code> action. </p>
9129
- * @public
9130
- */
9131
- items: SubscriptionGrantSummary[] | undefined;
9132
- /**
9133
- * <p>When the number of subscription grants is greater than the default value for the
9134
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
9135
- * <code>MaxResults</code> that is less than the number of subscription grants, the
9136
- * response includes a pagination token named <code>NextToken</code>. You can specify this
9137
- * <code>NextToken</code> value in a subsequent call to <code>ListSubscriptionGrants</code>
9138
- * to list the next set of subscription grants.</p>
9139
- * @public
9140
- */
9141
- nextToken?: string;
9142
- }
9143
- /**
9144
- * @public
9145
- */
9146
- export interface ListSubscriptionRequestsInput {
9147
- /**
9148
- * <p>The identifier of the Amazon DataZone domain.</p>
9149
- * @public
9150
- */
9151
- domainIdentifier: string | undefined;
9152
- /**
9153
- * <p>Specifies the status of the subscription requests.</p>
9154
- * @public
9155
- */
9156
- status?: SubscriptionRequestStatus;
9157
- /**
9158
- * <p>The identifier of the subscribed listing.</p>
9159
- * @public
9160
- */
9161
- subscribedListingId?: string;
9162
- /**
9163
- * <p>The identifier of the project for the subscription requests.</p>
9164
- * @public
9165
- */
9166
- owningProjectId?: string;
9167
- /**
9168
- * <p>The identifier of the subscription request approver's project.</p>
9169
- * @public
9170
- */
9171
- approverProjectId?: string;
9172
- /**
9173
- * <p>Specifies the way to sort the results of this action.</p>
9174
- * @public
9175
- */
9176
- sortBy?: SortKey;
9177
- /**
9178
- * <p>Specifies the sort order for the results of this action.</p>
9179
- * @public
9180
- */
9181
- sortOrder?: SortOrder;
9182
- /**
9183
- * <p>The maximum number of subscription requests to return in a single call to
9184
- * <code>ListSubscriptionRequests</code>. When the number of subscription requests to be
9185
- * listed is greater than the value of <code>MaxResults</code>, the response contains a
9186
- * <code>NextToken</code> value that you can use in a subsequent call to
9187
- * <code>ListSubscriptionRequests</code> to list the next set of subscription
9188
- * requests.</p>
9189
- * @public
9190
- */
9191
- maxResults?: number;
9192
- /**
9193
- * <p>When the number of subscription requests is greater than the default value for the
9194
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
9195
- * <code>MaxResults</code> that is less than the number of subscription requests, the
9196
- * response includes a pagination token named <code>NextToken</code>. You can specify this
9197
- * <code>NextToken</code> value in a subsequent call to
9198
- * <code>ListSubscriptionRequests</code> to list the next set of subscription
9199
- * requests.</p>
9200
- * @public
9201
- */
9202
- nextToken?: string;
9203
- }
9204
- /**
9205
- * <p>The details of the subscription request.</p>
9206
- * @public
9207
- */
9208
- export interface SubscriptionRequestSummary {
9209
- /**
9210
- * <p>The identifier of the subscription request.</p>
9211
- * @public
9212
- */
9213
- id: string | undefined;
9214
- /**
9215
- * <p>The Amazon DataZone user who created the subscription request.</p>
9216
- * @public
9217
- */
9218
- createdBy: string | undefined;
9219
- /**
9220
- * <p>The identifier of the Amazon DataZone user who updated the subscription request.</p>
9221
- * @public
9222
- */
9223
- updatedBy?: string;
9224
- /**
9225
- * <p>The identifier of the Amazon DataZone domain in which a subscription request exists.</p>
9226
- * @public
9227
- */
9228
- domainId: string | undefined;
9229
- /**
9230
- * <p>The status of the subscription request.</p>
9231
- * @public
9232
- */
9233
- status: SubscriptionRequestStatus | undefined;
9234
- /**
9235
- * <p>The timestamp of when a subscription request was created.</p>
9236
- * @public
9237
- */
9238
- createdAt: Date | undefined;
9239
- /**
9240
- * <p>The timestamp of when the subscription request was updated.</p>
9241
- * @public
9242
- */
9243
- updatedAt: Date | undefined;
9244
- /**
9245
- * <p>The reason for the subscription request.</p>
9246
- * @public
9247
- */
9248
- requestReason: string | undefined;
9249
- /**
9250
- * <p>The principals included in the subscription request. </p>
9251
- * @public
9252
- */
9253
- subscribedPrincipals: SubscribedPrincipal[] | undefined;
9254
- /**
9255
- * <p>The listings included in the subscription request.</p>
9256
- * @public
9257
- */
9258
- subscribedListings: SubscribedListing[] | undefined;
9259
- /**
9260
- * <p>The identifier of the subscription request reviewer.</p>
9261
- * @public
9262
- */
9263
- reviewerId?: string;
9264
- /**
9265
- * <p>The decision comment of the subscription request.</p>
9266
- * @public
9267
- */
9268
- decisionComment?: string;
9269
- }
9270
- /**
9271
- * @public
9272
- */
9273
- export interface ListSubscriptionRequestsOutput {
9274
- /**
9275
- * <p>The results of the <code>ListSubscriptionRequests</code> action. </p>
9276
- * @public
9277
- */
9278
- items: SubscriptionRequestSummary[] | undefined;
9279
- /**
9280
- * <p>When the number of subscription requests is greater than the default value for the
9281
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
9282
- * <code>MaxResults</code> that is less than the number of subscription requests, the
9283
- * response includes a pagination token named <code>NextToken</code>. You can specify this
9284
- * <code>NextToken</code> value in a subsequent call to
9285
- * <code>ListSubscriptionRequests</code> to list the next set of subscription
9286
- * requests.</p>
9287
- * @public
9288
- */
9289
- nextToken?: string;
9290
- }
9291
- /**
9292
- * @public
9293
- */
9294
- export interface ListSubscriptionsInput {
9295
- /**
9296
- * <p>The identifier of the Amazon DataZone domain.</p>
9297
- * @public
9298
- */
9299
- domainIdentifier: string | undefined;
9300
- /**
9301
- * <p>The identifier of the subscription request for the subscriptions that you want to
9302
- * list.</p>
9303
- * @public
9304
- */
9305
- subscriptionRequestIdentifier?: string;
9306
- /**
9307
- * <p>The status of the subscriptions that you want to list.</p>
9308
- * @public
9309
- */
9310
- status?: SubscriptionStatus;
9311
- /**
9312
- * <p>The identifier of the subscribed listing for the subscriptions that you want to
9313
- * list.</p>
9314
- * @public
9315
- */
9316
- subscribedListingId?: string;
9317
- /**
9318
- * <p>The identifier of the owning project.</p>
9319
- * @public
9320
- */
9321
- owningProjectId?: string;
9322
- /**
9323
- * <p>The identifier of the project for the subscription's approver.</p>
9324
- * @public
9325
- */
9326
- approverProjectId?: string;
9327
- /**
9328
- * <p>Specifies the way in which the results of this action are to be sorted.</p>
9329
- * @public
9330
- */
9331
- sortBy?: SortKey;
9332
- /**
9333
- * <p>Specifies the sort order for the results of this action.</p>
9334
- * @public
9335
- */
9336
- sortOrder?: SortOrder;
9337
- /**
9338
- * <p>The maximum number of subscriptions to return in a single call to
9339
- * <code>ListSubscriptions</code>. When the number of subscriptions to be listed is greater
9340
- * than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code>
9341
- * value that you can use in a subsequent call to <code>ListSubscriptions</code> to list the
9342
- * next set of Subscriptions. </p>
9343
- * @public
9344
- */
9345
- maxResults?: number;
9346
- /**
9347
- * <p>When the number of subscriptions is greater than the default value for the
9348
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
9349
- * <code>MaxResults</code> that is less than the number of subscriptions, the response
9350
- * includes a pagination token named <code>NextToken</code>. You can specify this
9351
- * <code>NextToken</code> value in a subsequent call to <code>ListSubscriptions</code> to
9352
- * list the next set of subscriptions.</p>
9353
- * @public
9354
- */
9355
- nextToken?: string;
9356
- }
9357
- /**
9358
- * <p>The details of the subscription.</p>
9359
- * @public
9360
- */
9361
- export interface SubscriptionSummary {
9362
- /**
9363
- * <p>The identifier of the subscription.</p>
9364
- * @public
9365
- */
9366
- id: string | undefined;
9367
- /**
9368
- * <p>The Amazon DataZone user who created the subscription.</p>
9369
- * @public
9370
- */
9371
- createdBy: string | undefined;
9372
- /**
9373
- * <p>The Amazon DataZone user who updated the subscription.</p>
9374
- * @public
9375
- */
9376
- updatedBy?: string;
9377
- /**
9378
- * <p>The identifier of the Amazon DataZone domain in which a subscription exists.</p>
9379
- * @public
9380
- */
9381
- domainId: string | undefined;
9382
- /**
9383
- * <p>The status of the subscription.</p>
9384
- * @public
9385
- */
9386
- status: SubscriptionStatus | undefined;
9387
- /**
9388
- * <p>The timestamp of when the subscription was created.</p>
9389
- * @public
9390
- */
9391
- createdAt: Date | undefined;
9392
- /**
9393
- * <p>The timestamp of when the subscription was updated.</p>
9394
- * @public
9395
- */
9396
- updatedAt: Date | undefined;
9397
- /**
9398
- * <p>The principal included in the subscription.</p>
9399
- * @public
9400
- */
9401
- subscribedPrincipal: SubscribedPrincipal | undefined;
9402
- /**
9403
- * <p>The listing included in the subscription.</p>
9404
- * @public
9405
- */
9406
- subscribedListing: SubscribedListing | undefined;
9407
- /**
9408
- * <p>The identifier of the subscription request for the subscription.</p>
9409
- * @public
9410
- */
9411
- subscriptionRequestId?: string;
9412
- /**
9413
- * <p>The retain permissions included in the subscription.</p>
9414
- * @public
9415
- */
9416
- retainPermissions?: boolean;
9417
- }
9418
- /**
9419
- * @public
9420
- */
9421
- export interface ListSubscriptionsOutput {
9422
- /**
9423
- * <p>The results of the <code>ListSubscriptions</code> action.</p>
9424
- * @public
9425
- */
9426
- items: SubscriptionSummary[] | undefined;
9427
- /**
9428
- * <p>When the number of subscriptions is greater than the default value for the
9429
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
9430
- * <code>MaxResults</code> that is less than the number of subscriptions, the response
9431
- * includes a pagination token named <code>NextToken</code>. You can specify this
9432
- * <code>NextToken</code> value in a subsequent call to <code>ListSubscriptions</code> to
9433
- * list the next set of subscriptions.</p>
9434
- * @public
9435
- */
9436
- nextToken?: string;
9437
- }
9438
- /**
9439
- * @internal
9440
- */
9441
- export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
9442
- /**
9443
- * @internal
9444
- */
9445
- export declare const AcceptPredictionsInputFilterSensitiveLog: (obj: AcceptPredictionsInput) => any;
9446
- /**
9447
- * @internal
9448
- */
9449
- export declare const AcceptSubscriptionRequestInputFilterSensitiveLog: (obj: AcceptSubscriptionRequestInput) => any;
9450
- /**
9451
- * @internal
9452
- */
9453
- export declare const DetailedGlossaryTermFilterSensitiveLog: (obj: DetailedGlossaryTerm) => any;
9454
- /**
9455
- * @internal
9456
- */
9457
- export declare const SubscribedAssetListingFilterSensitiveLog: (obj: SubscribedAssetListing) => any;
9458
- /**
9459
- * @internal
9460
- */
9461
- export declare const SubscribedListingItemFilterSensitiveLog: (obj: SubscribedListingItem) => any;
9462
- /**
9463
- * @internal
9464
- */
9465
- export declare const SubscribedListingFilterSensitiveLog: (obj: SubscribedListing) => any;
9466
- /**
9467
- * @internal
9468
- */
9469
- export declare const SubscribedProjectFilterSensitiveLog: (obj: SubscribedProject) => any;
9470
- /**
9471
- * @internal
9249
+ * @internal
9472
9250
  */
9473
9251
  export declare const SubscribedPrincipalFilterSensitiveLog: (obj: SubscribedPrincipal) => any;
9474
9252
  /**
@@ -9799,31 +9577,3 @@ export declare const NotificationOutputFilterSensitiveLog: (obj: NotificationOut
9799
9577
  * @internal
9800
9578
  */
9801
9579
  export declare const ListNotificationsOutputFilterSensitiveLog: (obj: ListNotificationsOutput) => any;
9802
- /**
9803
- * @internal
9804
- */
9805
- export declare const ListProjectsInputFilterSensitiveLog: (obj: ListProjectsInput) => any;
9806
- /**
9807
- * @internal
9808
- */
9809
- export declare const ProjectSummaryFilterSensitiveLog: (obj: ProjectSummary) => any;
9810
- /**
9811
- * @internal
9812
- */
9813
- export declare const ListProjectsOutputFilterSensitiveLog: (obj: ListProjectsOutput) => any;
9814
- /**
9815
- * @internal
9816
- */
9817
- export declare const SubscriptionRequestSummaryFilterSensitiveLog: (obj: SubscriptionRequestSummary) => any;
9818
- /**
9819
- * @internal
9820
- */
9821
- export declare const ListSubscriptionRequestsOutputFilterSensitiveLog: (obj: ListSubscriptionRequestsOutput) => any;
9822
- /**
9823
- * @internal
9824
- */
9825
- export declare const SubscriptionSummaryFilterSensitiveLog: (obj: SubscriptionSummary) => any;
9826
- /**
9827
- * @internal
9828
- */
9829
- export declare const ListSubscriptionsOutputFilterSensitiveLog: (obj: ListSubscriptionsOutput) => any;