import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::Connect::SecurityProfile */ export declare class SecurityProfile extends pulumi.CustomResource { /** * Get an existing SecurityProfile 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): SecurityProfile; /** * Returns true if the given object is an instance of SecurityProfile. 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 SecurityProfile; /** * The identifier of the hierarchy group that a security profile uses to restrict access to resources in Amazon Connect. */ readonly allowedAccessControlHierarchyGroupId: pulumi.Output; /** * The list of tags that a security profile uses to restrict access to resources in Amazon Connect. */ readonly allowedAccessControlTags: pulumi.Output; /** * The list of flow-module resources to be linked to a security profile in Amazon Connect. */ readonly allowedFlowModules: pulumi.Output; /** * A list of third-party applications that the security profile will give access to. */ readonly applications: pulumi.Output; /** * The description of the security profile. */ readonly description: pulumi.Output; /** * The granular access control configuration for the security profile, including data table permissions. */ readonly granularAccessControlConfiguration: pulumi.Output; /** * The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect. */ readonly hierarchyRestrictedResources: pulumi.Output; /** * The identifier of the Amazon Connect instance. */ readonly instanceArn: pulumi.Output; /** * The AWS Region where this resource was last modified. */ readonly lastModifiedRegion: pulumi.Output; /** * The timestamp when this resource was last modified. */ readonly lastModifiedTime: pulumi.Output; /** * Permissions assigned to the security profile. */ readonly permissions: pulumi.Output; /** * The Amazon Resource Name (ARN) for the security profile. */ readonly securityProfileArn: pulumi.Output; /** * The name of the security profile. */ readonly securityProfileName: pulumi.Output; /** * The list of resources that a security profile applies tag restrictions to in Amazon Connect. */ readonly tagRestrictedResources: pulumi.Output; /** * The tags used to organize, track, or control access for this resource. */ readonly tags: pulumi.Output; /** * Create a SecurityProfile 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: SecurityProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a SecurityProfile resource. */ export interface SecurityProfileArgs { /** * The identifier of the hierarchy group that a security profile uses to restrict access to resources in Amazon Connect. */ allowedAccessControlHierarchyGroupId?: pulumi.Input; /** * The list of tags that a security profile uses to restrict access to resources in Amazon Connect. */ allowedAccessControlTags?: pulumi.Input[]>; /** * The list of flow-module resources to be linked to a security profile in Amazon Connect. */ allowedFlowModules?: pulumi.Input[]>; /** * A list of third-party applications that the security profile will give access to. */ applications?: pulumi.Input[]>; /** * The description of the security profile. */ description?: pulumi.Input; /** * The granular access control configuration for the security profile, including data table permissions. */ granularAccessControlConfiguration?: pulumi.Input; /** * The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect. */ hierarchyRestrictedResources?: pulumi.Input[]>; /** * The identifier of the Amazon Connect instance. */ instanceArn: pulumi.Input; /** * Permissions assigned to the security profile. */ permissions?: pulumi.Input[]>; /** * The name of the security profile. */ securityProfileName?: pulumi.Input; /** * The list of resources that a security profile applies tag restrictions to in Amazon Connect. */ tagRestrictedResources?: pulumi.Input[]>; /** * The tags used to organize, track, or control access for this resource. */ tags?: pulumi.Input[]>; }