com.pulumi.aws.opsworks.RdsDbInstance Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.opsworks;
import com.pulumi.aws.Utilities;
import com.pulumi.aws.opsworks.RdsDbInstanceArgs;
import com.pulumi.aws.opsworks.inputs.RdsDbInstanceState;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.List;
import javax.annotation.Nullable;
/**
* Provides an OpsWorks RDS DB Instance resource.
*
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.opsworks.RdsDbInstance;
* import com.pulumi.aws.opsworks.RdsDbInstanceArgs;
* 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 myInstance = new RdsDbInstance("myInstance", RdsDbInstanceArgs.builder()
* .stackId(myStack.id())
* .rdsDbInstanceArn(myInstanceAwsDbInstance.arn())
* .dbUser("someUser")
* .dbPassword("somePass")
* .build());
*
* }
* }
* }
*
* <!--End PulumiCodeChooser -->
*
*/
@ResourceType(type="aws:opsworks/rdsDbInstance:RdsDbInstance")
public class RdsDbInstance extends com.pulumi.resources.CustomResource {
/**
* A db password
*
*/
@Export(name="dbPassword", refs={String.class}, tree="[0]")
private Output dbPassword;
/**
* @return A db password
*
*/
public Output dbPassword() {
return this.dbPassword;
}
/**
* A db username
*
*/
@Export(name="dbUser", refs={String.class}, tree="[0]")
private Output dbUser;
/**
* @return A db username
*
*/
public Output dbUser() {
return this.dbUser;
}
/**
* The db instance to register for this stack. Changing this will force a new resource.
*
*/
@Export(name="rdsDbInstanceArn", refs={String.class}, tree="[0]")
private Output rdsDbInstanceArn;
/**
* @return The db instance to register for this stack. Changing this will force a new resource.
*
*/
public Output rdsDbInstanceArn() {
return this.rdsDbInstanceArn;
}
/**
* The stack to register a db instance for. Changing this will force a new resource.
*
*/
@Export(name="stackId", refs={String.class}, tree="[0]")
private Output stackId;
/**
* @return The stack to register a db instance for. Changing this will force a new resource.
*
*/
public Output stackId() {
return this.stackId;
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public RdsDbInstance(java.lang.String name) {
this(name, RdsDbInstanceArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public RdsDbInstance(java.lang.String name, RdsDbInstanceArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public RdsDbInstance(java.lang.String name, RdsDbInstanceArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("aws:opsworks/rdsDbInstance:RdsDbInstance", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private RdsDbInstance(java.lang.String name, Output id, @Nullable RdsDbInstanceState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("aws:opsworks/rdsDbInstance:RdsDbInstance", name, state, makeResourceOptions(options, id), false);
}
private static RdsDbInstanceArgs makeArgs(RdsDbInstanceArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? RdsDbInstanceArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.additionalSecretOutputs(List.of(
"dbPassword"
))
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static RdsDbInstance get(java.lang.String name, Output id, @Nullable RdsDbInstanceState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new RdsDbInstance(name, id, state, options);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy