@aws-sdk/client-datazone 3.428.0 → 3.430.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.
@@ -11,7 +11,7 @@ export declare const AcceptRuleBehavior: {
11
11
  export type AcceptRuleBehavior =
12
12
  (typeof AcceptRuleBehavior)[keyof typeof AcceptRuleBehavior];
13
13
  export interface AcceptRule {
14
- rule?: AcceptRuleBehavior | string;
14
+ rule?: AcceptRuleBehavior;
15
15
  threshold?: number;
16
16
  }
17
17
  export interface AcceptPredictionsInput {
@@ -153,7 +153,7 @@ export interface AcceptSubscriptionRequestOutput {
153
153
  createdBy: string | undefined;
154
154
  updatedBy?: string;
155
155
  domainId: string | undefined;
156
- status: SubscriptionRequestStatus | string | undefined;
156
+ status: SubscriptionRequestStatus | undefined;
157
157
  createdAt: Date | undefined;
158
158
  updatedAt: Date | undefined;
159
159
  requestReason: string | undefined;
@@ -170,7 +170,7 @@ export declare const ListingStatus: {
170
170
  export type ListingStatus = (typeof ListingStatus)[keyof typeof ListingStatus];
171
171
  export interface AssetListingDetails {
172
172
  listingId: string | undefined;
173
- listingStatus: ListingStatus | string | undefined;
173
+ listingStatus: ListingStatus | undefined;
174
174
  }
175
175
  export interface FormInput {
176
176
  formName: string | undefined;
@@ -438,7 +438,7 @@ export interface CancelSubscriptionOutput {
438
438
  createdBy: string | undefined;
439
439
  updatedBy?: string;
440
440
  domainId: string | undefined;
441
- status: SubscriptionStatus | string | undefined;
441
+ status: SubscriptionStatus | undefined;
442
442
  createdAt: Date | undefined;
443
443
  updatedAt: Date | undefined;
444
444
  subscribedPrincipal: SubscribedPrincipal | undefined;
@@ -466,7 +466,7 @@ export type ConfigurableActionTypeAuthorization =
466
466
  (typeof ConfigurableActionTypeAuthorization)[keyof typeof ConfigurableActionTypeAuthorization];
467
467
  export interface ConfigurableEnvironmentAction {
468
468
  type: string | undefined;
469
- auth?: ConfigurableActionTypeAuthorization | string;
469
+ auth?: ConfigurableActionTypeAuthorization;
470
470
  parameters: ConfigurableActionParameter[] | undefined;
471
471
  }
472
472
  export declare const FilterExpressionType: {
@@ -476,7 +476,7 @@ export declare const FilterExpressionType: {
476
476
  export type FilterExpressionType =
477
477
  (typeof FilterExpressionType)[keyof typeof FilterExpressionType];
478
478
  export interface FilterExpression {
479
- type: FilterExpressionType | string | undefined;
479
+ type: FilterExpressionType | undefined;
480
480
  expression: string | undefined;
481
481
  }
482
482
  export interface RelationalFilterConfiguration {
@@ -636,7 +636,7 @@ export declare const Timezone: {
636
636
  };
637
637
  export type Timezone = (typeof Timezone)[keyof typeof Timezone];
638
638
  export interface ScheduleConfiguration {
639
- timezone?: Timezone | string;
639
+ timezone?: Timezone;
640
640
  schedule?: string;
641
641
  }
642
642
  export interface CreateDataSourceInput {
@@ -648,7 +648,7 @@ export interface CreateDataSourceInput {
648
648
  type: string | undefined;
649
649
  configuration?: DataSourceConfigurationInput;
650
650
  recommendation?: RecommendationConfiguration;
651
- enableSetting?: EnableSetting | string;
651
+ enableSetting?: EnableSetting;
652
652
  schedule?: ScheduleConfiguration;
653
653
  publishOnImport?: boolean;
654
654
  assetFormsInput?: FormInput[];
@@ -710,7 +710,7 @@ export declare const DataSourceErrorType: {
710
710
  export type DataSourceErrorType =
711
711
  (typeof DataSourceErrorType)[keyof typeof DataSourceErrorType];
712
712
  export interface DataSourceErrorMessage {
713
- errorType: DataSourceErrorType | string | undefined;
713
+ errorType: DataSourceErrorType | undefined;
714
714
  errorDetail?: string;
715
715
  }
716
716
  export declare const DataSourceRunStatus: {
@@ -736,7 +736,7 @@ export type DataSourceStatus =
736
736
  (typeof DataSourceStatus)[keyof typeof DataSourceStatus];
737
737
  export interface CreateDataSourceOutput {
738
738
  id: string | undefined;
739
- status?: DataSourceStatus | string;
739
+ status?: DataSourceStatus;
740
740
  type?: string;
741
741
  name: string | undefined;
742
742
  description?: string;
@@ -745,11 +745,11 @@ export interface CreateDataSourceOutput {
745
745
  environmentId: string | undefined;
746
746
  configuration?: DataSourceConfigurationOutput;
747
747
  recommendation?: RecommendationConfiguration;
748
- enableSetting?: EnableSetting | string;
748
+ enableSetting?: EnableSetting;
749
749
  publishOnImport?: boolean;
750
750
  assetFormsOutput?: FormOutput[];
751
751
  schedule?: ScheduleConfiguration;
752
- lastRunStatus?: DataSourceRunStatus | string;
752
+ lastRunStatus?: DataSourceRunStatus;
753
753
  lastRunAt?: Date;
754
754
  lastRunErrorMessage?: DataSourceErrorMessage;
755
755
  errorMessage?: DataSourceErrorMessage;
@@ -763,8 +763,8 @@ export declare const UserAssignment: {
763
763
  export type UserAssignment =
764
764
  (typeof UserAssignment)[keyof typeof UserAssignment];
765
765
  export interface SingleSignOn {
766
- type?: AuthType | string;
767
- userAssignment?: UserAssignment | string;
766
+ type?: AuthType;
767
+ userAssignment?: UserAssignment;
768
768
  }
769
769
  export interface CreateDomainInput {
770
770
  name: string | undefined;
@@ -792,7 +792,7 @@ export interface CreateDomainOutput {
792
792
  domainExecutionRole?: string;
793
793
  arn?: string;
794
794
  kmsKeyIdentifier?: string;
795
- status?: DomainStatus | string;
795
+ status?: DomainStatus;
796
796
  portalUrl?: string;
797
797
  tags?: Record<string, string>;
798
798
  }
@@ -834,8 +834,8 @@ export interface EnvironmentError {
834
834
  }
835
835
  export interface Deployment {
836
836
  deploymentId?: string;
837
- deploymentType?: DeploymentType | string;
838
- deploymentStatus?: DeploymentStatus | string;
837
+ deploymentType?: DeploymentType;
838
+ deploymentStatus?: DeploymentStatus;
839
839
  failureReason?: EnvironmentError;
840
840
  messages?: string[];
841
841
  isDeploymentComplete?: boolean;
@@ -903,7 +903,7 @@ export interface CreateEnvironmentOutput {
903
903
  awsAccountRegion?: string;
904
904
  provider: string | undefined;
905
905
  provisionedResources?: Resource[];
906
- status?: EnvironmentStatus | string;
906
+ status?: EnvironmentStatus;
907
907
  environmentActions?: ConfigurableEnvironmentAction[];
908
908
  glossaryTerms?: string[];
909
909
  userParameters?: CustomParameter[];
@@ -963,7 +963,7 @@ export interface CreateFormTypeInput {
963
963
  name: string | undefined;
964
964
  model: Model | undefined;
965
965
  owningProjectIdentifier: string | undefined;
966
- status?: FormTypeStatus | string;
966
+ status?: FormTypeStatus;
967
967
  description?: string;
968
968
  }
969
969
  export interface CreateFormTypeOutput {
@@ -986,7 +986,7 @@ export interface CreateGlossaryInput {
986
986
  name: string | undefined;
987
987
  owningProjectIdentifier: string | undefined;
988
988
  description?: string;
989
- status?: GlossaryStatus | string;
989
+ status?: GlossaryStatus;
990
990
  clientToken?: string;
991
991
  }
992
992
  export interface CreateGlossaryOutput {
@@ -995,7 +995,7 @@ export interface CreateGlossaryOutput {
995
995
  name: string | undefined;
996
996
  owningProjectId: string | undefined;
997
997
  description?: string;
998
- status?: GlossaryStatus | string;
998
+ status?: GlossaryStatus;
999
999
  }
1000
1000
  export declare const GlossaryTermStatus: {
1001
1001
  readonly DISABLED: "DISABLED";
@@ -1011,7 +1011,7 @@ export interface CreateGlossaryTermInput {
1011
1011
  domainIdentifier: string | undefined;
1012
1012
  glossaryIdentifier: string | undefined;
1013
1013
  name: string | undefined;
1014
- status?: GlossaryTermStatus | string;
1014
+ status?: GlossaryTermStatus;
1015
1015
  shortDescription?: string;
1016
1016
  longDescription?: string;
1017
1017
  termRelations?: TermRelations;
@@ -1022,7 +1022,7 @@ export interface CreateGlossaryTermOutput {
1022
1022
  domainId: string | undefined;
1023
1023
  glossaryId: string | undefined;
1024
1024
  name: string | undefined;
1025
- status: GlossaryTermStatus | string | undefined;
1025
+ status: GlossaryTermStatus | undefined;
1026
1026
  shortDescription?: string;
1027
1027
  longDescription?: string;
1028
1028
  termRelations?: TermRelations;
@@ -1041,7 +1041,7 @@ export type GroupProfileStatus =
1041
1041
  export interface CreateGroupProfileOutput {
1042
1042
  domainId?: string;
1043
1043
  id?: string;
1044
- status?: GroupProfileStatus | string;
1044
+ status?: GroupProfileStatus;
1045
1045
  groupName?: string;
1046
1046
  }
1047
1047
  export declare const EntityType: {
@@ -1051,15 +1051,15 @@ export type EntityType = (typeof EntityType)[keyof typeof EntityType];
1051
1051
  export interface CreateListingChangeSetInput {
1052
1052
  domainIdentifier: string | undefined;
1053
1053
  entityIdentifier: string | undefined;
1054
- entityType: EntityType | string | undefined;
1054
+ entityType: EntityType | undefined;
1055
1055
  entityRevision?: string;
1056
- action: ChangeAction | string | undefined;
1056
+ action: ChangeAction | undefined;
1057
1057
  clientToken?: string;
1058
1058
  }
1059
1059
  export interface CreateListingChangeSetOutput {
1060
1060
  listingId: string | undefined;
1061
1061
  listingRevision: string | undefined;
1062
- status: ListingStatus | string | undefined;
1062
+ status: ListingStatus | undefined;
1063
1063
  }
1064
1064
  export interface CreateProjectInput {
1065
1065
  domainIdentifier: string | undefined;
@@ -1114,7 +1114,7 @@ export interface CreateProjectMembershipInput {
1114
1114
  domainIdentifier: string | undefined;
1115
1115
  projectIdentifier: string | undefined;
1116
1116
  member: Member | undefined;
1117
- designation: UserDesignation | string | undefined;
1117
+ designation: UserDesignation | undefined;
1118
1118
  }
1119
1119
  export interface CreateProjectMembershipOutput {}
1120
1120
  export interface ListingRevisionInput {
@@ -1165,7 +1165,7 @@ export type SubscriptionGrantStatus =
1165
1165
  export interface SubscribedAsset {
1166
1166
  assetId: string | undefined;
1167
1167
  assetRevision: string | undefined;
1168
- status: SubscriptionGrantStatus | string | undefined;
1168
+ status: SubscriptionGrantStatus | undefined;
1169
1169
  targetName?: string;
1170
1170
  failureCause?: FailureCause;
1171
1171
  grantedTimestamp?: Date;
@@ -1213,7 +1213,7 @@ export interface CreateSubscriptionGrantOutput {
1213
1213
  updatedAt: Date | undefined;
1214
1214
  subscriptionTargetId: string | undefined;
1215
1215
  grantedEntity: GrantedEntity | undefined;
1216
- status: SubscriptionGrantOverallStatus | string | undefined;
1216
+ status: SubscriptionGrantOverallStatus | undefined;
1217
1217
  assets?: SubscribedAsset[];
1218
1218
  subscriptionId?: string;
1219
1219
  }
@@ -1253,7 +1253,7 @@ export interface CreateSubscriptionRequestOutput {
1253
1253
  createdBy: string | undefined;
1254
1254
  updatedBy?: string;
1255
1255
  domainId: string | undefined;
1256
- status: SubscriptionRequestStatus | string | undefined;
1256
+ status: SubscriptionRequestStatus | undefined;
1257
1257
  createdAt: Date | undefined;
1258
1258
  updatedAt: Date | undefined;
1259
1259
  requestReason: string | undefined;
@@ -1304,7 +1304,7 @@ export type UserType = (typeof UserType)[keyof typeof UserType];
1304
1304
  export interface CreateUserProfileInput {
1305
1305
  domainIdentifier: string | undefined;
1306
1306
  userIdentifier: string | undefined;
1307
- userType?: UserType | string;
1307
+ userType?: UserType;
1308
1308
  clientToken?: string;
1309
1309
  }
1310
1310
  export interface IamUserProfileDetails {
@@ -1359,8 +1359,8 @@ export type UserProfileType =
1359
1359
  export interface CreateUserProfileOutput {
1360
1360
  domainId?: string;
1361
1361
  id?: string;
1362
- type?: UserProfileType | string;
1363
- status?: UserProfileStatus | string;
1362
+ type?: UserProfileType;
1363
+ status?: UserProfileStatus;
1364
1364
  details?: UserProfileDetails;
1365
1365
  }
1366
1366
  export declare const DataAssetActivityStatus: {
@@ -1399,7 +1399,7 @@ export interface DeleteDataSourceInput {
1399
1399
  }
1400
1400
  export interface DeleteDataSourceOutput {
1401
1401
  id: string | undefined;
1402
- status?: DataSourceStatus | string;
1402
+ status?: DataSourceStatus;
1403
1403
  type?: string;
1404
1404
  name: string | undefined;
1405
1405
  description?: string;
@@ -1407,11 +1407,11 @@ export interface DeleteDataSourceOutput {
1407
1407
  projectId: string | undefined;
1408
1408
  environmentId: string | undefined;
1409
1409
  configuration?: DataSourceConfigurationOutput;
1410
- enableSetting?: EnableSetting | string;
1410
+ enableSetting?: EnableSetting;
1411
1411
  publishOnImport?: boolean;
1412
1412
  assetFormsOutput?: FormOutput[];
1413
1413
  schedule?: ScheduleConfiguration;
1414
- lastRunStatus?: DataSourceRunStatus | string;
1414
+ lastRunStatus?: DataSourceRunStatus;
1415
1415
  lastRunAt?: Date;
1416
1416
  lastRunErrorMessage?: DataSourceErrorMessage;
1417
1417
  errorMessage?: DataSourceErrorMessage;
@@ -1424,7 +1424,7 @@ export interface GetDataSourceInput {
1424
1424
  }
1425
1425
  export interface GetDataSourceOutput {
1426
1426
  id: string | undefined;
1427
- status?: DataSourceStatus | string;
1427
+ status?: DataSourceStatus;
1428
1428
  type?: string;
1429
1429
  name: string | undefined;
1430
1430
  description?: string;
@@ -1433,11 +1433,11 @@ export interface GetDataSourceOutput {
1433
1433
  environmentId: string | undefined;
1434
1434
  configuration?: DataSourceConfigurationOutput;
1435
1435
  recommendation?: RecommendationConfiguration;
1436
- enableSetting?: EnableSetting | string;
1436
+ enableSetting?: EnableSetting;
1437
1437
  publishOnImport?: boolean;
1438
1438
  assetFormsOutput?: FormOutput[];
1439
1439
  schedule?: ScheduleConfiguration;
1440
- lastRunStatus?: DataSourceRunStatus | string;
1440
+ lastRunStatus?: DataSourceRunStatus;
1441
1441
  lastRunAt?: Date;
1442
1442
  lastRunErrorMessage?: DataSourceErrorMessage;
1443
1443
  lastRunAssetCount?: number;
@@ -1450,7 +1450,7 @@ export interface ListDataSourcesInput {
1450
1450
  projectIdentifier: string | undefined;
1451
1451
  environmentIdentifier?: string;
1452
1452
  type?: string;
1453
- status?: DataSourceStatus | string;
1453
+ status?: DataSourceStatus;
1454
1454
  name?: string;
1455
1455
  nextToken?: string;
1456
1456
  maxResults?: number;
@@ -1461,10 +1461,10 @@ export interface DataSourceSummary {
1461
1461
  dataSourceId: string | undefined;
1462
1462
  name: string | undefined;
1463
1463
  type: string | undefined;
1464
- status: DataSourceStatus | string | undefined;
1465
- enableSetting?: EnableSetting | string;
1464
+ status: DataSourceStatus | undefined;
1465
+ enableSetting?: EnableSetting;
1466
1466
  schedule?: ScheduleConfiguration;
1467
- lastRunStatus?: DataSourceRunStatus | string;
1467
+ lastRunStatus?: DataSourceRunStatus;
1468
1468
  lastRunAt?: Date;
1469
1469
  lastRunErrorMessage?: DataSourceErrorMessage;
1470
1470
  lastRunAssetCount?: number;
@@ -1480,7 +1480,7 @@ export interface UpdateDataSourceInput {
1480
1480
  identifier: string | undefined;
1481
1481
  name?: string;
1482
1482
  description?: string;
1483
- enableSetting?: EnableSetting | string;
1483
+ enableSetting?: EnableSetting;
1484
1484
  publishOnImport?: boolean;
1485
1485
  assetFormsInput?: FormInput[];
1486
1486
  schedule?: ScheduleConfiguration;
@@ -1489,7 +1489,7 @@ export interface UpdateDataSourceInput {
1489
1489
  }
1490
1490
  export interface UpdateDataSourceOutput {
1491
1491
  id: string | undefined;
1492
- status?: DataSourceStatus | string;
1492
+ status?: DataSourceStatus;
1493
1493
  type?: string;
1494
1494
  name: string | undefined;
1495
1495
  description?: string;
@@ -1498,11 +1498,11 @@ export interface UpdateDataSourceOutput {
1498
1498
  environmentId: string | undefined;
1499
1499
  configuration?: DataSourceConfigurationOutput;
1500
1500
  recommendation?: RecommendationConfiguration;
1501
- enableSetting?: EnableSetting | string;
1501
+ enableSetting?: EnableSetting;
1502
1502
  publishOnImport?: boolean;
1503
1503
  assetFormsOutput?: FormOutput[];
1504
1504
  schedule?: ScheduleConfiguration;
1505
- lastRunStatus?: DataSourceRunStatus | string;
1505
+ lastRunStatus?: DataSourceRunStatus;
1506
1506
  lastRunAt?: Date;
1507
1507
  lastRunErrorMessage?: DataSourceErrorMessage;
1508
1508
  errorMessage?: DataSourceErrorMessage;
@@ -1531,8 +1531,8 @@ export interface GetDataSourceRunOutput {
1531
1531
  dataSourceId: string | undefined;
1532
1532
  id: string | undefined;
1533
1533
  projectId: string | undefined;
1534
- status: DataSourceRunStatus | string | undefined;
1535
- type: DataSourceRunType | string | undefined;
1534
+ status: DataSourceRunStatus | undefined;
1535
+ type: DataSourceRunType | undefined;
1536
1536
  dataSourceConfigurationSnapshot?: string;
1537
1537
  runStatisticsForAssets?: RunStatisticsForAssets;
1538
1538
  errorMessage?: DataSourceErrorMessage;
@@ -1544,15 +1544,15 @@ export interface GetDataSourceRunOutput {
1544
1544
  export interface ListDataSourceRunsInput {
1545
1545
  domainIdentifier: string | undefined;
1546
1546
  dataSourceIdentifier: string | undefined;
1547
- status?: DataSourceRunStatus | string;
1547
+ status?: DataSourceRunStatus;
1548
1548
  nextToken?: string;
1549
1549
  maxResults?: number;
1550
1550
  }
1551
1551
  export interface DataSourceRunSummary {
1552
1552
  id: string | undefined;
1553
1553
  dataSourceId: string | undefined;
1554
- type: DataSourceRunType | string | undefined;
1555
- status: DataSourceRunStatus | string | undefined;
1554
+ type: DataSourceRunType | undefined;
1555
+ status: DataSourceRunStatus | undefined;
1556
1556
  projectId: string | undefined;
1557
1557
  runStatisticsForAssets?: RunStatisticsForAssets;
1558
1558
  errorMessage?: DataSourceErrorMessage;
@@ -1575,8 +1575,8 @@ export interface StartDataSourceRunOutput {
1575
1575
  dataSourceId: string | undefined;
1576
1576
  id: string | undefined;
1577
1577
  projectId: string | undefined;
1578
- status: DataSourceRunStatus | string | undefined;
1579
- type: DataSourceRunType | string | undefined;
1578
+ status: DataSourceRunStatus | undefined;
1579
+ type: DataSourceRunType | undefined;
1580
1580
  dataSourceConfigurationSnapshot?: string;
1581
1581
  runStatisticsForAssets?: RunStatisticsForAssets;
1582
1582
  errorMessage?: DataSourceErrorMessage;
@@ -1589,7 +1589,7 @@ export interface DataSourceRunActivity {
1589
1589
  database: string | undefined;
1590
1590
  dataSourceRunId: string | undefined;
1591
1591
  technicalName: string | undefined;
1592
- dataAssetStatus: DataAssetActivityStatus | string | undefined;
1592
+ dataAssetStatus: DataAssetActivityStatus | undefined;
1593
1593
  projectId: string | undefined;
1594
1594
  dataAssetId?: string;
1595
1595
  technicalDescription?: string;
@@ -1629,7 +1629,7 @@ export interface DeleteSubscriptionGrantOutput {
1629
1629
  updatedAt: Date | undefined;
1630
1630
  subscriptionTargetId: string | undefined;
1631
1631
  grantedEntity: GrantedEntity | undefined;
1632
- status: SubscriptionGrantOverallStatus | string | undefined;
1632
+ status: SubscriptionGrantOverallStatus | undefined;
1633
1633
  assets?: SubscribedAsset[];
1634
1634
  subscriptionId?: string;
1635
1635
  }
@@ -1647,7 +1647,7 @@ export interface DeleteDomainInput {
1647
1647
  clientToken?: string;
1648
1648
  }
1649
1649
  export interface DeleteDomainOutput {
1650
- status: DomainStatus | string | undefined;
1650
+ status: DomainStatus | undefined;
1651
1651
  }
1652
1652
  export interface GetDomainInput {
1653
1653
  identifier: string | undefined;
@@ -1660,14 +1660,14 @@ export interface GetDomainOutput {
1660
1660
  domainExecutionRole: string | undefined;
1661
1661
  arn?: string;
1662
1662
  kmsKeyIdentifier?: string;
1663
- status: DomainStatus | string | undefined;
1663
+ status: DomainStatus | undefined;
1664
1664
  portalUrl?: string;
1665
1665
  createdAt?: Date;
1666
1666
  lastUpdatedAt?: Date;
1667
1667
  tags?: Record<string, string>;
1668
1668
  }
1669
1669
  export interface ListDomainsInput {
1670
- status?: DomainStatus | string;
1670
+ status?: DomainStatus;
1671
1671
  maxResults?: number;
1672
1672
  nextToken?: string;
1673
1673
  }
@@ -1677,7 +1677,7 @@ export interface DomainSummary {
1677
1677
  description?: string;
1678
1678
  arn: string | undefined;
1679
1679
  managedAccountId: string | undefined;
1680
- status: DomainStatus | string | undefined;
1680
+ status: DomainStatus | undefined;
1681
1681
  portalUrl?: string;
1682
1682
  createdAt: Date | undefined;
1683
1683
  lastUpdatedAt?: Date;
@@ -1780,7 +1780,7 @@ export interface GetFormTypeOutput {
1780
1780
  owningProjectId?: string;
1781
1781
  originDomainId?: string;
1782
1782
  originProjectId?: string;
1783
- status?: FormTypeStatus | string;
1783
+ status?: FormTypeStatus;
1784
1784
  createdAt?: Date;
1785
1785
  createdBy?: string;
1786
1786
  description?: string;
@@ -1804,7 +1804,7 @@ export interface GetEnvironmentOutput {
1804
1804
  awsAccountRegion?: string;
1805
1805
  provider: string | undefined;
1806
1806
  provisionedResources?: Resource[];
1807
- status?: EnvironmentStatus | string;
1807
+ status?: EnvironmentStatus;
1808
1808
  environmentActions?: ConfigurableEnvironmentAction[];
1809
1809
  glossaryTerms?: string[];
1810
1810
  userParameters?: CustomParameter[];
@@ -1854,7 +1854,7 @@ export interface GetGroupProfileInput {
1854
1854
  export interface GetGroupProfileOutput {
1855
1855
  domainId?: string;
1856
1856
  id?: string;
1857
- status?: GroupProfileStatus | string;
1857
+ status?: GroupProfileStatus;
1858
1858
  groupName?: string;
1859
1859
  }
1860
1860
  export interface GetIamPortalLoginUrlInput {
@@ -1887,7 +1887,7 @@ export interface GetSubscriptionOutput {
1887
1887
  createdBy: string | undefined;
1888
1888
  updatedBy?: string;
1889
1889
  domainId: string | undefined;
1890
- status: SubscriptionStatus | string | undefined;
1890
+ status: SubscriptionStatus | undefined;
1891
1891
  createdAt: Date | undefined;
1892
1892
  updatedAt: Date | undefined;
1893
1893
  subscribedPrincipal: SubscribedPrincipal | undefined;
@@ -1908,7 +1908,7 @@ export interface GetSubscriptionGrantOutput {
1908
1908
  updatedAt: Date | undefined;
1909
1909
  subscriptionTargetId: string | undefined;
1910
1910
  grantedEntity: GrantedEntity | undefined;
1911
- status: SubscriptionGrantOverallStatus | string | undefined;
1911
+ status: SubscriptionGrantOverallStatus | undefined;
1912
1912
  assets?: SubscribedAsset[];
1913
1913
  subscriptionId?: string;
1914
1914
  }
@@ -1921,7 +1921,7 @@ export interface GetSubscriptionRequestDetailsOutput {
1921
1921
  createdBy: string | undefined;
1922
1922
  updatedBy?: string;
1923
1923
  domainId: string | undefined;
1924
- status: SubscriptionRequestStatus | string | undefined;
1924
+ status: SubscriptionRequestStatus | undefined;
1925
1925
  createdAt: Date | undefined;
1926
1926
  updatedAt: Date | undefined;
1927
1927
  requestReason: string | undefined;
@@ -1955,13 +1955,13 @@ export interface GetSubscriptionTargetOutput {
1955
1955
  export interface GetUserProfileInput {
1956
1956
  domainIdentifier: string | undefined;
1957
1957
  userIdentifier: string | undefined;
1958
- type?: UserProfileType | string;
1958
+ type?: UserProfileType;
1959
1959
  }
1960
1960
  export interface GetUserProfileOutput {
1961
1961
  domainId?: string;
1962
1962
  id?: string;
1963
- type?: UserProfileType | string;
1964
- status?: UserProfileStatus | string;
1963
+ type?: UserProfileType;
1964
+ status?: UserProfileStatus;
1965
1965
  details?: UserProfileDetails;
1966
1966
  }
1967
1967
  export interface DeleteGlossaryInput {
@@ -1979,7 +1979,7 @@ export interface GetGlossaryOutput {
1979
1979
  owningProjectId: string | undefined;
1980
1980
  name: string | undefined;
1981
1981
  description?: string;
1982
- status: GlossaryStatus | string | undefined;
1982
+ status: GlossaryStatus | undefined;
1983
1983
  createdAt?: Date;
1984
1984
  createdBy?: string;
1985
1985
  updatedAt?: Date;
@@ -1990,7 +1990,7 @@ export interface UpdateGlossaryInput {
1990
1990
  identifier: string | undefined;
1991
1991
  name?: string;
1992
1992
  description?: string;
1993
- status?: GlossaryStatus | string;
1993
+ status?: GlossaryStatus;
1994
1994
  clientToken?: string;
1995
1995
  }
1996
1996
  export interface UpdateGlossaryOutput {
@@ -1999,7 +1999,7 @@ export interface UpdateGlossaryOutput {
1999
1999
  name: string | undefined;
2000
2000
  owningProjectId: string | undefined;
2001
2001
  description?: string;
2002
- status?: GlossaryStatus | string;
2002
+ status?: GlossaryStatus;
2003
2003
  }
2004
2004
  export interface DeleteGlossaryTermInput {
2005
2005
  domainIdentifier: string | undefined;
@@ -2018,7 +2018,7 @@ export interface GetGlossaryTermOutput {
2018
2018
  shortDescription?: string;
2019
2019
  longDescription?: string;
2020
2020
  termRelations?: TermRelations;
2021
- status: GlossaryTermStatus | string | undefined;
2021
+ status: GlossaryTermStatus | undefined;
2022
2022
  createdAt?: Date;
2023
2023
  createdBy?: string;
2024
2024
  updatedAt?: Date;
@@ -2032,14 +2032,14 @@ export interface UpdateGlossaryTermInput {
2032
2032
  shortDescription?: string;
2033
2033
  longDescription?: string;
2034
2034
  termRelations?: TermRelations;
2035
- status?: GlossaryTermStatus | string;
2035
+ status?: GlossaryTermStatus;
2036
2036
  }
2037
2037
  export interface UpdateGlossaryTermOutput {
2038
2038
  id: string | undefined;
2039
2039
  domainId: string | undefined;
2040
2040
  glossaryId: string | undefined;
2041
2041
  name: string | undefined;
2042
- status: GlossaryTermStatus | string | undefined;
2042
+ status: GlossaryTermStatus | undefined;
2043
2043
  shortDescription?: string;
2044
2044
  longDescription?: string;
2045
2045
  termRelations?: TermRelations;
@@ -2057,7 +2057,7 @@ export interface ListAssetRevisionsOutput {
2057
2057
  export interface ListDataSourceRunActivitiesInput {
2058
2058
  domainIdentifier: string | undefined;
2059
2059
  identifier: string | undefined;
2060
- status?: DataAssetActivityStatus | string;
2060
+ status?: DataAssetActivityStatus;
2061
2061
  nextToken?: string;
2062
2062
  maxResults?: number;
2063
2063
  }
@@ -2115,7 +2115,7 @@ export interface ListEnvironmentProfilesOutput {
2115
2115
  export interface ListEnvironmentsInput {
2116
2116
  domainIdentifier: string | undefined;
2117
2117
  awsAccountId?: string;
2118
- status?: EnvironmentStatus | string;
2118
+ status?: EnvironmentStatus;
2119
2119
  awsAccountRegion?: string;
2120
2120
  projectIdentifier: string | undefined;
2121
2121
  environmentProfileIdentifier?: string;
@@ -2138,7 +2138,7 @@ export interface EnvironmentSummary {
2138
2138
  awsAccountId?: string;
2139
2139
  awsAccountRegion?: string;
2140
2140
  provider: string | undefined;
2141
- status?: EnvironmentStatus | string;
2141
+ status?: EnvironmentStatus;
2142
2142
  }
2143
2143
  export interface ListEnvironmentsOutput {
2144
2144
  items: EnvironmentSummary[] | undefined;
@@ -2183,7 +2183,7 @@ export interface GetListingOutput {
2183
2183
  item?: ListingItem;
2184
2184
  name?: string;
2185
2185
  description?: string;
2186
- status?: ListingStatus | string;
2186
+ status?: ListingStatus;
2187
2187
  }
2188
2188
  export declare const TaskStatus: {
2189
2189
  readonly ACTIVE: "ACTIVE";
@@ -2198,11 +2198,11 @@ export type NotificationType =
2198
2198
  (typeof NotificationType)[keyof typeof NotificationType];
2199
2199
  export interface ListNotificationsInput {
2200
2200
  domainIdentifier: string | undefined;
2201
- type: NotificationType | string | undefined;
2201
+ type: NotificationType | undefined;
2202
2202
  afterTimestamp?: Date;
2203
2203
  beforeTimestamp?: Date;
2204
2204
  subjects?: string[];
2205
- taskStatus?: TaskStatus | string;
2205
+ taskStatus?: TaskStatus;
2206
2206
  maxResults?: number;
2207
2207
  nextToken?: string;
2208
2208
  }
@@ -2212,7 +2212,7 @@ export declare const NotificationResourceType: {
2212
2212
  export type NotificationResourceType =
2213
2213
  (typeof NotificationResourceType)[keyof typeof NotificationResourceType];
2214
2214
  export interface NotificationResource {
2215
- type: NotificationResourceType | string | undefined;
2215
+ type: NotificationResourceType | undefined;
2216
2216
  id: string | undefined;
2217
2217
  name?: string;
2218
2218
  }
@@ -2228,16 +2228,16 @@ export type NotificationRole =
2228
2228
  export interface Topic {
2229
2229
  subject: string | undefined;
2230
2230
  resource: NotificationResource | undefined;
2231
- role: NotificationRole | string | undefined;
2231
+ role: NotificationRole | undefined;
2232
2232
  }
2233
2233
  export interface NotificationOutput {
2234
2234
  identifier: string | undefined;
2235
2235
  domainIdentifier: string | undefined;
2236
- type: NotificationType | string | undefined;
2236
+ type: NotificationType | undefined;
2237
2237
  topic: Topic | undefined;
2238
2238
  title: string | undefined;
2239
2239
  message: string | undefined;
2240
- status?: TaskStatus | string;
2240
+ status?: TaskStatus;
2241
2241
  actionLink: string | undefined;
2242
2242
  creationTimestamp: Date | undefined;
2243
2243
  lastUpdatedTimestamp: Date | undefined;
@@ -2260,8 +2260,8 @@ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
2260
2260
  export interface ListProjectMembershipsInput {
2261
2261
  domainIdentifier: string | undefined;
2262
2262
  projectIdentifier: string | undefined;
2263
- sortBy?: SortFieldProject | string;
2264
- sortOrder?: SortOrder | string;
2263
+ sortBy?: SortFieldProject;
2264
+ sortOrder?: SortOrder;
2265
2265
  nextToken?: string;
2266
2266
  maxResults?: number;
2267
2267
  }
@@ -2300,7 +2300,7 @@ export declare namespace MemberDetails {
2300
2300
  }
2301
2301
  export interface ProjectMember {
2302
2302
  memberDetails: MemberDetails | undefined;
2303
- designation: UserDesignation | string | undefined;
2303
+ designation: UserDesignation | undefined;
2304
2304
  }
2305
2305
  export interface ListProjectMembershipsOutput {
2306
2306
  members: ProjectMember[] | undefined;
@@ -2338,8 +2338,8 @@ export interface ListSubscriptionGrantsInput {
2338
2338
  subscriptionTargetId?: string;
2339
2339
  subscribedListingId?: string;
2340
2340
  subscriptionId?: string;
2341
- sortBy?: SortKey | string;
2342
- sortOrder?: SortOrder | string;
2341
+ sortBy?: SortKey;
2342
+ sortOrder?: SortOrder;
2343
2343
  maxResults?: number;
2344
2344
  nextToken?: string;
2345
2345
  }
@@ -2352,7 +2352,7 @@ export interface SubscriptionGrantSummary {
2352
2352
  updatedAt: Date | undefined;
2353
2353
  subscriptionTargetId: string | undefined;
2354
2354
  grantedEntity: GrantedEntity | undefined;
2355
- status: SubscriptionGrantOverallStatus | string | undefined;
2355
+ status: SubscriptionGrantOverallStatus | undefined;
2356
2356
  assets?: SubscribedAsset[];
2357
2357
  subscriptionId?: string;
2358
2358
  }
@@ -2362,12 +2362,12 @@ export interface ListSubscriptionGrantsOutput {
2362
2362
  }
2363
2363
  export interface ListSubscriptionRequestsInput {
2364
2364
  domainIdentifier: string | undefined;
2365
- status?: SubscriptionRequestStatus | string;
2365
+ status?: SubscriptionRequestStatus;
2366
2366
  subscribedListingId?: string;
2367
2367
  owningProjectId?: string;
2368
2368
  approverProjectId?: string;
2369
- sortBy?: SortKey | string;
2370
- sortOrder?: SortOrder | string;
2369
+ sortBy?: SortKey;
2370
+ sortOrder?: SortOrder;
2371
2371
  maxResults?: number;
2372
2372
  nextToken?: string;
2373
2373
  }
@@ -2376,7 +2376,7 @@ export interface SubscriptionRequestSummary {
2376
2376
  createdBy: string | undefined;
2377
2377
  updatedBy?: string;
2378
2378
  domainId: string | undefined;
2379
- status: SubscriptionRequestStatus | string | undefined;
2379
+ status: SubscriptionRequestStatus | undefined;
2380
2380
  createdAt: Date | undefined;
2381
2381
  updatedAt: Date | undefined;
2382
2382
  requestReason: string | undefined;
@@ -2392,12 +2392,12 @@ export interface ListSubscriptionRequestsOutput {
2392
2392
  export interface ListSubscriptionsInput {
2393
2393
  domainIdentifier: string | undefined;
2394
2394
  subscriptionRequestIdentifier?: string;
2395
- status?: SubscriptionStatus | string;
2395
+ status?: SubscriptionStatus;
2396
2396
  subscribedListingId?: string;
2397
2397
  owningProjectId?: string;
2398
2398
  approverProjectId?: string;
2399
- sortBy?: SortKey | string;
2400
- sortOrder?: SortOrder | string;
2399
+ sortBy?: SortKey;
2400
+ sortOrder?: SortOrder;
2401
2401
  maxResults?: number;
2402
2402
  nextToken?: string;
2403
2403
  }
@@ -2406,7 +2406,7 @@ export interface SubscriptionSummary {
2406
2406
  createdBy: string | undefined;
2407
2407
  updatedBy?: string;
2408
2408
  domainId: string | undefined;
2409
- status: SubscriptionStatus | string | undefined;
2409
+ status: SubscriptionStatus | undefined;
2410
2410
  createdAt: Date | undefined;
2411
2411
  updatedAt: Date | undefined;
2412
2412
  subscribedPrincipal: SubscribedPrincipal | undefined;
@@ -2421,8 +2421,8 @@ export interface ListSubscriptionsOutput {
2421
2421
  export interface ListSubscriptionTargetsInput {
2422
2422
  domainIdentifier: string | undefined;
2423
2423
  environmentIdentifier: string | undefined;
2424
- sortBy?: SortKey | string;
2425
- sortOrder?: SortOrder | string;
2424
+ sortBy?: SortKey;
2425
+ sortOrder?: SortOrder;
2426
2426
  maxResults?: number;
2427
2427
  nextToken?: string;
2428
2428
  }