import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource schema for AWS::DMS::InstanceProfile. */ export declare class InstanceProfile extends pulumi.CustomResource { /** * Get an existing InstanceProfile resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): InstanceProfile; /** * Returns true if the given object is an instance of InstanceProfile. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is InstanceProfile; /** * The property describes an availability zone of the instance profile. */ readonly availabilityZone: pulumi.Output; /** * The optional description of the instance profile. */ readonly description: pulumi.Output; /** * The property describes an ARN of the instance profile. */ readonly instanceProfileArn: pulumi.Output; /** * The property describes a creating time of the instance profile. */ readonly instanceProfileCreationTime: pulumi.Output; /** * The property describes an identifier for the instance profile. It is used for describing/deleting/modifying. Can be name/arn */ readonly instanceProfileIdentifier: pulumi.Output; /** * The property describes a name for the instance profile. */ readonly instanceProfileName: pulumi.Output; /** * The property describes kms key arn for the instance profile. */ readonly kmsKeyArn: pulumi.Output; /** * The property describes a network type for the instance profile. */ readonly networkType: pulumi.Output; /** * The property describes the publicly accessible of the instance profile */ readonly publiclyAccessible: pulumi.Output; /** * The property describes a subnet group identifier for the instance profile. */ readonly subnetGroupIdentifier: pulumi.Output; /** * An array of key-value pairs to apply to this resource. */ readonly tags: pulumi.Output; /** * The property describes vps security groups for the instance profile. */ readonly vpcSecurityGroups: pulumi.Output; /** * Create a InstanceProfile resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: InstanceProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a InstanceProfile resource. */ export interface InstanceProfileArgs { /** * The property describes an availability zone of the instance profile. */ availabilityZone?: pulumi.Input; /** * The optional description of the instance profile. */ description?: pulumi.Input; /** * The property describes an identifier for the instance profile. It is used for describing/deleting/modifying. Can be name/arn */ instanceProfileIdentifier?: pulumi.Input; /** * The property describes a name for the instance profile. */ instanceProfileName?: pulumi.Input; /** * The property describes kms key arn for the instance profile. */ kmsKeyArn?: pulumi.Input; /** * The property describes a network type for the instance profile. */ networkType?: pulumi.Input; /** * The property describes the publicly accessible of the instance profile */ publiclyAccessible?: pulumi.Input; /** * The property describes a subnet group identifier for the instance profile. */ subnetGroupIdentifier?: pulumi.Input; /** * An array of key-value pairs to apply to this resource. */ tags?: pulumi.Input[]>; /** * The property describes vps security groups for the instance profile. */ vpcSecurityGroups?: pulumi.Input[]>; }