interface CustomContentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.CustomContentConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.CustomContentConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.CustomContentConfigurationProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDashboard » CustomContentConfigurationProperty |
The configuration of a CustomContentVisual .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const customContentConfigurationProperty: quicksight.CfnDashboard.CustomContentConfigurationProperty = {
contentType: 'contentType',
contentUrl: 'contentUrl',
imageScaling: 'imageScaling',
};
Properties
| Name | Type | Description |
|---|---|---|
| content | string | The content type of the custom content visual. |
| content | string | The input URL that links to the custom content that you want in the custom visual. |
| image | string | The sizing options for the size of the custom content visual. |
contentType?
Type:
string
(optional)
The content type of the custom content visual.
You can use this to have the visual render as an image.
contentUrl?
Type:
string
(optional)
The input URL that links to the custom content that you want in the custom visual.
imageScaling?
Type:
string
(optional)
The sizing options for the size of the custom content visual.
This structure is required when the ContentType of the visual is 'IMAGE' .

.NET
Java
Python
TypeScript