![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.rds.kotlin.outputs.DbInstanceDbInstanceRole.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.rds.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Information about an AWS Identity and Access Management (IAM) role that is associated with a DB instance.
* @property featureName The name of the feature associated with the AWS Identity and Access Management (IAM) role. IAM roles that are associated with a DB instance grant permission for the DB instance to access other AWS services on your behalf. For the list of supported feature names, see the ``SupportedFeatureNames`` description in [DBEngineVersion](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DBEngineVersion.html) in the *Amazon RDS API Reference*.
* @property roleArn The Amazon Resource Name (ARN) of the IAM role that is associated with the DB instance.
*/
public data class DbInstanceDbInstanceRole(
public val featureName: String,
public val roleArn: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.rds.outputs.DbInstanceDbInstanceRole): DbInstanceDbInstanceRole = DbInstanceDbInstanceRole(
featureName = javaType.featureName(),
roleArn = javaType.roleArn(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy