Skip to content

Commit

Permalink
feat(client-quicksight): Adding IAMIdentityCenterInstanceArn paramete…
Browse files Browse the repository at this point in the history
…r to CreateAccountSubscription
  • Loading branch information
awstools committed Apr 5, 2024
1 parent 6fd6269 commit a837f79
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
Expand Up @@ -77,6 +77,7 @@ export interface CreateAccountSubscriptionCommandOutput extends CreateAccountSub
* LastName: "STRING_VALUE",
* EmailAddress: "STRING_VALUE",
* ContactNumber: "STRING_VALUE",
* IAMIdentityCenterInstanceArn: "STRING_VALUE",
* };
* const command = new CreateAccountSubscriptionCommand(input);
* const response = await client.send(command);
Expand Down
4 changes: 2 additions & 2 deletions clients/client-quicksight/src/models/models_0.ts
Expand Up @@ -514,7 +514,7 @@ export interface AggregationSortConfiguration {
}

/**
* <p>The configuration for applying a filter to all sheets. You can apply this filter to all visuals on every sheet.</p>
* <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>
* <p>This is a union type structure. For this structure to be valid, only one of the attributes can be defined.</p>
* @public
*/
Expand Down Expand Up @@ -2576,7 +2576,7 @@ export interface FilterScopeConfiguration {
SelectedSheets?: SelectedSheetsFilterScopeConfiguration;

/**
* <p>The configuration for applying a filter to all sheets.</p>
* <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>
* @public
*/
AllSheets?: AllSheetsFilterScopeConfiguration;
Expand Down
6 changes: 6 additions & 0 deletions clients/client-quicksight/src/models/models_2.ts
Expand Up @@ -4392,6 +4392,12 @@ export interface CreateAccountSubscriptionRequest {
* @public
*/
ContactNumber?: string;

/**
* <p>The Amazon Resource Name (ARN) for the IAM Identity Center instance.</p>
* @public
*/
IAMIdentityCenterInstanceArn?: string;
}

/**
Expand Down
1 change: 1 addition & 0 deletions clients/client-quicksight/src/protocols/Aws_restJson1.ts
Expand Up @@ -1315,6 +1315,7 @@ export const se_CreateAccountSubscriptionCommand = async (
Edition: [],
EmailAddress: [],
FirstName: [],
IAMIdentityCenterInstanceArn: [],
LastName: [],
NotificationEmail: [],
ReaderGroup: (_) => _json(_),
Expand Down
10 changes: 8 additions & 2 deletions codegen/sdk-codegen/aws-models/quicksight.json
Expand Up @@ -327,7 +327,7 @@
"type": "structure",
"members": {},
"traits": {
"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>"
"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>"
}
},
"com.amazonaws.quicksight#AmazonElasticsearchParameters": {
Expand Down Expand Up @@ -6657,6 +6657,12 @@
"traits": {
"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>"
}
},
"IAMIdentityCenterInstanceArn": {
"target": "com.amazonaws.quicksight#String",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) for the IAM Identity Center instance.</p>"
}
}
},
"traits": {
Expand Down Expand Up @@ -22247,7 +22253,7 @@
"AllSheets": {
"target": "com.amazonaws.quicksight#AllSheetsFilterScopeConfiguration",
"traits": {
"smithy.api#documentation": "<p>The configuration for applying a filter to all sheets.</p>"
"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>"
}
}
},
Expand Down

0 comments on commit a837f79

Please sign in to comment.