@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)
65 lines (64 loc) • 2.56 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Definition of AWS::DataZone::EnvironmentBlueprintConfiguration Resource Type
*/
export declare function getEnvironmentBlueprintConfiguration(args: GetEnvironmentBlueprintConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetEnvironmentBlueprintConfigurationResult>;
export interface GetEnvironmentBlueprintConfigurationArgs {
/**
* The identifier of the Amazon DataZone domain in which an environment blueprint exists.
*/
domainId: string;
/**
* The identifier of the environment blueprint. This identifier should be used when creating environment profiles.
*/
environmentBlueprintId: string;
}
export interface GetEnvironmentBlueprintConfigurationResult {
/**
* The timestamp of when an environment blueprint was created.
*/
readonly createdAt?: string;
/**
* The identifier of the Amazon DataZone domain in which an environment blueprint exists.
*/
readonly domainId?: string;
/**
* The enabled AWS Regions specified in a blueprint configuration.
*/
readonly enabledRegions?: string[];
/**
* The identifier of the environment blueprint. This identifier should be used when creating environment profiles.
*/
readonly environmentBlueprintId?: string;
/**
* The ARN of the manage access role.
*/
readonly manageAccessRoleArn?: string;
/**
* The ARN of the provisioning role.
*/
readonly provisioningRoleArn?: string;
/**
* The regional parameters of the environment blueprint.
*/
readonly regionalParameters?: outputs.datazone.EnvironmentBlueprintConfigurationRegionalParameter[];
/**
* The timestamp of when the environment blueprint was updated.
*/
readonly updatedAt?: string;
}
/**
* Definition of AWS::DataZone::EnvironmentBlueprintConfiguration Resource Type
*/
export declare function getEnvironmentBlueprintConfigurationOutput(args: GetEnvironmentBlueprintConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEnvironmentBlueprintConfigurationResult>;
export interface GetEnvironmentBlueprintConfigurationOutputArgs {
/**
* The identifier of the Amazon DataZone domain in which an environment blueprint exists.
*/
domainId: pulumi.Input<string>;
/**
* The identifier of the environment blueprint. This identifier should be used when creating environment profiles.
*/
environmentBlueprintId: pulumi.Input<string>;
}