@aws-sdk/client-datazone 3.772.0 → 3.773.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.
@@ -40,6 +40,7 @@ declare const CreateDomainCommand_base: {
40
40
  * singleSignOn: { // SingleSignOn
41
41
  * type: "IAM_IDC" || "DISABLED",
42
42
  * userAssignment: "AUTOMATIC" || "MANUAL",
43
+ * idcInstanceArn: "STRING_VALUE",
43
44
  * },
44
45
  * domainExecutionRole: "STRING_VALUE", // required
45
46
  * kmsKeyIdentifier: "STRING_VALUE",
@@ -60,6 +61,7 @@ declare const CreateDomainCommand_base: {
60
61
  * // singleSignOn: { // SingleSignOn
61
62
  * // type: "IAM_IDC" || "DISABLED",
62
63
  * // userAssignment: "AUTOMATIC" || "MANUAL",
64
+ * // idcInstanceArn: "STRING_VALUE",
63
65
  * // },
64
66
  * // domainExecutionRole: "STRING_VALUE",
65
67
  * // arn: "STRING_VALUE",
@@ -47,6 +47,7 @@ declare const GetDomainCommand_base: {
47
47
  * // singleSignOn: { // SingleSignOn
48
48
  * // type: "IAM_IDC" || "DISABLED",
49
49
  * // userAssignment: "AUTOMATIC" || "MANUAL",
50
+ * // idcInstanceArn: "STRING_VALUE",
50
51
  * // },
51
52
  * // domainExecutionRole: "STRING_VALUE", // required
52
53
  * // arn: "STRING_VALUE",
@@ -40,6 +40,7 @@ declare const UpdateDomainCommand_base: {
40
40
  * singleSignOn: { // SingleSignOn
41
41
  * type: "IAM_IDC" || "DISABLED",
42
42
  * userAssignment: "AUTOMATIC" || "MANUAL",
43
+ * idcInstanceArn: "STRING_VALUE",
43
44
  * },
44
45
  * domainExecutionRole: "STRING_VALUE",
45
46
  * serviceRole: "STRING_VALUE",
@@ -55,6 +56,7 @@ declare const UpdateDomainCommand_base: {
55
56
  * // singleSignOn: { // SingleSignOn
56
57
  * // type: "IAM_IDC" || "DISABLED",
57
58
  * // userAssignment: "AUTOMATIC" || "MANUAL",
59
+ * // idcInstanceArn: "STRING_VALUE",
58
60
  * // },
59
61
  * // domainExecutionRole: "STRING_VALUE",
60
62
  * // serviceRole: "STRING_VALUE",
@@ -6515,6 +6515,11 @@ export interface SingleSignOn {
6515
6515
  * @public
6516
6516
  */
6517
6517
  userAssignment?: UserAssignment | undefined;
6518
+ /**
6519
+ * <p>The ARN of the IDC instance.</p>
6520
+ * @public
6521
+ */
6522
+ idcInstanceArn?: string | undefined;
6518
6523
  }
6519
6524
  /**
6520
6525
  * @public
@@ -2533,6 +2533,7 @@ export type UserAssignment =
2533
2533
  export interface SingleSignOn {
2534
2534
  type?: AuthType | undefined;
2535
2535
  userAssignment?: UserAssignment | undefined;
2536
+ idcInstanceArn?: string | undefined;
2536
2537
  }
2537
2538
  export interface CreateDomainInput {
2538
2539
  name: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-datazone",
3
3
  "description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
4
- "version": "3.772.0",
4
+ "version": "3.773.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-datazone",