UNPKG

@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)

85 lines (84 loc) 2.95 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource schema for AWS::ImageBuilder::InfrastructureConfiguration */ export declare function getInfrastructureConfiguration(args: GetInfrastructureConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetInfrastructureConfigurationResult>; export interface GetInfrastructureConfigurationArgs { /** * The Amazon Resource Name (ARN) of the infrastructure configuration. */ arn: string; } export interface GetInfrastructureConfigurationResult { /** * The Amazon Resource Name (ARN) of the infrastructure configuration. */ readonly arn?: string; /** * The description of the infrastructure configuration. */ readonly description?: string; /** * The instance metadata option settings for the infrastructure configuration. */ readonly instanceMetadataOptions?: outputs.imagebuilder.InfrastructureConfigurationInstanceMetadataOptions; /** * The instance profile of the infrastructure configuration. */ readonly instanceProfileName?: string; /** * The instance types of the infrastructure configuration. */ readonly instanceTypes?: string[]; /** * The EC2 key pair of the infrastructure configuration.. */ readonly keyPair?: string; /** * The logging configuration of the infrastructure configuration. */ readonly logging?: outputs.imagebuilder.InfrastructureConfigurationLogging; /** * The placement option settings for the infrastructure configuration. */ readonly placement?: outputs.imagebuilder.InfrastructureConfigurationPlacement; /** * The tags attached to the resource created by Image Builder. */ readonly resourceTags?: { [key: string]: string; }; /** * The security group IDs of the infrastructure configuration. */ readonly securityGroupIds?: string[]; /** * The SNS Topic Amazon Resource Name (ARN) of the infrastructure configuration. */ readonly snsTopicArn?: string; /** * The subnet ID of the infrastructure configuration. */ readonly subnetId?: string; /** * The tags associated with the component. */ readonly tags?: { [key: string]: string; }; /** * The terminate instance on failure configuration of the infrastructure configuration. */ readonly terminateInstanceOnFailure?: boolean; } /** * Resource schema for AWS::ImageBuilder::InfrastructureConfiguration */ export declare function getInfrastructureConfigurationOutput(args: GetInfrastructureConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetInfrastructureConfigurationResult>; export interface GetInfrastructureConfigurationOutputArgs { /** * The Amazon Resource Name (ARN) of the infrastructure configuration. */ arn: pulumi.Input<string>; }