com.pulumi.aws.directconnect.GatewayArgs 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.directconnect;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GatewayArgs extends com.pulumi.resources.ResourceArgs {
public static final GatewayArgs Empty = new GatewayArgs();
/**
* The ASN to be configured on the Amazon side of the connection. The ASN must be in the private range of 64,512 to 65,534 or 4,200,000,000 to 4,294,967,294.
*
*/
@Import(name="amazonSideAsn", required=true)
private Output amazonSideAsn;
/**
* @return The ASN to be configured on the Amazon side of the connection. The ASN must be in the private range of 64,512 to 65,534 or 4,200,000,000 to 4,294,967,294.
*
*/
public Output amazonSideAsn() {
return this.amazonSideAsn;
}
/**
* The name of the connection.
*
*/
@Import(name="name")
private @Nullable Output name;
/**
* @return The name of the connection.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy