ClusterRoleAssociationArgs

data class ClusterRoleAssociationArgs(val dbClusterIdentifier: Output<String>? = null, val featureName: Output<String>? = null, val roleArn: Output<String>? = null) : ConvertibleToJava<ClusterRoleAssociationArgs>

Manages a RDS DB Cluster association with an IAM Role. Example use cases:

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.rds.ClusterRoleAssociation;
import com.pulumi.aws.rds.ClusterRoleAssociationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ClusterRoleAssociation("example", ClusterRoleAssociationArgs.builder()
.dbClusterIdentifier(aws_rds_cluster.example().id())
.featureName("S3_INTEGRATION")
.roleArn(aws_iam_role.example().arn())
.build());
}
}

Import

aws_rds_cluster_role_association can be imported using the DB Cluster Identifier and IAM Role ARN separated by a comma (,), e.g.,

$ pulumi import aws:rds/clusterRoleAssociation:ClusterRoleAssociation example my-db-cluster,arn:aws:iam::123456789012:role/my-role

Constructors

Link copied to clipboard
constructor(dbClusterIdentifier: Output<String>? = null, featureName: Output<String>? = null, roleArn: Output<String>? = null)

Properties

Link copied to clipboard
val dbClusterIdentifier: Output<String>? = null

DB Cluster Identifier to associate with the IAM Role.

Link copied to clipboard
val featureName: Output<String>? = null

Name of the feature for association. This can be found in the AWS documentation relevant to the integration or a full list is available in the SupportedFeatureNames list returned by AWS CLI rds describe-db-engine-versions.

Link copied to clipboard
val roleArn: Output<String>? = null

Amazon Resource Name (ARN) of the IAM Role to associate with the DB Cluster.

Functions

Link copied to clipboard
open override fun toJava(): ClusterRoleAssociationArgs