getImage

suspend fun getImage(argument: GetImagePlainArgs): GetImageResult

Data source for managing an AWS AppStream 2.0 Image.

Return

A collection of values returned by getImage.

Parameters

argument

A collection of arguments for invoking getImage.


suspend fun getImage(arn: String? = null, mostRecent: Boolean? = null, name: String? = null, nameRegex: String? = null, type: String? = null): GetImageResult

Return

A collection of values returned by getImage.

Parameters

arn

Arn of the image being searched for. Cannot be used with name_regex or name.

mostRecent

Boolean that if it is set to true and there are multiple images returned the most recent will be returned. If it is set to false and there are multiple images return the datasource will error.

name

Name of the image being searched for. Cannot be used with name_regex or arn.

nameRegex

Regular expression name of the image being searched for. Cannot be used with arn or name.

type

The type of image which must be (PUBLIC, PRIVATE, or SHARED).

See also


suspend fun getImage(argument: suspend GetImagePlainArgsBuilder.() -> Unit): GetImageResult

Return

A collection of values returned by getImage.

Parameters

argument

Builder for com.pulumi.aws.appstream.kotlin.inputs.GetImagePlainArgs.

See also