com.pulumi.aws.networkmonitor.ProbeArgs 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.networkmonitor;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ProbeArgs extends com.pulumi.resources.ResourceArgs {
public static final ProbeArgs Empty = new ProbeArgs();
/**
* The destination IP address. This must be either IPV4 or IPV6.
*
*/
@Import(name="destination", required=true)
private Output destination;
/**
* @return The destination IP address. This must be either IPV4 or IPV6.
*
*/
public Output destination() {
return this.destination;
}
/**
* The port associated with the destination. This is required only if the protocol is TCP and must be a number between 1 and 65536.
*
*/
@Import(name="destinationPort")
private @Nullable Output destinationPort;
/**
* @return The port associated with the destination. This is required only if the protocol is TCP and must be a number between 1 and 65536.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy