import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource schema for AWS::DMS::InstanceProfile. */ export declare function getInstanceProfile(args: GetInstanceProfileArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetInstanceProfileArgs { /** * The property describes an ARN of the instance profile. */ instanceProfileArn: string; } export interface GetInstanceProfileResult { /** * The property describes an availability zone of the instance profile. */ readonly availabilityZone?: string; /** * The optional description of the instance profile. */ readonly description?: string; /** * The property describes an ARN of the instance profile. */ readonly instanceProfileArn?: string; /** * The property describes a creating time of the instance profile. */ readonly instanceProfileCreationTime?: string; /** * The property describes a name for the instance profile. */ readonly instanceProfileName?: string; /** * The property describes kms key arn for the instance profile. */ readonly kmsKeyArn?: string; /** * The property describes a network type for the instance profile. */ readonly networkType?: enums.dms.InstanceProfileNetworkType; /** * The property describes the publicly accessible of the instance profile */ readonly publiclyAccessible?: boolean; /** * The property describes a subnet group identifier for the instance profile. */ readonly subnetGroupIdentifier?: string; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; /** * The property describes vps security groups for the instance profile. */ readonly vpcSecurityGroups?: string[]; } /** * Resource schema for AWS::DMS::InstanceProfile. */ export declare function getInstanceProfileOutput(args: GetInstanceProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetInstanceProfileOutputArgs { /** * The property describes an ARN of the instance profile. */ instanceProfileArn: pulumi.Input; }