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.
A set of alternate data source parameters that you want to share for the credentials
* stored with this data source. The credentials are applied in tandem with the data source
* parameters when you copy a data source by using a create or update request. The API
* operation compares the DataSourceParameters structure that's in the request
* with the structures in the AlternateDataSourceParameters allow list. If the
* structures are an exact match, the request is allowed to use the credentials from this
* existing data source. If the AlternateDataSourceParameters list is null,
* the Credentials originally used with this DataSourceParameters
* are automatically allowed.
* @property awsAccountId The AWS account ID.
* @property credentials The credentials Amazon QuickSight that uses to connect to your underlying source. Currently, only credentials based on user name and password are supported.
* @property dataSourceId An ID for the data source. This ID is unique per AWS Region for each AWS account.
* @property dataSourceParameters The parameters that Amazon QuickSight uses to connect to your underlying source.
* @property errorInfo Error information from the last update or the creation of the data source.
* @property name A display name for the data source.
* @property permissions A list of resource permissions on the data source.
* @property sslProperties Secure Socket Layer (SSL) properties that apply when Amazon QuickSight connects to your underlying source.
* @property tags Contains a map of the key-value pairs for the resource tag or tags assigned to the data source.
* @property type The type of the data source. To return a list of all data sources, use `ListDataSources` .
* Use `AMAZON_ELASTICSEARCH` for Amazon OpenSearch Service.
* @property vpcConnectionProperties Use this parameter only when you want Amazon QuickSight to use a VPC connection when connecting to your underlying source.
*/
public data class DataSourceArgs(
public val alternateDataSourceParameters: Output>? = null,
public val awsAccountId: Output? = null,
public val credentials: Output? = null,
public val dataSourceId: Output? = null,
public val dataSourceParameters: Output? = null,
public val errorInfo: Output? = null,
public val name: Output? = null,
public val permissions: Output>? = null,
public val sslProperties: Output? = null,
public val tags: Output>? = null,
public val type: Output? = null,
public val vpcConnectionProperties: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.DataSourceArgs =
com.pulumi.awsnative.quicksight.DataSourceArgs.builder()
.alternateDataSourceParameters(
alternateDataSourceParameters?.applyValue({ args0 ->
args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
)
.awsAccountId(awsAccountId?.applyValue({ args0 -> args0 }))
.credentials(credentials?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.dataSourceId(dataSourceId?.applyValue({ args0 -> args0 }))
.dataSourceParameters(
dataSourceParameters?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.errorInfo(errorInfo?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.name(name?.applyValue({ args0 -> args0 }))
.permissions(
permissions?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.sslProperties(sslProperties?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.type(type?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.vpcConnectionProperties(
vpcConnectionProperties?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [DataSourceArgs].
*/
@PulumiTagMarker
public class DataSourceArgsBuilder internal constructor() {
private var alternateDataSourceParameters: Output>? = null
private var awsAccountId: Output? = null
private var credentials: Output? = null
private var dataSourceId: Output? = null
private var dataSourceParameters: Output? = null
private var errorInfo: Output? = null
private var name: Output? = null
private var permissions: Output>? = null
private var sslProperties: Output? = null
private var tags: Output>? = null
private var type: Output? = null
private var vpcConnectionProperties: Output? = null
/**
* @param value
A set of alternate data source parameters that you want to share for the credentials
* stored with this data source. The credentials are applied in tandem with the data source
* parameters when you copy a data source by using a create or update request. The API
* operation compares the DataSourceParameters structure that's in the request
* with the structures in the AlternateDataSourceParameters allow list. If the
* structures are an exact match, the request is allowed to use the credentials from this
* existing data source. If the AlternateDataSourceParameters list is null,
* the Credentials originally used with this DataSourceParameters
* are automatically allowed.
*/
@JvmName("ardhlupbskalphen")
public suspend fun alternateDataSourceParameters(`value`: Output>) {
this.alternateDataSourceParameters = value
}
@JvmName("ernlpdqdjenyypje")
public suspend fun alternateDataSourceParameters(vararg values: Output) {
this.alternateDataSourceParameters = Output.all(values.asList())
}
/**
* @param values
A set of alternate data source parameters that you want to share for the credentials
* stored with this data source. The credentials are applied in tandem with the data source
* parameters when you copy a data source by using a create or update request. The API
* operation compares the DataSourceParameters structure that's in the request
* with the structures in the AlternateDataSourceParameters allow list. If the
* structures are an exact match, the request is allowed to use the credentials from this
* existing data source. If the AlternateDataSourceParameters list is null,
* the Credentials originally used with this DataSourceParameters
* are automatically allowed.
*/
@JvmName("xansalunlsuqyrgt")
public suspend fun alternateDataSourceParameters(values: List