com.pulumi.aws.networkmanager.inputs.GetLinksPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
The 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.networkmanager.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetLinksPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetLinksPlainArgs Empty = new GetLinksPlainArgs();
/**
* ID of the Global Network of the links to retrieve.
*
*/
@Import(name="globalNetworkId", required=true)
private String globalNetworkId;
/**
* @return ID of the Global Network of the links to retrieve.
*
*/
public String globalNetworkId() {
return this.globalNetworkId;
}
/**
* Link provider to retrieve.
*
*/
@Import(name="providerName")
private @Nullable String providerName;
/**
* @return Link provider to retrieve.
*
*/
public Optional providerName() {
return Optional.ofNullable(this.providerName);
}
/**
* ID of the site of the links to retrieve.
*
*/
@Import(name="siteId")
private @Nullable String siteId;
/**
* @return ID of the site of the links to retrieve.
*
*/
public Optional siteId() {
return Optional.ofNullable(this.siteId);
}
/**
* Restricts the list to the links with these tags.
*
*/
@Import(name="tags")
private @Nullable Map tags;
/**
* @return Restricts the list to the links with these tags.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy