ReadinessCheckArgs

data class ReadinessCheckArgs(val readinessCheckName: Output<String>? = null, val resourceSetName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<ReadinessCheckArgs>

Provides an AWS Route 53 Recovery Readiness Readiness Check.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.route53recoveryreadiness.ReadinessCheck;
import com.pulumi.aws.route53recoveryreadiness.ReadinessCheckArgs;
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 ReadinessCheck("example", ReadinessCheckArgs.builder()
.readinessCheckName(my_cw_alarm_check)
.resourceSetName(my_cw_alarm_set)
.build());
}
}

Import

Route53 Recovery Readiness readiness checks can be imported via the readiness check name, e.g.,

$ pulumi import aws:route53recoveryreadiness/readinessCheck:ReadinessCheck my-cw-alarm-check

Constructors

Link copied to clipboard
constructor(readinessCheckName: Output<String>? = null, resourceSetName: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

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

Unique name describing the readiness check.

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

Name describing the resource set that will be monitored for readiness. The following arguments are optional:

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level

Functions

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