
com.pulumi.aws.ebs.inputs.GetVolumePlainArgs 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.ebs.inputs;
import com.pulumi.aws.ebs.inputs.GetVolumeFilter;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetVolumePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetVolumePlainArgs Empty = new GetVolumePlainArgs();
/**
* One or more name/value pairs to filter off of. There are
* several valid keys, for a full reference, check out
* [describe-volumes in the AWS CLI reference][1].
*
*/
@Import(name="filters")
private @Nullable List filters;
/**
* @return One or more name/value pairs to filter off of. There are
* several valid keys, for a full reference, check out
* [describe-volumes in the AWS CLI reference][1].
*
*/
public Optional> filters() {
return Optional.ofNullable(this.filters);
}
/**
* If more than one result is returned, use the most
* recent Volume.
*
*/
@Import(name="mostRecent")
private @Nullable Boolean mostRecent;
/**
* @return If more than one result is returned, use the most
* recent Volume.
*
*/
public Optional mostRecent() {
return Optional.ofNullable(this.mostRecent);
}
/**
* Map of tags for the resource.
*
*/
@Import(name="tags")
private @Nullable Map tags;
/**
* @return Map of tags for the resource.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy