@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:07.518Z") @Stability(value=Stable) public interface CfnDashboardProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
CfnDashboardProps cfnDashboardProps = CfnDashboardProps.builder()
.awsAccountId("awsAccountId")
.dashboardId("dashboardId")
.sourceEntity(DashboardSourceEntityProperty.builder()
.sourceTemplate(DashboardSourceTemplateProperty.builder()
.arn("arn")
.dataSetReferences(List.of(DataSetReferenceProperty.builder()
.dataSetArn("dataSetArn")
.dataSetPlaceholder("dataSetPlaceholder")
.build()))
.build())
.build())
// the properties below are optional
.dashboardPublishOptions(DashboardPublishOptionsProperty.builder()
.adHocFilteringOption(AdHocFilteringOptionProperty.builder()
.availabilityStatus("availabilityStatus")
.build())
.exportToCsvOption(ExportToCSVOptionProperty.builder()
.availabilityStatus("availabilityStatus")
.build())
.sheetControlsOption(SheetControlsOptionProperty.builder()
.visibilityState("visibilityState")
.build())
.build())
.name("name")
.parameters(ParametersProperty.builder()
.dateTimeParameters(List.of(DateTimeParameterProperty.builder()
.name("name")
.values(List.of("values"))
.build()))
.decimalParameters(List.of(DecimalParameterProperty.builder()
.name("name")
.values(List.of(123))
.build()))
.integerParameters(List.of(IntegerParameterProperty.builder()
.name("name")
.values(List.of(123))
.build()))
.stringParameters(List.of(StringParameterProperty.builder()
.name("name")
.values(List.of("values"))
.build()))
.build())
.permissions(List.of(ResourcePermissionProperty.builder()
.actions(List.of("actions"))
.principal("principal")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.themeArn("themeArn")
.versionDescription("versionDescription")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDashboardProps.Builder
A builder for
CfnDashboardProps |
static class |
CfnDashboardProps.Jsii$Proxy
An implementation for
CfnDashboardProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDashboardProps.Builder |
builder() |
String |
getAwsAccountId()
`AWS::QuickSight::Dashboard.AwsAccountId`.
|
String |
getDashboardId()
`AWS::QuickSight::Dashboard.DashboardId`.
|
default Object |
getDashboardPublishOptions()
`AWS::QuickSight::Dashboard.DashboardPublishOptions`.
|
default String |
getName()
`AWS::QuickSight::Dashboard.Name`.
|
default Object |
getParameters()
`AWS::QuickSight::Dashboard.Parameters`.
|
default Object |
getPermissions()
`AWS::QuickSight::Dashboard.Permissions`.
|
Object |
getSourceEntity()
`AWS::QuickSight::Dashboard.SourceEntity`.
|
default List<CfnTag> |
getTags()
`AWS::QuickSight::Dashboard.Tags`.
|
default String |
getThemeArn()
`AWS::QuickSight::Dashboard.ThemeArn`.
|
default String |
getVersionDescription()
`AWS::QuickSight::Dashboard.VersionDescription`.
|
@Stability(value=Stable) @NotNull String getAwsAccountId()
@Stability(value=Stable) @NotNull String getDashboardId()
@Stability(value=Stable) @Nullable default Object getDashboardPublishOptions()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getParameters()
@Stability(value=Stable) @Nullable default Object getPermissions()
@Stability(value=Stable) @NotNull Object getSourceEntity()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default String getThemeArn()
@Stability(value=Stable) @Nullable default String getVersionDescription()
@Stability(value=Stable) static CfnDashboardProps.Builder builder()
CfnDashboardProps.Builder of CfnDashboardPropsCopyright © 2021. All rights reserved.