@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)
57 lines (56 loc) • 2.51 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Represents a runtime environment that can run migrated mainframe applications.
*/
export declare function getEnvironment(args: GetEnvironmentArgs, opts?: pulumi.InvokeOptions): Promise<GetEnvironmentResult>;
export interface GetEnvironmentArgs {
/**
* The Amazon Resource Name (ARN) of the runtime environment.
*/
environmentArn: string;
}
export interface GetEnvironmentResult {
/**
* The version of the runtime engine for the environment.
*/
readonly engineVersion?: string;
/**
* The Amazon Resource Name (ARN) of the runtime environment.
*/
readonly environmentArn?: string;
/**
* The unique identifier of the environment.
*/
readonly environmentId?: string;
/**
* > AWS Mainframe Modernization Service (Managed Runtime Environment experience) will no longer be open to new customers starting on November 7, 2025. If you would like to use the service, please sign up prior to November 7, 2025. For capabilities similar to AWS Mainframe Modernization Service (Managed Runtime Environment experience) explore AWS Mainframe Modernization Service (Self-Managed Experience). Existing customers can continue to use the service as normal. For more information, see [AWS Mainframe Modernization availability change](https://docs.aws.amazon.com/m2/latest/userguide/mainframe-modernization-availability-change.html) .
*
* Defines the details of a high availability configuration.
*/
readonly highAvailabilityConfig?: outputs.m2.EnvironmentHighAvailabilityConfig;
/**
* The type of instance underlying the environment.
*/
readonly instanceType?: string;
/**
* Configures a desired maintenance window for the environment. If you do not provide a value, a random system-generated value will be assigned.
*/
readonly preferredMaintenanceWindow?: string;
/**
* Tags associated to this environment.
*/
readonly tags?: {
[key: string]: string;
};
}
/**
* Represents a runtime environment that can run migrated mainframe applications.
*/
export declare function getEnvironmentOutput(args: GetEnvironmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEnvironmentResult>;
export interface GetEnvironmentOutputArgs {
/**
* The Amazon Resource Name (ARN) of the runtime environment.
*/
environmentArn: pulumi.Input<string>;
}