com.pulumi.aws.appstream.AppstreamFunctions 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.
// *** 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.appstream;
import com.pulumi.aws.Utilities;
import com.pulumi.aws.appstream.inputs.GetImageArgs;
import com.pulumi.aws.appstream.inputs.GetImagePlainArgs;
import com.pulumi.aws.appstream.outputs.GetImageResult;
import com.pulumi.core.Output;
import com.pulumi.core.TypeShape;
import com.pulumi.deployment.Deployment;
import com.pulumi.deployment.InvokeOptions;
import java.util.concurrent.CompletableFuture;
public final class AppstreamFunctions {
/**
* Data source for managing an AWS AppStream 2.0 Image.
*
*/
public static Output getImage() {
return getImage(GetImageArgs.Empty, InvokeOptions.Empty);
}
/**
* Data source for managing an AWS AppStream 2.0 Image.
*
*/
public static CompletableFuture getImagePlain() {
return getImagePlain(GetImagePlainArgs.Empty, InvokeOptions.Empty);
}
/**
* Data source for managing an AWS AppStream 2.0 Image.
*
*/
public static Output getImage(GetImageArgs args) {
return getImage(args, InvokeOptions.Empty);
}
/**
* Data source for managing an AWS AppStream 2.0 Image.
*
*/
public static CompletableFuture getImagePlain(GetImagePlainArgs args) {
return getImagePlain(args, InvokeOptions.Empty);
}
/**
* Data source for managing an AWS AppStream 2.0 Image.
*
*/
public static Output getImage(GetImageArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("aws:appstream/getImage:getImage", TypeShape.of(GetImageResult.class), args, Utilities.withVersion(options));
}
/**
* Data source for managing an AWS AppStream 2.0 Image.
*
*/
public static CompletableFuture getImagePlain(GetImagePlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("aws:appstream/getImage:getImage", TypeShape.of(GetImageResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy