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; 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; export interface GetInfrastructureConfigurationOutputArgs { /** * The Amazon Resource Name (ARN) of the infrastructure configuration. */ arn: pulumi.Input; }