Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.AnalysisSheetDefinitionArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisSheetContentType
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property contentType The layout content type of the sheet. Choose one of the following options:
* - `PAGINATED` : Creates a sheet for a paginated report.
* - `INTERACTIVE` : Creates a sheet for an interactive dashboard.
* @property description A description of the sheet.
* @property filterControls The list of filter controls that are on a sheet.
* For more information, see [Adding filter controls to analysis sheets](https://docs.aws.amazon.com/quicksight/latest/user/filter-controls.html) in the *Amazon QuickSight User Guide* .
* @property layouts Layouts define how the components of a sheet are arranged.
* For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon QuickSight User Guide* .
* @property name The name of the sheet. This name is displayed on the sheet's tab in the Amazon QuickSight console.
* @property parameterControls The list of parameter controls that are on a sheet.
* For more information, see [Using a Control with a Parameter in Amazon QuickSight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon QuickSight User Guide* .
* @property sheetControlLayouts The control layouts of the sheet.
* @property sheetId The unique identifier of a sheet.
* @property textBoxes The text boxes that are on a sheet.
* @property title The title of the sheet.
* @property visuals A list of the visuals that are on a sheet. Visual placement is determined by the layout of the sheet.
*/
public data class AnalysisSheetDefinitionArgs(
public val contentType: Output? = null,
public val description: Output? = null,
public val filterControls: Output>? = null,
public val layouts: Output>? = null,
public val name: Output? = null,
public val parameterControls: Output>? = null,
public val sheetControlLayouts: Output>? = null,
public val sheetId: Output,
public val textBoxes: Output>? = null,
public val title: Output? = null,
public val visuals: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisSheetDefinitionArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisSheetDefinitionArgs.builder()
.contentType(contentType?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.description(description?.applyValue({ args0 -> args0 }))
.filterControls(
filterControls?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.layouts(
layouts?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.name(name?.applyValue({ args0 -> args0 }))
.parameterControls(
parameterControls?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.sheetControlLayouts(
sheetControlLayouts?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.sheetId(sheetId.applyValue({ args0 -> args0 }))
.textBoxes(
textBoxes?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.title(title?.applyValue({ args0 -> args0 }))
.visuals(
visuals?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [AnalysisSheetDefinitionArgs].
*/
@PulumiTagMarker
public class AnalysisSheetDefinitionArgsBuilder internal constructor() {
private var contentType: Output? = null
private var description: Output? = null
private var filterControls: Output>? = null
private var layouts: Output>? = null
private var name: Output? = null
private var parameterControls: Output>? = null
private var sheetControlLayouts: Output>? = null
private var sheetId: Output? = null
private var textBoxes: Output>? = null
private var title: Output? = null
private var visuals: Output>? = null
/**
* @param value The layout content type of the sheet. Choose one of the following options:
* - `PAGINATED` : Creates a sheet for a paginated report.
* - `INTERACTIVE` : Creates a sheet for an interactive dashboard.
*/
@JvmName("pvfhsnebremvtdod")
public suspend fun contentType(`value`: Output) {
this.contentType = value
}
/**
* @param value A description of the sheet.
*/
@JvmName("mbdtjebwrvqyofgk")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value The list of filter controls that are on a sheet.
* For more information, see [Adding filter controls to analysis sheets](https://docs.aws.amazon.com/quicksight/latest/user/filter-controls.html) in the *Amazon QuickSight User Guide* .
*/
@JvmName("updhbcrftgkhbftj")
public suspend fun filterControls(`value`: Output>) {
this.filterControls = value
}
@JvmName("vvkwgjffodffkexl")
public suspend fun filterControls(vararg values: Output) {
this.filterControls = Output.all(values.asList())
}
/**
* @param values The list of filter controls that are on a sheet.
* For more information, see [Adding filter controls to analysis sheets](https://docs.aws.amazon.com/quicksight/latest/user/filter-controls.html) in the *Amazon QuickSight User Guide* .
*/
@JvmName("ttvlplgkdefonayw")
public suspend fun filterControls(values: List