Interface CfnTemplate.TemplateVersionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.TemplateVersionProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.TemplateVersionProperty
extends software.amazon.jsii.JsiiSerializable
A version of a template.
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.*;
TemplateVersionProperty templateVersionProperty = TemplateVersionProperty.builder()
.createdTime("createdTime")
.dataSetConfigurations(List.of(DataSetConfigurationProperty.builder()
.columnGroupSchemaList(List.of(ColumnGroupSchemaProperty.builder()
.columnGroupColumnSchemaList(List.of(ColumnGroupColumnSchemaProperty.builder()
.name("name")
.build()))
.name("name")
.build()))
.dataSetSchema(DataSetSchemaProperty.builder()
.columnSchemaList(List.of(ColumnSchemaProperty.builder()
.dataType("dataType")
.geographicRole("geographicRole")
.name("name")
.build()))
.build())
.placeholder("placeholder")
.build()))
.description("description")
.errors(List.of(TemplateErrorProperty.builder()
.message("message")
.type("type")
.violatedEntities(List.of(EntityProperty.builder()
.path("path")
.build()))
.build()))
.sheets(List.of(SheetProperty.builder()
.name("name")
.sheetId("sheetId")
.build()))
.sourceEntityArn("sourceEntityArn")
.status("status")
.themeArn("themeArn")
.versionNumber(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.TemplateVersionPropertystatic final classAn implementation forCfnTemplate.TemplateVersionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe time that this template version was created.default ObjectSchema of the dataset identified by the placeholder.default StringThe description of the template.default ObjectErrors associated with this template version.default ObjectA list of the associated sheets with the unique identifier and name of each sheet.default StringThe Amazon Resource Name (ARN) of an analysis or template that was used to create this template.default StringThe status that is associated with the template.default StringThe ARN of the theme associated with this version of the template.default NumberThe version number of the template version.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCreatedTime
The time that this template version was created.- See Also:
-
getDataSetConfigurations
Schema of the dataset identified by the placeholder.Any dashboard created from this template should be bound to new datasets matching the same schema described through this API operation.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTemplate.DataSetConfigurationProperty>- See Also:
-
getDescription
The description of the template.- See Also:
-
getErrors
Errors associated with this template version.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTemplate.TemplateErrorProperty>- See Also:
-
getSheets
A list of the associated sheets with the unique identifier and name of each sheet.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTemplate.SheetProperty>- See Also:
-
getSourceEntityArn
The Amazon Resource Name (ARN) of an analysis or template that was used to create this template.- See Also:
-
getStatus
The status that is associated with the template.CREATION_IN_PROGRESSCREATION_SUCCESSFULCREATION_FAILEDUPDATE_IN_PROGRESSUPDATE_SUCCESSFULUPDATE_FAILEDDELETED
- See Also:
-
getThemeArn
The ARN of the theme associated with this version of the template.- See Also:
-
getVersionNumber
The version number of the template version.- See Also:
-
builder
-