1. Packages
  2. AWS
  3. API Docs
  4. qbusiness
  5. Application
AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi

aws.qbusiness.Application

Explore with Pulumi AI

aws logo
AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi

    Provides a Q Business Application resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.qbusiness.Application("example", {
        displayName: "example-app",
        iamServiceRoleArn: exampleAwsIamRole.arn,
        identityCenterInstanceArn: exampleAwsSsoadminInstances.arns[0],
        attachmentsConfiguration: {
            attachmentsControlMode: "ENABLED",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.qbusiness.Application("example",
        display_name="example-app",
        iam_service_role_arn=example_aws_iam_role["arn"],
        identity_center_instance_arn=example_aws_ssoadmin_instances["arns"],
        attachments_configuration={
            "attachments_control_mode": "ENABLED",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/qbusiness"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := qbusiness.NewApplication(ctx, "example", &qbusiness.ApplicationArgs{
    			DisplayName:               pulumi.String("example-app"),
    			IamServiceRoleArn:         pulumi.Any(exampleAwsIamRole.Arn),
    			IdentityCenterInstanceArn: pulumi.Any(exampleAwsSsoadminInstances.Arns[0]),
    			AttachmentsConfiguration: &qbusiness.ApplicationAttachmentsConfigurationArgs{
    				AttachmentsControlMode: pulumi.String("ENABLED"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Qbusiness.Application("example", new()
        {
            DisplayName = "example-app",
            IamServiceRoleArn = exampleAwsIamRole.Arn,
            IdentityCenterInstanceArn = exampleAwsSsoadminInstances.Arns[0],
            AttachmentsConfiguration = new Aws.Qbusiness.Inputs.ApplicationAttachmentsConfigurationArgs
            {
                AttachmentsControlMode = "ENABLED",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.qbusiness.Application;
    import com.pulumi.aws.qbusiness.ApplicationArgs;
    import com.pulumi.aws.qbusiness.inputs.ApplicationAttachmentsConfigurationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Application("example", ApplicationArgs.builder()
                .displayName("example-app")
                .iamServiceRoleArn(exampleAwsIamRole.arn())
                .identityCenterInstanceArn(exampleAwsSsoadminInstances.arns()[0])
                .attachmentsConfiguration(ApplicationAttachmentsConfigurationArgs.builder()
                    .attachmentsControlMode("ENABLED")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:qbusiness:Application
        properties:
          displayName: example-app
          iamServiceRoleArn: ${exampleAwsIamRole.arn}
          identityCenterInstanceArn: ${exampleAwsSsoadminInstances.arns[0]}
          attachmentsConfiguration:
            attachmentsControlMode: ENABLED
    

    Create Application Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Application(name: string, args: ApplicationArgs, opts?: CustomResourceOptions);
    @overload
    def Application(resource_name: str,
                    args: ApplicationArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Application(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    display_name: Optional[str] = None,
                    iam_service_role_arn: Optional[str] = None,
                    identity_center_instance_arn: Optional[str] = None,
                    attachments_configuration: Optional[ApplicationAttachmentsConfigurationArgs] = None,
                    description: Optional[str] = None,
                    encryption_configuration: Optional[ApplicationEncryptionConfigurationArgs] = None,
                    tags: Optional[Mapping[str, str]] = None,
                    timeouts: Optional[ApplicationTimeoutsArgs] = None)
    func NewApplication(ctx *Context, name string, args ApplicationArgs, opts ...ResourceOption) (*Application, error)
    public Application(string name, ApplicationArgs args, CustomResourceOptions? opts = null)
    public Application(String name, ApplicationArgs args)
    public Application(String name, ApplicationArgs args, CustomResourceOptions options)
    
    type: aws:qbusiness:Application
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var exampleapplicationResourceResourceFromQbusinessapplication = new Aws.Qbusiness.Application("exampleapplicationResourceResourceFromQbusinessapplication", new()
    {
        DisplayName = "string",
        IamServiceRoleArn = "string",
        IdentityCenterInstanceArn = "string",
        AttachmentsConfiguration = new Aws.Qbusiness.Inputs.ApplicationAttachmentsConfigurationArgs
        {
            AttachmentsControlMode = "string",
        },
        Description = "string",
        EncryptionConfiguration = new Aws.Qbusiness.Inputs.ApplicationEncryptionConfigurationArgs
        {
            KmsKeyId = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Qbusiness.Inputs.ApplicationTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := qbusiness.NewApplication(ctx, "exampleapplicationResourceResourceFromQbusinessapplication", &qbusiness.ApplicationArgs{
    	DisplayName:               pulumi.String("string"),
    	IamServiceRoleArn:         pulumi.String("string"),
    	IdentityCenterInstanceArn: pulumi.String("string"),
    	AttachmentsConfiguration: &qbusiness.ApplicationAttachmentsConfigurationArgs{
    		AttachmentsControlMode: pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	EncryptionConfiguration: &qbusiness.ApplicationEncryptionConfigurationArgs{
    		KmsKeyId: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &qbusiness.ApplicationTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var exampleapplicationResourceResourceFromQbusinessapplication = new Application("exampleapplicationResourceResourceFromQbusinessapplication", ApplicationArgs.builder()
        .displayName("string")
        .iamServiceRoleArn("string")
        .identityCenterInstanceArn("string")
        .attachmentsConfiguration(ApplicationAttachmentsConfigurationArgs.builder()
            .attachmentsControlMode("string")
            .build())
        .description("string")
        .encryptionConfiguration(ApplicationEncryptionConfigurationArgs.builder()
            .kmsKeyId("string")
            .build())
        .tags(Map.of("string", "string"))
        .timeouts(ApplicationTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    exampleapplication_resource_resource_from_qbusinessapplication = aws.qbusiness.Application("exampleapplicationResourceResourceFromQbusinessapplication",
        display_name="string",
        iam_service_role_arn="string",
        identity_center_instance_arn="string",
        attachments_configuration={
            "attachments_control_mode": "string",
        },
        description="string",
        encryption_configuration={
            "kms_key_id": "string",
        },
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const exampleapplicationResourceResourceFromQbusinessapplication = new aws.qbusiness.Application("exampleapplicationResourceResourceFromQbusinessapplication", {
        displayName: "string",
        iamServiceRoleArn: "string",
        identityCenterInstanceArn: "string",
        attachmentsConfiguration: {
            attachmentsControlMode: "string",
        },
        description: "string",
        encryptionConfiguration: {
            kmsKeyId: "string",
        },
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:qbusiness:Application
    properties:
        attachmentsConfiguration:
            attachmentsControlMode: string
        description: string
        displayName: string
        encryptionConfiguration:
            kmsKeyId: string
        iamServiceRoleArn: string
        identityCenterInstanceArn: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
    

    Application Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Application resource accepts the following input properties:

    DisplayName string
    Name of the Amazon Q application.
    IamServiceRoleArn string
    ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
    IdentityCenterInstanceArn string

    ARN of the IAM Identity Center instance you are either creating for — or connecting to — your Amazon Q Business application.

    The following arguments are optional:

    AttachmentsConfiguration ApplicationAttachmentsConfiguration
    Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configuration below.
    Description string
    Description of the Amazon Q application.
    EncryptionConfiguration ApplicationEncryptionConfiguration
    Information about encryption configuration. See encryption_configuration below.
    Tags Dictionary<string, string>
    Timeouts ApplicationTimeouts
    DisplayName string
    Name of the Amazon Q application.
    IamServiceRoleArn string
    ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
    IdentityCenterInstanceArn string

    ARN of the IAM Identity Center instance you are either creating for — or connecting to — your Amazon Q Business application.

    The following arguments are optional:

    AttachmentsConfiguration ApplicationAttachmentsConfigurationArgs
    Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configuration below.
    Description string
    Description of the Amazon Q application.
    EncryptionConfiguration ApplicationEncryptionConfigurationArgs
    Information about encryption configuration. See encryption_configuration below.
    Tags map[string]string
    Timeouts ApplicationTimeoutsArgs
    displayName String
    Name of the Amazon Q application.
    iamServiceRoleArn String
    ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
    identityCenterInstanceArn String

    ARN of the IAM Identity Center instance you are either creating for — or connecting to — your Amazon Q Business application.

    The following arguments are optional:

    attachmentsConfiguration ApplicationAttachmentsConfiguration
    Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configuration below.
    description String
    Description of the Amazon Q application.
    encryptionConfiguration ApplicationEncryptionConfiguration
    Information about encryption configuration. See encryption_configuration below.
    tags Map<String,String>
    timeouts ApplicationTimeouts
    displayName string
    Name of the Amazon Q application.
    iamServiceRoleArn string
    ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
    identityCenterInstanceArn string

    ARN of the IAM Identity Center instance you are either creating for — or connecting to — your Amazon Q Business application.

    The following arguments are optional:

    attachmentsConfiguration ApplicationAttachmentsConfiguration
    Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configuration below.
    description string
    Description of the Amazon Q application.
    encryptionConfiguration ApplicationEncryptionConfiguration
    Information about encryption configuration. See encryption_configuration below.
    tags {[key: string]: string}
    timeouts ApplicationTimeouts
    display_name str
    Name of the Amazon Q application.
    iam_service_role_arn str
    ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
    identity_center_instance_arn str

    ARN of the IAM Identity Center instance you are either creating for — or connecting to — your Amazon Q Business application.

    The following arguments are optional:

    attachments_configuration ApplicationAttachmentsConfigurationArgs
    Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configuration below.
    description str
    Description of the Amazon Q application.
    encryption_configuration ApplicationEncryptionConfigurationArgs
    Information about encryption configuration. See encryption_configuration below.
    tags Mapping[str, str]
    timeouts ApplicationTimeoutsArgs
    displayName String
    Name of the Amazon Q application.
    iamServiceRoleArn String
    ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
    identityCenterInstanceArn String

    ARN of the IAM Identity Center instance you are either creating for — or connecting to — your Amazon Q Business application.

    The following arguments are optional:

    attachmentsConfiguration Property Map
    Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configuration below.
    description String
    Description of the Amazon Q application.
    encryptionConfiguration Property Map
    Information about encryption configuration. See encryption_configuration below.
    tags Map<String>
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Application resource produces the following output properties:

    Arn string
    ARN of the Q Business application.
    Id string
    The provider-assigned unique ID for this managed resource.
    IdentityCenterApplicationArn string
    ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Arn string
    ARN of the Q Business application.
    Id string
    The provider-assigned unique ID for this managed resource.
    IdentityCenterApplicationArn string
    ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    ARN of the Q Business application.
    id String
    The provider-assigned unique ID for this managed resource.
    identityCenterApplicationArn String
    ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn string
    ARN of the Q Business application.
    id string
    The provider-assigned unique ID for this managed resource.
    identityCenterApplicationArn string
    ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn str
    ARN of the Q Business application.
    id str
    The provider-assigned unique ID for this managed resource.
    identity_center_application_arn str
    ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    ARN of the Q Business application.
    id String
    The provider-assigned unique ID for this managed resource.
    identityCenterApplicationArn String
    ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Look up Existing Application Resource

    Get an existing Application resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ApplicationState, opts?: CustomResourceOptions): Application
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            attachments_configuration: Optional[ApplicationAttachmentsConfigurationArgs] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            encryption_configuration: Optional[ApplicationEncryptionConfigurationArgs] = None,
            iam_service_role_arn: Optional[str] = None,
            identity_center_application_arn: Optional[str] = None,
            identity_center_instance_arn: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[ApplicationTimeoutsArgs] = None) -> Application
    func GetApplication(ctx *Context, name string, id IDInput, state *ApplicationState, opts ...ResourceOption) (*Application, error)
    public static Application Get(string name, Input<string> id, ApplicationState? state, CustomResourceOptions? opts = null)
    public static Application get(String name, Output<String> id, ApplicationState state, CustomResourceOptions options)
    resources:  _:    type: aws:qbusiness:Application    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    ARN of the Q Business application.
    AttachmentsConfiguration ApplicationAttachmentsConfiguration
    Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configuration below.
    Description string
    Description of the Amazon Q application.
    DisplayName string
    Name of the Amazon Q application.
    EncryptionConfiguration ApplicationEncryptionConfiguration
    Information about encryption configuration. See encryption_configuration below.
    IamServiceRoleArn string
    ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
    IdentityCenterApplicationArn string
    ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
    IdentityCenterInstanceArn string

    ARN of the IAM Identity Center instance you are either creating for — or connecting to — your Amazon Q Business application.

    The following arguments are optional:

    Tags Dictionary<string, string>
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts ApplicationTimeouts
    Arn string
    ARN of the Q Business application.
    AttachmentsConfiguration ApplicationAttachmentsConfigurationArgs
    Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configuration below.
    Description string
    Description of the Amazon Q application.
    DisplayName string
    Name of the Amazon Q application.
    EncryptionConfiguration ApplicationEncryptionConfigurationArgs
    Information about encryption configuration. See encryption_configuration below.
    IamServiceRoleArn string
    ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
    IdentityCenterApplicationArn string
    ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
    IdentityCenterInstanceArn string

    ARN of the IAM Identity Center instance you are either creating for — or connecting to — your Amazon Q Business application.

    The following arguments are optional:

    Tags map[string]string
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts ApplicationTimeoutsArgs
    arn String
    ARN of the Q Business application.
    attachmentsConfiguration ApplicationAttachmentsConfiguration
    Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configuration below.
    description String
    Description of the Amazon Q application.
    displayName String
    Name of the Amazon Q application.
    encryptionConfiguration ApplicationEncryptionConfiguration
    Information about encryption configuration. See encryption_configuration below.
    iamServiceRoleArn String
    ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
    identityCenterApplicationArn String
    ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
    identityCenterInstanceArn String

    ARN of the IAM Identity Center instance you are either creating for — or connecting to — your Amazon Q Business application.

    The following arguments are optional:

    tags Map<String,String>
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts ApplicationTimeouts
    arn string
    ARN of the Q Business application.
    attachmentsConfiguration ApplicationAttachmentsConfiguration
    Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configuration below.
    description string
    Description of the Amazon Q application.
    displayName string
    Name of the Amazon Q application.
    encryptionConfiguration ApplicationEncryptionConfiguration
    Information about encryption configuration. See encryption_configuration below.
    iamServiceRoleArn string
    ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
    identityCenterApplicationArn string
    ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
    identityCenterInstanceArn string

    ARN of the IAM Identity Center instance you are either creating for — or connecting to — your Amazon Q Business application.

    The following arguments are optional:

    tags {[key: string]: string}
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts ApplicationTimeouts
    arn str
    ARN of the Q Business application.
    attachments_configuration ApplicationAttachmentsConfigurationArgs
    Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configuration below.
    description str
    Description of the Amazon Q application.
    display_name str
    Name of the Amazon Q application.
    encryption_configuration ApplicationEncryptionConfigurationArgs
    Information about encryption configuration. See encryption_configuration below.
    iam_service_role_arn str
    ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
    identity_center_application_arn str
    ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
    identity_center_instance_arn str

    ARN of the IAM Identity Center instance you are either creating for — or connecting to — your Amazon Q Business application.

    The following arguments are optional:

    tags Mapping[str, str]
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts ApplicationTimeoutsArgs
    arn String
    ARN of the Q Business application.
    attachmentsConfiguration Property Map
    Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configuration below.
    description String
    Description of the Amazon Q application.
    displayName String
    Name of the Amazon Q application.
    encryptionConfiguration Property Map
    Information about encryption configuration. See encryption_configuration below.
    iamServiceRoleArn String
    ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
    identityCenterApplicationArn String
    ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
    identityCenterInstanceArn String

    ARN of the IAM Identity Center instance you are either creating for — or connecting to — your Amazon Q Business application.

    The following arguments are optional:

    tags Map<String>
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts Property Map

    Supporting Types

    ApplicationAttachmentsConfiguration, ApplicationAttachmentsConfigurationArgs

    AttachmentsControlMode string
    Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are ENABLED and DISABLED.
    AttachmentsControlMode string
    Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are ENABLED and DISABLED.
    attachmentsControlMode String
    Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are ENABLED and DISABLED.
    attachmentsControlMode string
    Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are ENABLED and DISABLED.
    attachments_control_mode str
    Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are ENABLED and DISABLED.
    attachmentsControlMode String
    Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are ENABLED and DISABLED.

    ApplicationEncryptionConfiguration, ApplicationEncryptionConfigurationArgs

    KmsKeyId string
    Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
    KmsKeyId string
    Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
    kmsKeyId String
    Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
    kmsKeyId string
    Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
    kms_key_id str
    Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
    kmsKeyId String
    Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.

    ApplicationTimeouts, ApplicationTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import a Q Business Application using the id. For example:

    $ pulumi import aws:qbusiness/application:Application example id-12345678
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi