Skip to content

Commit 11eda11

Browse files
author
AWS
committed
Amazon QuickSight Update: Introduced custom permission capabilities for reporting content. Added menu option in exploration to preserve configuration data when textbox menu option is used. Added support for Athena trusted identity propagation.
1 parent fd24601 commit 11eda11

File tree

2 files changed

+65
-8
lines changed

2 files changed

+65
-8
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon QuickSight",
4+
"contributor": "",
5+
"description": "Introduced custom permission capabilities for reporting content. Added menu option in exploration to preserve configuration data when textbox menu option is used. Added support for Athena trusted identity propagation."
6+
}

services/quicksight/src/main/resources/codegen-resources/service-2.json

Lines changed: 59 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4209,8 +4209,7 @@
42094209
},
42104210
"AllSheetsFilterScopeConfiguration":{
42114211
"type":"structure",
4212-
"members":{
4213-
},
4212+
"members":{},
42144213
"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> <p>This is a union type structure. For this structure to be valid, only one of the attributes can be defined.</p>"
42154214
},
42164215
"AltText":{
@@ -6118,6 +6117,10 @@
61186117
"RoleArn":{
61196118
"shape":"RoleArn",
61206119
"documentation":"<p>Use the <code>RoleArn</code> structure to override an account-wide role for a specific Athena data source. For example, say an account administrator has turned off all Athena access with an account-wide role. The administrator can then use <code>RoleArn</code> to bypass the account-wide role and allow Athena access for the single Athena data source that is specified in the structure, even if the account-wide role forbidding Athena access is still active.</p>"
6120+
},
6121+
"IdentityCenterConfiguration":{
6122+
"shape":"IdentityCenterConfiguration",
6123+
"documentation":"<p>An optional parameter that configures IAM Identity Center authentication to grant Amazon QuickSight access to your workgroup.</p> <p>This parameter can only be specified if your Amazon QuickSight account is configured with IAM Identity Center.</p>"
61216124
}
61226125
},
61236126
"documentation":"<p>Parameters for Amazon Athena.</p>"
@@ -6286,8 +6289,7 @@
62866289
},
62876290
"AxisDisplayDataDrivenRange":{
62886291
"type":"structure",
6289-
"members":{
6290-
},
6292+
"members":{},
62916293
"documentation":"<p>The options that are saved for future extension.</p>"
62926294
},
62936295
"AxisDisplayMinMaxRange":{
@@ -7450,11 +7452,19 @@
74507452
"members":{
74517453
"ExportToCsv":{
74527454
"shape":"CapabilityState",
7453-
"documentation":"<p>The ability to export to CSV files.</p>"
7455+
"documentation":"<p>The ability to export to CSV files from the UI.</p>"
74547456
},
74557457
"ExportToExcel":{
74567458
"shape":"CapabilityState",
7457-
"documentation":"<p>The ability to export to Excel files.</p>"
7459+
"documentation":"<p>The ability to export to Excel files from the UI.</p>"
7460+
},
7461+
"ExportToPdf":{
7462+
"shape":"CapabilityState",
7463+
"documentation":"<p>The ability to export to PDF files from the UI.</p>"
7464+
},
7465+
"PrintReports":{
7466+
"shape":"CapabilityState",
7467+
"documentation":"<p>The ability to print reports.</p>"
74587468
},
74597469
"CreateAndUpdateThemes":{
74607470
"shape":"CapabilityState",
@@ -7515,6 +7525,22 @@
75157525
"CreateSPICEDataset":{
75167526
"shape":"CapabilityState",
75177527
"documentation":"<p>The ability to create a SPICE dataset.</p>"
7528+
},
7529+
"ExportToPdfInScheduledReports":{
7530+
"shape":"CapabilityState",
7531+
"documentation":"<p>The ability to export to PDF files in scheduled email reports.</p>"
7532+
},
7533+
"ExportToCsvInScheduledReports":{
7534+
"shape":"CapabilityState",
7535+
"documentation":"<p>The ability to export to CSV files in scheduled email reports.</p>"
7536+
},
7537+
"ExportToExcelInScheduledReports":{
7538+
"shape":"CapabilityState",
7539+
"documentation":"<p>The ability to export to Excel files in scheduled email reports.</p>"
7540+
},
7541+
"IncludeContentInScheduledReportsEmail":{
7542+
"shape":"CapabilityState",
7543+
"documentation":"<p>The ability to include content in scheduled email reports.</p>"
75187544
}
75197545
},
75207546
"documentation":"<p>A set of actions that correspond to Amazon QuickSight permissions.</p>"
@@ -11652,7 +11678,7 @@
1165211678
},
1165311679
"DataSetId":{
1165411680
"shape":"ResourceId",
11655-
"documentation":"<p>The ID of the dataset.</p>"
11681+
"documentation":"<p>The ID of the dataset. Limited to 96 characters.</p>"
1165611682
},
1165711683
"Name":{
1165811684
"shape":"ResourceName",
@@ -30041,7 +30067,8 @@
3004130067
"type":"string",
3004230068
"enum":[
3004330069
"REDSHIFT",
30044-
"QBUSINESS"
30070+
"QBUSINESS",
30071+
"ATHENA"
3004530072
]
3004630073
},
3004730074
"SessionLifetimeInMinutes":{
@@ -30515,6 +30542,10 @@
3051530542
"Content":{
3051630543
"shape":"SheetTextBoxContent",
3051730544
"documentation":"<p>The content that is displayed in the text box.</p>"
30545+
},
30546+
"Interactions":{
30547+
"shape":"TextBoxInteractionOptions",
30548+
"documentation":"<p>The general textbox interactions setup for a textbox.</p>"
3051830549
}
3051930550
},
3052030551
"documentation":"<p>A text box.</p>"
@@ -32802,6 +32833,26 @@
3280232833
},
3280332834
"documentation":"<p>The display options of a control.</p>"
3280432835
},
32836+
"TextBoxInteractionOptions":{
32837+
"type":"structure",
32838+
"members":{
32839+
"TextBoxMenuOption":{
32840+
"shape":"TextBoxMenuOption",
32841+
"documentation":"<p>The menu options for the textbox.</p>"
32842+
}
32843+
},
32844+
"documentation":"<p>The general textbox interactions setup for textbox publish options.</p>"
32845+
},
32846+
"TextBoxMenuOption":{
32847+
"type":"structure",
32848+
"members":{
32849+
"AvailabilityStatus":{
32850+
"shape":"DashboardBehavior",
32851+
"documentation":"<p>The availability status of the textbox menu. If the value of this property is set to <code>ENABLED</code>, dashboard readers can interact with the textbox menu.</p>"
32852+
}
32853+
},
32854+
"documentation":"<p>The menu options for the interactions of a textbox.</p>"
32855+
},
3280532856
"TextConditionalFormat":{
3280632857
"type":"structure",
3280732858
"members":{

0 commit comments

Comments
 (0)