@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
28 lines (27 loc) • 1.14 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::NimbleStudio::StreamingImage
*/
export declare function getStreamingImage(args: GetStreamingImageArgs, opts?: pulumi.InvokeOptions): Promise<GetStreamingImageResult>;
export interface GetStreamingImageArgs {
streamingImageId: string;
}
export interface GetStreamingImageResult {
readonly description?: string;
readonly encryptionConfiguration?: outputs.nimblestudio.StreamingImageEncryptionConfiguration;
readonly encryptionConfigurationKeyArn?: string;
readonly encryptionConfigurationKeyType?: string;
readonly eulaIds?: string[];
readonly name?: string;
readonly owner?: string;
readonly platform?: string;
readonly streamingImageId?: string;
}
/**
* Resource Type definition for AWS::NimbleStudio::StreamingImage
*/
export declare function getStreamingImageOutput(args: GetStreamingImageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetStreamingImageResult>;
export interface GetStreamingImageOutputArgs {
streamingImageId: pulumi.Input<string>;
}