aws.qbusiness.Application
Explore with Pulumi AI
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.
- IamService stringRole Arn 
- ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- IdentityCenter stringInstance Arn 
- 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 ApplicationAttachments Configuration 
- Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configurationbelow.
- Description string
- Description of the Amazon Q application.
- EncryptionConfiguration ApplicationEncryption Configuration 
- Information about encryption configuration. See encryption_configurationbelow.
- Dictionary<string, string>
- Timeouts
ApplicationTimeouts 
- DisplayName string
- Name of the Amazon Q application.
- IamService stringRole Arn 
- ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- IdentityCenter stringInstance Arn 
- 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 ApplicationAttachments Configuration Args 
- Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configurationbelow.
- Description string
- Description of the Amazon Q application.
- EncryptionConfiguration ApplicationEncryption Configuration Args 
- Information about encryption configuration. See encryption_configurationbelow.
- map[string]string
- Timeouts
ApplicationTimeouts Args 
- displayName String
- Name of the Amazon Q application.
- iamService StringRole Arn 
- ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identityCenter StringInstance Arn 
- 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 ApplicationAttachments Configuration 
- Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configurationbelow.
- description String
- Description of the Amazon Q application.
- encryptionConfiguration ApplicationEncryption Configuration 
- Information about encryption configuration. See encryption_configurationbelow.
- Map<String,String>
- timeouts
ApplicationTimeouts 
- displayName string
- Name of the Amazon Q application.
- iamService stringRole Arn 
- ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identityCenter stringInstance Arn 
- 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 ApplicationAttachments Configuration 
- Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configurationbelow.
- description string
- Description of the Amazon Q application.
- encryptionConfiguration ApplicationEncryption Configuration 
- Information about encryption configuration. See encryption_configurationbelow.
- {[key: string]: string}
- timeouts
ApplicationTimeouts 
- display_name str
- Name of the Amazon Q application.
- iam_service_ strrole_ arn 
- ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identity_center_ strinstance_ arn 
- 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 ApplicationAttachments Configuration Args 
- Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configurationbelow.
- description str
- Description of the Amazon Q application.
- encryption_configuration ApplicationEncryption Configuration Args 
- Information about encryption configuration. See encryption_configurationbelow.
- Mapping[str, str]
- timeouts
ApplicationTimeouts Args 
- displayName String
- Name of the Amazon Q application.
- iamService StringRole Arn 
- ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identityCenter StringInstance Arn 
- 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_configurationbelow.
- description String
- Description of the Amazon Q application.
- encryptionConfiguration Property Map
- Information about encryption configuration. See encryption_configurationbelow.
- 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.
- IdentityCenter stringApplication Arn 
- ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Arn string
- ARN of the Q Business application.
- Id string
- The provider-assigned unique ID for this managed resource.
- IdentityCenter stringApplication Arn 
- ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- ARN of the Q Business application.
- id String
- The provider-assigned unique ID for this managed resource.
- identityCenter StringApplication Arn 
- ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn string
- ARN of the Q Business application.
- id string
- The provider-assigned unique ID for this managed resource.
- identityCenter stringApplication Arn 
- ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn str
- ARN of the Q Business application.
- id str
- The provider-assigned unique ID for this managed resource.
- identity_center_ strapplication_ arn 
- ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- ARN of the Q Business application.
- id String
- The provider-assigned unique ID for this managed resource.
- identityCenter StringApplication Arn 
- ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
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) -> Applicationfunc 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.
- Arn string
- ARN of the Q Business application.
- AttachmentsConfiguration ApplicationAttachments Configuration 
- Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configurationbelow.
- Description string
- Description of the Amazon Q application.
- DisplayName string
- Name of the Amazon Q application.
- EncryptionConfiguration ApplicationEncryption Configuration 
- Information about encryption configuration. See encryption_configurationbelow.
- IamService stringRole Arn 
- ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- IdentityCenter stringApplication Arn 
- ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- IdentityCenter stringInstance Arn 
- 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: 
- Dictionary<string, string>
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Timeouts
ApplicationTimeouts 
- Arn string
- ARN of the Q Business application.
- AttachmentsConfiguration ApplicationAttachments Configuration Args 
- Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configurationbelow.
- Description string
- Description of the Amazon Q application.
- DisplayName string
- Name of the Amazon Q application.
- EncryptionConfiguration ApplicationEncryption Configuration Args 
- Information about encryption configuration. See encryption_configurationbelow.
- IamService stringRole Arn 
- ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- IdentityCenter stringApplication Arn 
- ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- IdentityCenter stringInstance Arn 
- 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: 
- map[string]string
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Timeouts
ApplicationTimeouts Args 
- arn String
- ARN of the Q Business application.
- attachmentsConfiguration ApplicationAttachments Configuration 
- Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configurationbelow.
- description String
- Description of the Amazon Q application.
- displayName String
- Name of the Amazon Q application.
- encryptionConfiguration ApplicationEncryption Configuration 
- Information about encryption configuration. See encryption_configurationbelow.
- iamService StringRole Arn 
- ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identityCenter StringApplication Arn 
- ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- identityCenter StringInstance Arn 
- 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: 
- Map<String,String>
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- timeouts
ApplicationTimeouts 
- arn string
- ARN of the Q Business application.
- attachmentsConfiguration ApplicationAttachments Configuration 
- Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configurationbelow.
- description string
- Description of the Amazon Q application.
- displayName string
- Name of the Amazon Q application.
- encryptionConfiguration ApplicationEncryption Configuration 
- Information about encryption configuration. See encryption_configurationbelow.
- iamService stringRole Arn 
- ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identityCenter stringApplication Arn 
- ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- identityCenter stringInstance Arn 
- 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: 
- {[key: string]: string}
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- timeouts
ApplicationTimeouts 
- arn str
- ARN of the Q Business application.
- attachments_configuration ApplicationAttachments Configuration Args 
- Information about whether file upload functionality is activated or deactivated for your end user. See attachments_configurationbelow.
- description str
- Description of the Amazon Q application.
- display_name str
- Name of the Amazon Q application.
- encryption_configuration ApplicationEncryption Configuration Args 
- Information about encryption configuration. See encryption_configurationbelow.
- iam_service_ strrole_ arn 
- ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identity_center_ strapplication_ arn 
- ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- identity_center_ strinstance_ arn 
- 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: 
- Mapping[str, str]
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- timeouts
ApplicationTimeouts Args 
- 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_configurationbelow.
- 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_configurationbelow.
- iamService StringRole Arn 
- ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identityCenter StringApplication Arn 
- ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- identityCenter StringInstance Arn 
- 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: 
- Map<String>
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- timeouts Property Map
Supporting Types
ApplicationAttachmentsConfiguration, ApplicationAttachmentsConfigurationArgs      
- AttachmentsControl stringMode 
- Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are ENABLEDandDISABLED.
- AttachmentsControl stringMode 
- Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are ENABLEDandDISABLED.
- attachmentsControl StringMode 
- Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are ENABLEDandDISABLED.
- attachmentsControl stringMode 
- Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are ENABLEDandDISABLED.
- attachments_control_ strmode 
- Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are ENABLEDandDISABLED.
- attachmentsControl StringMode 
- Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are ENABLEDandDISABLED.
ApplicationEncryptionConfiguration, ApplicationEncryptionConfigurationArgs      
- KmsKey stringId 
- Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
- KmsKey stringId 
- Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
- kmsKey StringId 
- Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
- kmsKey stringId 
- Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
- kms_key_ strid 
- Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
- kmsKey StringId 
- 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 awsTerraform Provider.