All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.shield.ProtectionHealthCheckAssociation Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
Show newest version
// *** 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.shield;

import com.pulumi.aws.Utilities;
import com.pulumi.aws.shield.ProtectionHealthCheckAssociationArgs;
import com.pulumi.aws.shield.inputs.ProtectionHealthCheckAssociationState;
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 javax.annotation.Nullable;

/**
 * Creates an association between a Route53 Health Check and a Shield Advanced protected resource.
 * This association uses the health of your applications to improve responsiveness and accuracy in attack detection and mitigation.
 * 
 * Blog post: [AWS Shield Advanced now supports Health Based Detection](https://aws.amazon.com/about-aws/whats-new/2020/02/aws-shield-advanced-now-supports-health-based-detection/)
 * 
 * ## Example Usage
 * 
 * ### Create an association between a protected EIP and a Route53 Health Check
 * 
 * <!--Start PulumiCodeChooser -->
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.aws.AwsFunctions;
 * import com.pulumi.aws.inputs.GetRegionArgs;
 * import com.pulumi.aws.inputs.GetCallerIdentityArgs;
 * import com.pulumi.aws.inputs.GetPartitionArgs;
 * import com.pulumi.aws.ec2.Eip;
 * import com.pulumi.aws.ec2.EipArgs;
 * import com.pulumi.aws.shield.Protection;
 * import com.pulumi.aws.shield.ProtectionArgs;
 * import com.pulumi.aws.route53.HealthCheck;
 * import com.pulumi.aws.route53.HealthCheckArgs;
 * import com.pulumi.aws.shield.ProtectionHealthCheckAssociation;
 * import com.pulumi.aws.shield.ProtectionHealthCheckAssociationArgs;
 * 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) {
 *         final var current = AwsFunctions.getRegion();
 * 
 *         final var currentGetCallerIdentity = AwsFunctions.getCallerIdentity();
 * 
 *         final var currentGetPartition = AwsFunctions.getPartition();
 * 
 *         var example = new Eip("example", EipArgs.builder()
 *             .domain("vpc")
 *             .tags(Map.of("Name", "example"))
 *             .build());
 * 
 *         var exampleProtection = new Protection("exampleProtection", ProtectionArgs.builder()
 *             .name("example-protection")
 *             .resourceArn(example.id().applyValue(id -> String.format("arn:%s:ec2:%s:%s:eip-allocation/%s", currentGetPartition.applyValue(getPartitionResult -> getPartitionResult.partition()),current.applyValue(getRegionResult -> getRegionResult.name()),currentGetCallerIdentity.applyValue(getCallerIdentityResult -> getCallerIdentityResult.accountId()),id)))
 *             .build());
 * 
 *         var exampleHealthCheck = new HealthCheck("exampleHealthCheck", HealthCheckArgs.builder()
 *             .ipAddress(example.publicIp())
 *             .port(80)
 *             .type("HTTP")
 *             .resourcePath("/ready")
 *             .failureThreshold("3")
 *             .requestInterval("30")
 *             .tags(Map.of("Name", "tf-example-health-check"))
 *             .build());
 * 
 *         var exampleProtectionHealthCheckAssociation = new ProtectionHealthCheckAssociation("exampleProtectionHealthCheckAssociation", ProtectionHealthCheckAssociationArgs.builder()
 *             .healthCheckArn(exampleHealthCheck.arn())
 *             .shieldProtectionId(exampleProtection.id())
 *             .build());
 * 
 *     }
 * }
 * }
 * 
* <!--End PulumiCodeChooser --> * * ## Import * * Using `pulumi import`, import Shield protection health check association resources using the `shield_protection_id` and `health_check_arn`. For example: * * ```sh * $ pulumi import aws:shield/protectionHealthCheckAssociation:ProtectionHealthCheckAssociation example ff9592dc-22f3-4e88-afa1-7b29fde9669a+arn:aws:route53:::healthcheck/3742b175-edb9-46bc-9359-f53e3b794b1b * ``` * */ @ResourceType(type="aws:shield/protectionHealthCheckAssociation:ProtectionHealthCheckAssociation") public class ProtectionHealthCheckAssociation extends com.pulumi.resources.CustomResource { /** * The ARN (Amazon Resource Name) of the Route53 Health Check resource which will be associated to the protected resource. * */ @Export(name="healthCheckArn", refs={String.class}, tree="[0]") private Output healthCheckArn; /** * @return The ARN (Amazon Resource Name) of the Route53 Health Check resource which will be associated to the protected resource. * */ public Output healthCheckArn() { return this.healthCheckArn; } /** * The ID of the protected resource. * */ @Export(name="shieldProtectionId", refs={String.class}, tree="[0]") private Output shieldProtectionId; /** * @return The ID of the protected resource. * */ public Output shieldProtectionId() { return this.shieldProtectionId; } /** * * @param name The _unique_ name of the resulting resource. */ public ProtectionHealthCheckAssociation(String name) { this(name, ProtectionHealthCheckAssociationArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public ProtectionHealthCheckAssociation(String name, ProtectionHealthCheckAssociationArgs 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 ProtectionHealthCheckAssociation(String name, ProtectionHealthCheckAssociationArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("aws:shield/protectionHealthCheckAssociation:ProtectionHealthCheckAssociation", name, args == null ? ProtectionHealthCheckAssociationArgs.Empty : args, makeResourceOptions(options, Codegen.empty())); } private ProtectionHealthCheckAssociation(String name, Output id, @Nullable ProtectionHealthCheckAssociationState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("aws:shield/protectionHealthCheckAssociation:ProtectionHealthCheckAssociation", name, state, makeResourceOptions(options, id)); } 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()) .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 ProtectionHealthCheckAssociation get(String name, Output id, @Nullable ProtectionHealthCheckAssociationState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new ProtectionHealthCheckAssociation(name, id, state, options); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy