com.pulumi.aws.networkfirewall.inputs.RuleGroupRuleGroupRulesSourceStatelessRulesAndCustomActionsStatelessRuleRuleDefinitionMatchAttributesSourcePortArgs 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.networkfirewall.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class RuleGroupRuleGroupRulesSourceStatelessRulesAndCustomActionsStatelessRuleRuleDefinitionMatchAttributesSourcePortArgs extends com.pulumi.resources.ResourceArgs {
public static final RuleGroupRuleGroupRulesSourceStatelessRulesAndCustomActionsStatelessRuleRuleDefinitionMatchAttributesSourcePortArgs Empty = new RuleGroupRuleGroupRulesSourceStatelessRulesAndCustomActionsStatelessRuleRuleDefinitionMatchAttributesSourcePortArgs();
/**
* The lower limit of the port range. This must be less than or equal to the `to_port`.
*
*/
@Import(name="fromPort", required=true)
private Output fromPort;
/**
* @return The lower limit of the port range. This must be less than or equal to the `to_port`.
*
*/
public Output fromPort() {
return this.fromPort;
}
/**
* The upper limit of the port range. This must be greater than or equal to the `from_port`.
*
*/
@Import(name="toPort")
private @Nullable Output toPort;
/**
* @return The upper limit of the port range. This must be greater than or equal to the `from_port`.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy