@aws-sdk/client-datazone 3.1030.0 → 3.1031.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 (38) hide show
  1. package/dist-cjs/index.js +9 -7
  2. package/dist-cjs/schemas/schemas_0.js +65 -48
  3. package/dist-es/models/enums.js +9 -7
  4. package/dist-es/schemas/schemas_0.js +57 -40
  5. package/dist-types/commands/AcceptSubscriptionRequestCommand.d.ts +2 -0
  6. package/dist-types/commands/CancelSubscriptionCommand.d.ts +2 -0
  7. package/dist-types/commands/CreateDomainCommand.d.ts +1 -1
  8. package/dist-types/commands/CreateGroupProfileCommand.d.ts +4 -1
  9. package/dist-types/commands/CreateProjectCommand.d.ts +12 -0
  10. package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +2 -0
  11. package/dist-types/commands/CreateUserProfileCommand.d.ts +4 -1
  12. package/dist-types/commands/GetGroupProfileCommand.d.ts +2 -0
  13. package/dist-types/commands/GetProjectCommand.d.ts +1 -0
  14. package/dist-types/commands/GetSubscriptionCommand.d.ts +2 -0
  15. package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +2 -0
  16. package/dist-types/commands/GetUserProfileCommand.d.ts +3 -0
  17. package/dist-types/commands/ListProjectsCommand.d.ts +2 -0
  18. package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +2 -0
  19. package/dist-types/commands/ListSubscriptionsCommand.d.ts +2 -0
  20. package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +2 -0
  21. package/dist-types/commands/RevokeSubscriptionCommand.d.ts +2 -0
  22. package/dist-types/commands/SearchGroupProfilesCommand.d.ts +3 -1
  23. package/dist-types/commands/SearchUserProfilesCommand.d.ts +2 -0
  24. package/dist-types/commands/UpdateGroupProfileCommand.d.ts +2 -0
  25. package/dist-types/commands/UpdateProjectCommand.d.ts +1 -0
  26. package/dist-types/commands/UpdateSubscriptionRequestCommand.d.ts +2 -0
  27. package/dist-types/commands/UpdateUserProfileCommand.d.ts +3 -0
  28. package/dist-types/models/enums.d.ts +17 -15
  29. package/dist-types/models/models_0.d.ts +105 -60
  30. package/dist-types/models/models_1.d.ts +52 -27
  31. package/dist-types/models/models_2.d.ts +58 -2
  32. package/dist-types/schemas/schemas_0.d.ts +1 -0
  33. package/dist-types/ts3.4/models/enums.d.ts +11 -9
  34. package/dist-types/ts3.4/models/models_0.d.ts +41 -32
  35. package/dist-types/ts3.4/models/models_1.d.ts +11 -7
  36. package/dist-types/ts3.4/models/models_2.d.ts +13 -2
  37. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  38. package/package.json +34 -34
@@ -496,6 +496,16 @@ export interface IamUserProfileDetails {
496
496
  * @public
497
497
  */
498
498
  principalId?: string | undefined;
499
+ /**
500
+ * <p>The session name for IAM role sessions.</p>
501
+ * @public
502
+ */
503
+ sessionName?: string | undefined;
504
+ /**
505
+ * <p>The identifier of the group profile associated with the IAM user profile. This links the user to a specific group profile within the Amazon DataZone domain.</p>
506
+ * @public
507
+ */
508
+ groupProfileId?: string | undefined;
499
509
  }
500
510
  /**
501
511
  * <p>The SSO user profile detail.</p>
@@ -7396,7 +7406,7 @@ export interface CreateDomainInput {
7396
7406
  * <p>The domain execution role that is created when an Amazon DataZone domain is created. The domain execution role is created in the Amazon Web Services account that houses the Amazon DataZone domain.</p>
7397
7407
  * @public
7398
7408
  */
7399
- domainExecutionRole: string | undefined;
7409
+ domainExecutionRole?: string | undefined;
7400
7410
  /**
7401
7411
  * <p>The identifier of the Amazon Web Services Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data. </p>
7402
7412
  * @public
@@ -8586,7 +8596,12 @@ export interface CreateGroupProfileInput {
8586
8596
  * <p>The identifier of the group for which the group profile is created.</p>
8587
8597
  * @public
8588
8598
  */
8589
- groupIdentifier: string | undefined;
8599
+ groupIdentifier?: string | undefined;
8600
+ /**
8601
+ * <p>The ARN of the IAM role that will be associated with the group profile. This role defines the permissions that group members will assume when accessing Amazon DataZone resources.</p>
8602
+ * @public
8603
+ */
8604
+ rolePrincipalArn?: string | undefined;
8590
8605
  /**
8591
8606
  * <p> A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
8592
8607
  * @public
@@ -8617,6 +8632,16 @@ export interface CreateGroupProfileOutput {
8617
8632
  * @public
8618
8633
  */
8619
8634
  groupName?: string | undefined;
8635
+ /**
8636
+ * <p>The ARN of the IAM role principal. This role is associated with the group profile.</p>
8637
+ * @public
8638
+ */
8639
+ rolePrincipalArn?: string | undefined;
8640
+ /**
8641
+ * <p>The unique identifier of the IAM role principal. This principal is associated with the group profile.</p>
8642
+ * @public
8643
+ */
8644
+ rolePrincipalId?: string | undefined;
8620
8645
  }
8621
8646
  /**
8622
8647
  * @public
@@ -8673,6 +8698,67 @@ export interface CreateListingChangeSetOutput {
8673
8698
  */
8674
8699
  status: ListingStatus | undefined;
8675
8700
  }
8701
+ /**
8702
+ * <p>The details about a project member.</p>
8703
+ * @public
8704
+ */
8705
+ export type Member = Member.GroupIdentifierMember | Member.UserIdentifierMember | Member.$UnknownMember;
8706
+ /**
8707
+ * @public
8708
+ */
8709
+ export declare namespace Member {
8710
+ /**
8711
+ * <p>The user ID of a project member.</p>
8712
+ * @public
8713
+ */
8714
+ interface UserIdentifierMember {
8715
+ userIdentifier: string;
8716
+ groupIdentifier?: never;
8717
+ $unknown?: never;
8718
+ }
8719
+ /**
8720
+ * <p>The ID of the group of a project member.</p>
8721
+ * @public
8722
+ */
8723
+ interface GroupIdentifierMember {
8724
+ userIdentifier?: never;
8725
+ groupIdentifier: string;
8726
+ $unknown?: never;
8727
+ }
8728
+ /**
8729
+ * @public
8730
+ */
8731
+ interface $UnknownMember {
8732
+ userIdentifier?: never;
8733
+ groupIdentifier?: never;
8734
+ $unknown: [string, any];
8735
+ }
8736
+ /**
8737
+ * @deprecated unused in schema-serde mode.
8738
+ *
8739
+ */
8740
+ interface Visitor<T> {
8741
+ userIdentifier: (value: string) => T;
8742
+ groupIdentifier: (value: string) => T;
8743
+ _: (name: string, value: any) => T;
8744
+ }
8745
+ }
8746
+ /**
8747
+ * <p>A map of user or group profiles to designations that need to be assigned in the project.</p>
8748
+ * @public
8749
+ */
8750
+ export interface ProjectMembershipAssignment {
8751
+ /**
8752
+ * <p>The details about a project member.</p>
8753
+ * @public
8754
+ */
8755
+ member: Member | undefined;
8756
+ /**
8757
+ * <p>The designation of the project membership.</p>
8758
+ * @public
8759
+ */
8760
+ designation: UserDesignation | undefined;
8761
+ }
8676
8762
  /**
8677
8763
  * <p>Specifies the account/Region that is to be used during project creation for a particular blueprint.</p>
8678
8764
  * @public
@@ -8764,6 +8850,21 @@ export interface CreateProjectInput {
8764
8850
  * @public
8765
8851
  */
8766
8852
  userParameters?: EnvironmentConfigurationUserParameter[] | undefined;
8853
+ /**
8854
+ * <p>The category of the project. Set to 'ADMIN' designates this as an administrative project for the Amazon DataZone domain.</p>
8855
+ * @public
8856
+ */
8857
+ projectCategory?: string | undefined;
8858
+ /**
8859
+ * <p>The default project IAM role that is used to access project resources and run computes such as Glue and Sagemaker.</p>
8860
+ * @public
8861
+ */
8862
+ projectExecutionRole?: string | undefined;
8863
+ /**
8864
+ * <p>The members to be assigned to the project.</p>
8865
+ * @public
8866
+ */
8867
+ membershipAssignments?: ProjectMembershipAssignment[] | undefined;
8767
8868
  }
8768
8869
  /**
8769
8870
  * <p>The environment deployment details.</p>
@@ -8897,51 +8998,11 @@ export interface CreateProjectOutput {
8897
8998
  * @public
8898
8999
  */
8899
9000
  environmentDeploymentDetails?: EnvironmentDeploymentDetails | undefined;
8900
- }
8901
- /**
8902
- * <p>The details about a project member.</p>
8903
- * @public
8904
- */
8905
- export type Member = Member.GroupIdentifierMember | Member.UserIdentifierMember | Member.$UnknownMember;
8906
- /**
8907
- * @public
8908
- */
8909
- export declare namespace Member {
8910
- /**
8911
- * <p>The user ID of a project member.</p>
8912
- * @public
8913
- */
8914
- interface UserIdentifierMember {
8915
- userIdentifier: string;
8916
- groupIdentifier?: never;
8917
- $unknown?: never;
8918
- }
8919
- /**
8920
- * <p>The ID of the group of a project member.</p>
8921
- * @public
8922
- */
8923
- interface GroupIdentifierMember {
8924
- userIdentifier?: never;
8925
- groupIdentifier: string;
8926
- $unknown?: never;
8927
- }
8928
9001
  /**
9002
+ * <p>The category of the project.</p>
8929
9003
  * @public
8930
9004
  */
8931
- interface $UnknownMember {
8932
- userIdentifier?: never;
8933
- groupIdentifier?: never;
8934
- $unknown: [string, any];
8935
- }
8936
- /**
8937
- * @deprecated unused in schema-serde mode.
8938
- *
8939
- */
8940
- interface Visitor<T> {
8941
- userIdentifier: (value: string) => T;
8942
- groupIdentifier: (value: string) => T;
8943
- _: (name: string, value: any) => T;
8944
- }
9005
+ projectCategory?: string | undefined;
8945
9006
  }
8946
9007
  /**
8947
9008
  * @public
@@ -10043,19 +10104,3 @@ export interface CreateSubscriptionRequestOutput {
10043
10104
  */
10044
10105
  metadataForms?: FormOutput[] | undefined;
10045
10106
  }
10046
- /**
10047
- * <p>The details of the subscription target configuration.</p>
10048
- * @public
10049
- */
10050
- export interface SubscriptionTargetForm {
10051
- /**
10052
- * <p>The form name included in the subscription target configuration.</p>
10053
- * @public
10054
- */
10055
- formName: string | undefined;
10056
- /**
10057
- * <p>The content of the subscription target configuration.</p>
10058
- * @public
10059
- */
10060
- content: string | undefined;
10061
- }
@@ -1,5 +1,21 @@
1
1
  import type { ConfigurationStatus, ConnectionScope, ConnectionType, DataAssetActivityStatus, DataProductStatus, DataSourceRunStatus, DataSourceRunType, DataSourceStatus, DataZoneEntityType, DomainStatus, DomainVersion, EdgeDirection, EnableSetting, EnvironmentStatus, FilterOperator, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, GroupSearchType, JobRunMode, JobRunStatus, JobType, LineageEventProcessingStatus, LineageImportStatus, ListingStatus, ManagedPolicyType, MetadataGenerationRunStatus, MetadataGenerationRunType, MetadataGenerationTargetType, NotificationResourceType, NotificationRole, NotificationType, OpenLineageRunState, ProjectStatus, RejectRuleBehavior, RelationDirection, RelationType, ResolutionStrategy, RuleAction, RuleTargetType, RuleType, SelfGrantStatus, SortFieldAccountPool, SortFieldConnection, SortFieldProject, SortKey, SortOrder, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TaskStatus, TimeSeriesEntityType, UserDesignation, UserProfileStatus, UserProfileType, UserType } from "./enums";
2
- import type { AccountInfo, AccountPoolSummary, AccountSource, ActionParameters, AssetFilterSummary, AssetItem, AssetListing, AssetRevision, ConfigurableEnvironmentAction, Configuration, ConnectionCredentials, ConnectionPropertiesOutput, ConnectionSummary, CustomParameter, DataProductItem, DataSourceConfigurationInput, DataSourceConfigurationOutput, DataSourceErrorMessage, Deployment, DeploymentProperties, DetailedGlossaryTerm, DomainUnitOwnerProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, FormInput, FormOutput, GrantedEntity, MatchRationaleItem, Member, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProvisioningProperties, RecommendationConfiguration, Resource, ResourceTag, ResourceTagParameter, RuleDetail, RuleScope, RuleTarget, ScheduleConfiguration, SingleSignOn, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionTargetForm, TermRelations, TimeSeriesDataPointSummaryFormOutput, UserProfileDetails } from "./models_0";
2
+ import type { AccountInfo, AccountPoolSummary, AccountSource, ActionParameters, AssetFilterSummary, AssetItem, AssetListing, AssetRevision, ConfigurableEnvironmentAction, Configuration, ConnectionCredentials, ConnectionPropertiesOutput, ConnectionSummary, CustomParameter, DataProductItem, DataSourceConfigurationInput, DataSourceConfigurationOutput, DataSourceErrorMessage, Deployment, DeploymentProperties, DetailedGlossaryTerm, DomainUnitOwnerProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, FormInput, FormOutput, GrantedEntity, MatchRationaleItem, Member, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProvisioningProperties, RecommendationConfiguration, Resource, ResourceTag, ResourceTagParameter, RuleDetail, RuleScope, RuleTarget, ScheduleConfiguration, SingleSignOn, SubscribedAsset, SubscribedListing, SubscribedPrincipal, TermRelations, TimeSeriesDataPointSummaryFormOutput, UserProfileDetails } from "./models_0";
3
+ /**
4
+ * <p>The details of the subscription target configuration.</p>
5
+ * @public
6
+ */
7
+ export interface SubscriptionTargetForm {
8
+ /**
9
+ * <p>The form name included in the subscription target configuration.</p>
10
+ * @public
11
+ */
12
+ formName: string | undefined;
13
+ /**
14
+ * <p>The content of the subscription target configuration.</p>
15
+ * @public
16
+ */
17
+ content: string | undefined;
18
+ }
3
19
  /**
4
20
  * @public
5
21
  */
@@ -164,6 +180,11 @@ export interface CreateUserProfileInput {
164
180
  * @public
165
181
  */
166
182
  userType?: UserType | undefined;
183
+ /**
184
+ * <p>The session name for IAM role sessions.</p>
185
+ * @public
186
+ */
187
+ sessionName?: string | undefined;
167
188
  /**
168
189
  * <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
169
190
  * @public
@@ -3774,6 +3795,16 @@ export interface GetGroupProfileOutput {
3774
3795
  * @public
3775
3796
  */
3776
3797
  groupName?: string | undefined;
3798
+ /**
3799
+ * <p>The ARN of the IAM role principal. This role is associated with the group profile.</p>
3800
+ * @public
3801
+ */
3802
+ rolePrincipalArn?: string | undefined;
3803
+ /**
3804
+ * <p>The unique identifier of the IAM role principal. This principal is associated with the group profile.</p>
3805
+ * @public
3806
+ */
3807
+ rolePrincipalId?: string | undefined;
3777
3808
  }
3778
3809
  /**
3779
3810
  * @public
@@ -4231,6 +4262,11 @@ export interface GetProjectOutput {
4231
4262
  * @public
4232
4263
  */
4233
4264
  environmentDeploymentDetails?: EnvironmentDeploymentDetails | undefined;
4265
+ /**
4266
+ * <p>The category of the project.</p>
4267
+ * @public
4268
+ */
4269
+ projectCategory?: string | undefined;
4234
4270
  }
4235
4271
  /**
4236
4272
  * @public
@@ -4784,6 +4820,11 @@ export interface GetUserProfileInput {
4784
4820
  * @public
4785
4821
  */
4786
4822
  type?: UserProfileType | undefined;
4823
+ /**
4824
+ * <p>The session name for IAM role sessions.</p>
4825
+ * @public
4826
+ */
4827
+ sessionName?: string | undefined;
4787
4828
  }
4788
4829
  /**
4789
4830
  * @public
@@ -7126,6 +7167,11 @@ export interface ListProjectsInput {
7126
7167
  * @public
7127
7168
  */
7128
7169
  name?: string | undefined;
7170
+ /**
7171
+ * <p>A parameter to filter projects by their category.</p>
7172
+ * @public
7173
+ */
7174
+ projectCategory?: string | undefined;
7129
7175
  /**
7130
7176
  * <p>When the number of projects is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of projects, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListProjects</code> to list the next set of projects.</p>
7131
7177
  * @public
@@ -7192,6 +7238,11 @@ export interface ProjectSummary {
7192
7238
  * @public
7193
7239
  */
7194
7240
  domainUnitId?: string | undefined;
7241
+ /**
7242
+ * <p>The category of the project.</p>
7243
+ * @public
7244
+ */
7245
+ projectCategory?: string | undefined;
7195
7246
  }
7196
7247
  /**
7197
7248
  * @public
@@ -9553,29 +9604,3 @@ export interface SearchGroupProfilesInput {
9553
9604
  */
9554
9605
  nextToken?: string | undefined;
9555
9606
  }
9556
- /**
9557
- * <p>The details of a group profile.</p>
9558
- * @public
9559
- */
9560
- export interface GroupProfileSummary {
9561
- /**
9562
- * <p>The ID of the Amazon DataZone domain of a group profile.</p>
9563
- * @public
9564
- */
9565
- domainId?: string | undefined;
9566
- /**
9567
- * <p>The ID of a group profile.</p>
9568
- * @public
9569
- */
9570
- id?: string | undefined;
9571
- /**
9572
- * <p>The status of a group profile.</p>
9573
- * @public
9574
- */
9575
- status?: GroupProfileStatus | undefined;
9576
- /**
9577
- * <p>The group name of a group profile.</p>
9578
- * @public
9579
- */
9580
- groupName?: string | undefined;
9581
- }
@@ -1,6 +1,42 @@
1
1
  import type { ConnectionScope, ConnectionType, EnvironmentStatus, FilterStatus, FormTypeStatus, GraphEntityType, GroupProfileStatus, InventorySearchScope, ProjectStatus, ResolutionStrategy, SearchOutputAdditionalAttribute, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, TypesSearchScope, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
2
- import type { AccountSource, ActionParameters, AdditionalAttributes, AggregationListItem, AggregationOutput, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, Configuration, ConnectionPropertiesOutput, ConnectionPropertiesPatch, CustomParameter, Deployment, DeploymentProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, FailureCause, FormEntryOutput, FormOutput, GrantedEntity, Model, PhysicalEndpoint, ProjectDeletionError, ProvisioningProperties, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionTargetForm, UserProfileDetails } from "./models_0";
3
- import type { DataProductListingItem, Filter, GroupProfileSummary, Import, RelationPattern, SearchInItem, SearchSort } from "./models_1";
2
+ import type { AccountSource, ActionParameters, AdditionalAttributes, AggregationListItem, AggregationOutput, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, Configuration, ConnectionPropertiesOutput, ConnectionPropertiesPatch, CustomParameter, Deployment, DeploymentProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, FailureCause, FormEntryOutput, FormOutput, GrantedEntity, Model, PhysicalEndpoint, ProjectDeletionError, ProvisioningProperties, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, SubscribedAsset, SubscribedListing, SubscribedPrincipal, UserProfileDetails } from "./models_0";
3
+ import type { DataProductListingItem, Filter, Import, RelationPattern, SearchInItem, SearchSort, SubscriptionTargetForm } from "./models_1";
4
+ /**
5
+ * <p>The details of a group profile.</p>
6
+ * @public
7
+ */
8
+ export interface GroupProfileSummary {
9
+ /**
10
+ * <p>The ID of the Amazon DataZone domain of a group profile.</p>
11
+ * @public
12
+ */
13
+ domainId?: string | undefined;
14
+ /**
15
+ * <p>The ID of a group profile.</p>
16
+ * @public
17
+ */
18
+ id?: string | undefined;
19
+ /**
20
+ * <p>The status of a group profile.</p>
21
+ * @public
22
+ */
23
+ status?: GroupProfileStatus | undefined;
24
+ /**
25
+ * <p>The group name of a group profile.</p>
26
+ * @public
27
+ */
28
+ groupName?: string | undefined;
29
+ /**
30
+ * <p>The ARN of the IAM role principal. This role is associated with the group profile.</p>
31
+ * @public
32
+ */
33
+ rolePrincipalArn?: string | undefined;
34
+ /**
35
+ * <p>The unique identifier of the IAM role principal. This principal is associated with the group profile.</p>
36
+ * @public
37
+ */
38
+ rolePrincipalId?: string | undefined;
39
+ }
4
40
  /**
5
41
  * @public
6
42
  */
@@ -1062,6 +1098,16 @@ export interface UpdateGroupProfileOutput {
1062
1098
  * @public
1063
1099
  */
1064
1100
  groupName?: string | undefined;
1101
+ /**
1102
+ * <p>The ARN of the IAM role principal. This role is associated with the updated group profile.</p>
1103
+ * @public
1104
+ */
1105
+ rolePrincipalArn?: string | undefined;
1106
+ /**
1107
+ * <p>The unique identifier of the IAM role principal. This principal is associated with the updated group profile.</p>
1108
+ * @public
1109
+ */
1110
+ rolePrincipalId?: string | undefined;
1065
1111
  }
1066
1112
  /**
1067
1113
  * @public
@@ -1197,6 +1243,11 @@ export interface UpdateProjectOutput {
1197
1243
  * @public
1198
1244
  */
1199
1245
  environmentDeploymentDetails?: EnvironmentDeploymentDetails | undefined;
1246
+ /**
1247
+ * <p>The category of the project.</p>
1248
+ * @public
1249
+ */
1250
+ projectCategory?: string | undefined;
1200
1251
  }
1201
1252
  /**
1202
1253
  * @public
@@ -1714,6 +1765,11 @@ export interface UpdateUserProfileInput {
1714
1765
  * @public
1715
1766
  */
1716
1767
  status: UserProfileStatus | undefined;
1768
+ /**
1769
+ * <p>The session name for IAM role sessions.</p>
1770
+ * @public
1771
+ */
1772
+ sessionName?: string | undefined;
1717
1773
  }
1718
1774
  /**
1719
1775
  * @public
@@ -470,6 +470,7 @@ export declare var PostTimeSeriesDataPointsOutput$: StaticStructureSchema;
470
470
  export declare var PredictionConfiguration$: StaticStructureSchema;
471
471
  export declare var ProjectDeletionError$: StaticStructureSchema;
472
472
  export declare var ProjectMember$: StaticStructureSchema;
473
+ export declare var ProjectMembershipAssignment$: StaticStructureSchema;
473
474
  export declare var ProjectPolicyGrantPrincipal$: StaticStructureSchema;
474
475
  export declare var ProjectProfileSummary$: StaticStructureSchema;
475
476
  export declare var ProjectsForRule$: StaticStructureSchema;
@@ -433,6 +433,15 @@ export declare const EntityType: {
433
433
  readonly DATA_PRODUCT: "DATA_PRODUCT";
434
434
  };
435
435
  export type EntityType = (typeof EntityType)[keyof typeof EntityType];
436
+ export declare const UserDesignation: {
437
+ readonly PROJECT_CATALOG_CONSUMER: "PROJECT_CATALOG_CONSUMER";
438
+ readonly PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD";
439
+ readonly PROJECT_CATALOG_VIEWER: "PROJECT_CATALOG_VIEWER";
440
+ readonly PROJECT_CONTRIBUTOR: "PROJECT_CONTRIBUTOR";
441
+ readonly PROJECT_OWNER: "PROJECT_OWNER";
442
+ };
443
+ export type UserDesignation =
444
+ (typeof UserDesignation)[keyof typeof UserDesignation];
436
445
  export declare const OverallDeploymentStatus: {
437
446
  readonly FAILED_DEPLOYMENT: "FAILED_DEPLOYMENT";
438
447
  readonly FAILED_VALIDATION: "FAILED_VALIDATION";
@@ -457,15 +466,6 @@ export declare const ResourceTagSource: {
457
466
  };
458
467
  export type ResourceTagSource =
459
468
  (typeof ResourceTagSource)[keyof typeof ResourceTagSource];
460
- export declare const UserDesignation: {
461
- readonly PROJECT_CATALOG_CONSUMER: "PROJECT_CATALOG_CONSUMER";
462
- readonly PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD";
463
- readonly PROJECT_CATALOG_VIEWER: "PROJECT_CATALOG_VIEWER";
464
- readonly PROJECT_CONTRIBUTOR: "PROJECT_CONTRIBUTOR";
465
- readonly PROJECT_OWNER: "PROJECT_OWNER";
466
- };
467
- export type UserDesignation =
468
- (typeof UserDesignation)[keyof typeof UserDesignation];
469
469
  export declare const DeploymentMode: {
470
470
  readonly ON_CREATE: "ON_CREATE";
471
471
  readonly ON_DEMAND: "ON_DEMAND";
@@ -523,6 +523,7 @@ export type SubscriptionGrantCreationMode =
523
523
  (typeof SubscriptionGrantCreationMode)[keyof typeof SubscriptionGrantCreationMode];
524
524
  export declare const UserType: {
525
525
  readonly IAM_ROLE: "IAM_ROLE";
526
+ readonly IAM_ROLE_SESSION: "IAM_ROLE_SESSION";
526
527
  readonly IAM_USER: "IAM_USER";
527
528
  readonly SSO_USER: "SSO_USER";
528
529
  };
@@ -747,6 +748,7 @@ export type InventorySearchScope =
747
748
  (typeof InventorySearchScope)[keyof typeof InventorySearchScope];
748
749
  export declare const GroupSearchType: {
749
750
  readonly DATAZONE_SSO_GROUP: "DATAZONE_SSO_GROUP";
751
+ readonly IAM_ROLE_SESSION_GROUP: "IAM_ROLE_SESSION_GROUP";
750
752
  readonly SSO_GROUP: "SSO_GROUP";
751
753
  };
752
754
  export type GroupSearchType =
@@ -198,6 +198,8 @@ export interface SubscribedProject {
198
198
  export interface IamUserProfileDetails {
199
199
  arn?: string | undefined;
200
200
  principalId?: string | undefined;
201
+ sessionName?: string | undefined;
202
+ groupProfileId?: string | undefined;
201
203
  }
202
204
  export interface SsoUserProfileDetails {
203
205
  username?: string | undefined;
@@ -2876,7 +2878,7 @@ export interface CreateDomainInput {
2876
2878
  name: string | undefined;
2877
2879
  description?: string | undefined;
2878
2880
  singleSignOn?: SingleSignOn | undefined;
2879
- domainExecutionRole: string | undefined;
2881
+ domainExecutionRole?: string | undefined;
2880
2882
  kmsKeyIdentifier?: string | undefined;
2881
2883
  tags?: Record<string, string> | undefined;
2882
2884
  domainVersion?: DomainVersion | undefined;
@@ -3175,7 +3177,8 @@ export interface CreateGlossaryTermOutput {
3175
3177
  }
3176
3178
  export interface CreateGroupProfileInput {
3177
3179
  domainIdentifier: string | undefined;
3178
- groupIdentifier: string | undefined;
3180
+ groupIdentifier?: string | undefined;
3181
+ rolePrincipalArn?: string | undefined;
3179
3182
  clientToken?: string | undefined;
3180
3183
  }
3181
3184
  export interface CreateGroupProfileOutput {
@@ -3183,6 +3186,8 @@ export interface CreateGroupProfileOutput {
3183
3186
  id?: string | undefined;
3184
3187
  status?: GroupProfileStatus | undefined;
3185
3188
  groupName?: string | undefined;
3189
+ rolePrincipalArn?: string | undefined;
3190
+ rolePrincipalId?: string | undefined;
3186
3191
  }
3187
3192
  export interface CreateListingChangeSetInput {
3188
3193
  domainIdentifier: string | undefined;
@@ -3197,6 +3202,36 @@ export interface CreateListingChangeSetOutput {
3197
3202
  listingRevision: string | undefined;
3198
3203
  status: ListingStatus | undefined;
3199
3204
  }
3205
+ export type Member =
3206
+ | Member.GroupIdentifierMember
3207
+ | Member.UserIdentifierMember
3208
+ | Member.$UnknownMember;
3209
+ export declare namespace Member {
3210
+ interface UserIdentifierMember {
3211
+ userIdentifier: string;
3212
+ groupIdentifier?: never;
3213
+ $unknown?: never;
3214
+ }
3215
+ interface GroupIdentifierMember {
3216
+ userIdentifier?: never;
3217
+ groupIdentifier: string;
3218
+ $unknown?: never;
3219
+ }
3220
+ interface $UnknownMember {
3221
+ userIdentifier?: never;
3222
+ groupIdentifier?: never;
3223
+ $unknown: [string, any];
3224
+ }
3225
+ interface Visitor<T> {
3226
+ userIdentifier: (value: string) => T;
3227
+ groupIdentifier: (value: string) => T;
3228
+ _: (name: string, value: any) => T;
3229
+ }
3230
+ }
3231
+ export interface ProjectMembershipAssignment {
3232
+ member: Member | undefined;
3233
+ designation: UserDesignation | undefined;
3234
+ }
3200
3235
  export interface EnvironmentResolvedAccount {
3201
3236
  awsAccountId: string | undefined;
3202
3237
  regionName: string | undefined;
@@ -3217,6 +3252,9 @@ export interface CreateProjectInput {
3217
3252
  domainUnitId?: string | undefined;
3218
3253
  projectProfileId?: string | undefined;
3219
3254
  userParameters?: EnvironmentConfigurationUserParameter[] | undefined;
3255
+ projectCategory?: string | undefined;
3256
+ projectExecutionRole?: string | undefined;
3257
+ membershipAssignments?: ProjectMembershipAssignment[] | undefined;
3220
3258
  }
3221
3259
  export interface EnvironmentDeploymentDetails {
3222
3260
  overallDeploymentStatus?: OverallDeploymentStatus | undefined;
@@ -3247,32 +3285,7 @@ export interface CreateProjectOutput {
3247
3285
  projectProfileId?: string | undefined;
3248
3286
  userParameters?: EnvironmentConfigurationUserParameter[] | undefined;
3249
3287
  environmentDeploymentDetails?: EnvironmentDeploymentDetails | undefined;
3250
- }
3251
- export type Member =
3252
- | Member.GroupIdentifierMember
3253
- | Member.UserIdentifierMember
3254
- | Member.$UnknownMember;
3255
- export declare namespace Member {
3256
- interface UserIdentifierMember {
3257
- userIdentifier: string;
3258
- groupIdentifier?: never;
3259
- $unknown?: never;
3260
- }
3261
- interface GroupIdentifierMember {
3262
- userIdentifier?: never;
3263
- groupIdentifier: string;
3264
- $unknown?: never;
3265
- }
3266
- interface $UnknownMember {
3267
- userIdentifier?: never;
3268
- groupIdentifier?: never;
3269
- $unknown: [string, any];
3270
- }
3271
- interface Visitor<T> {
3272
- userIdentifier: (value: string) => T;
3273
- groupIdentifier: (value: string) => T;
3274
- _: (name: string, value: any) => T;
3275
- }
3288
+ projectCategory?: string | undefined;
3276
3289
  }
3277
3290
  export interface CreateProjectMembershipInput {
3278
3291
  domainIdentifier: string | undefined;
@@ -3620,7 +3633,3 @@ export interface CreateSubscriptionRequestOutput {
3620
3633
  existingSubscriptionId?: string | undefined;
3621
3634
  metadataForms?: FormOutput[] | undefined;
3622
3635
  }
3623
- export interface SubscriptionTargetForm {
3624
- formName: string | undefined;
3625
- content: string | undefined;
3626
- }
@@ -113,11 +113,14 @@ import {
113
113
  SubscribedAsset,
114
114
  SubscribedListing,
115
115
  SubscribedPrincipal,
116
- SubscriptionTargetForm,
117
116
  TermRelations,
118
117
  TimeSeriesDataPointSummaryFormOutput,
119
118
  UserProfileDetails,
120
119
  } from "./models_0";
120
+ export interface SubscriptionTargetForm {
121
+ formName: string | undefined;
122
+ content: string | undefined;
123
+ }
121
124
  export interface CreateSubscriptionTargetInput {
122
125
  domainIdentifier: string | undefined;
123
126
  environmentIdentifier: string | undefined;
@@ -153,6 +156,7 @@ export interface CreateUserProfileInput {
153
156
  domainIdentifier: string | undefined;
154
157
  userIdentifier: string | undefined;
155
158
  userType?: UserType | undefined;
159
+ sessionName?: string | undefined;
156
160
  clientToken?: string | undefined;
157
161
  }
158
162
  export interface CreateUserProfileOutput {
@@ -1001,6 +1005,8 @@ export interface GetGroupProfileOutput {
1001
1005
  id?: string | undefined;
1002
1006
  status?: GroupProfileStatus | undefined;
1003
1007
  groupName?: string | undefined;
1008
+ rolePrincipalArn?: string | undefined;
1009
+ rolePrincipalId?: string | undefined;
1004
1010
  }
1005
1011
  export interface GetIamPortalLoginUrlInput {
1006
1012
  domainIdentifier: string | undefined;
@@ -1116,6 +1122,7 @@ export interface GetProjectOutput {
1116
1122
  projectProfileId?: string | undefined;
1117
1123
  userParameters?: EnvironmentConfigurationUserParameter[] | undefined;
1118
1124
  environmentDeploymentDetails?: EnvironmentDeploymentDetails | undefined;
1125
+ projectCategory?: string | undefined;
1119
1126
  }
1120
1127
  export interface GetProjectProfileInput {
1121
1128
  domainIdentifier: string | undefined;
@@ -1240,6 +1247,7 @@ export interface GetUserProfileInput {
1240
1247
  domainIdentifier: string | undefined;
1241
1248
  userIdentifier: string | undefined;
1242
1249
  type?: UserProfileType | undefined;
1250
+ sessionName?: string | undefined;
1243
1251
  }
1244
1252
  export interface GetUserProfileOutput {
1245
1253
  domainId?: string | undefined;
@@ -1838,6 +1846,7 @@ export interface ListProjectsInput {
1838
1846
  userIdentifier?: string | undefined;
1839
1847
  groupIdentifier?: string | undefined;
1840
1848
  name?: string | undefined;
1849
+ projectCategory?: string | undefined;
1841
1850
  nextToken?: string | undefined;
1842
1851
  maxResults?: number | undefined;
1843
1852
  }
@@ -1852,6 +1861,7 @@ export interface ProjectSummary {
1852
1861
  createdAt?: Date | undefined;
1853
1862
  updatedAt?: Date | undefined;
1854
1863
  domainUnitId?: string | undefined;
1864
+ projectCategory?: string | undefined;
1855
1865
  }
1856
1866
  export interface ListProjectsOutput {
1857
1867
  items?: ProjectSummary[] | undefined;
@@ -2426,9 +2436,3 @@ export interface SearchGroupProfilesInput {
2426
2436
  maxResults?: number | undefined;
2427
2437
  nextToken?: string | undefined;
2428
2438
  }
2429
- export interface GroupProfileSummary {
2430
- domainId?: string | undefined;
2431
- id?: string | undefined;
2432
- status?: GroupProfileStatus | undefined;
2433
- groupName?: string | undefined;
2434
- }