Skip to content

Commit a837f79

Browse files
author
awstools
committed
feat(client-quicksight): Adding IAMIdentityCenterInstanceArn parameter to CreateAccountSubscription
1 parent 6fd6269 commit a837f79

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ export interface CreateAccountSubscriptionCommandOutput extends CreateAccountSub
7777
* LastName: "STRING_VALUE",
7878
* EmailAddress: "STRING_VALUE",
7979
* ContactNumber: "STRING_VALUE",
80+
* IAMIdentityCenterInstanceArn: "STRING_VALUE",
8081
* };
8182
* const command = new CreateAccountSubscriptionCommand(input);
8283
* const response = await client.send(command);

clients/client-quicksight/src/models/models_0.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ export interface AggregationSortConfiguration {
514514
}
515515

516516
/**
517-
* <p>The configuration for applying a filter to all sheets. You can apply this filter to all visuals on every sheet.</p>
517+
* <p>An empty object that represents that the <code>AllSheets</code> option is the chosen value for the <code>FilterScopeConfiguration</code> parameter. This structure applies the filter to all visuals on all sheets of an Analysis, Dashboard, or Template.</p>
518518
* <p>This is a union type structure. For this structure to be valid, only one of the attributes can be defined.</p>
519519
* @public
520520
*/
@@ -2576,7 +2576,7 @@ export interface FilterScopeConfiguration {
25762576
SelectedSheets?: SelectedSheetsFilterScopeConfiguration;
25772577

25782578
/**
2579-
* <p>The configuration for applying a filter to all sheets.</p>
2579+
* <p>The configuration that applies a filter to all sheets. When you choose <code>AllSheets</code> as the value for a <code>FilterScopeConfiguration</code>, this filter is applied to all visuals of all sheets in an Analysis, Dashboard, or Template. The <code>AllSheetsFilterScopeConfiguration</code> is chosen.</p>
25802580
* @public
25812581
*/
25822582
AllSheets?: AllSheetsFilterScopeConfiguration;

clients/client-quicksight/src/models/models_2.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4392,6 +4392,12 @@ export interface CreateAccountSubscriptionRequest {
43924392
* @public
43934393
*/
43944394
ContactNumber?: string;
4395+
4396+
/**
4397+
* <p>The Amazon Resource Name (ARN) for the IAM Identity Center instance.</p>
4398+
* @public
4399+
*/
4400+
IAMIdentityCenterInstanceArn?: string;
43954401
}
43964402

43974403
/**

clients/client-quicksight/src/protocols/Aws_restJson1.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1315,6 +1315,7 @@ export const se_CreateAccountSubscriptionCommand = async (
13151315
Edition: [],
13161316
EmailAddress: [],
13171317
FirstName: [],
1318+
IAMIdentityCenterInstanceArn: [],
13181319
LastName: [],
13191320
NotificationEmail: [],
13201321
ReaderGroup: (_) => _json(_),

codegen/sdk-codegen/aws-models/quicksight.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@
327327
"type": "structure",
328328
"members": {},
329329
"traits": {
330-
"smithy.api#documentation": "<p>The configuration for applying a filter to all sheets. You can apply this filter to all visuals on every sheet.</p>\n <p>This is a union type structure. For this structure to be valid, only one of the attributes can be defined.</p>"
330+
"smithy.api#documentation": "<p>An empty object that represents that the <code>AllSheets</code> option is the chosen value for the <code>FilterScopeConfiguration</code> parameter. This structure applies the filter to all visuals on all sheets of an Analysis, Dashboard, or Template.</p>\n <p>This is a union type structure. For this structure to be valid, only one of the attributes can be defined.</p>"
331331
}
332332
},
333333
"com.amazonaws.quicksight#AmazonElasticsearchParameters": {
@@ -6657,6 +6657,12 @@
66576657
"traits": {
66586658
"smithy.api#documentation": "<p>A 10-digit phone number for the author of the Amazon QuickSight account to use for\n future communications. This field is required if <code>ENTERPPRISE_AND_Q</code> is the\n selected edition of the new Amazon QuickSight account.</p>"
66596659
}
6660+
},
6661+
"IAMIdentityCenterInstanceArn": {
6662+
"target": "com.amazonaws.quicksight#String",
6663+
"traits": {
6664+
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) for the IAM Identity Center instance.</p>"
6665+
}
66606666
}
66616667
},
66626668
"traits": {
@@ -22247,7 +22253,7 @@
2224722253
"AllSheets": {
2224822254
"target": "com.amazonaws.quicksight#AllSheetsFilterScopeConfiguration",
2224922255
"traits": {
22250-
"smithy.api#documentation": "<p>The configuration for applying a filter to all sheets.</p>"
22256+
"smithy.api#documentation": "<p>The configuration that applies a filter to all sheets. When you choose <code>AllSheets</code> as the value for a <code>FilterScopeConfiguration</code>, this filter is applied to all visuals of all sheets in an Analysis, Dashboard, or Template. The <code>AllSheetsFilterScopeConfiguration</code> is chosen.</p>"
2225122257
}
2225222258
}
2225322259
},

0 commit comments

Comments
 (0)