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:
- Display
Name string - Name of the Amazon Q application.
- Iam
Service stringRole Arn - ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- Identity
Center 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:
- Attachments
Configuration ApplicationAttachments Configuration - 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.
- Encryption
Configuration ApplicationEncryption Configuration - Information about encryption configuration. See
encryption_configuration
below. - Dictionary<string, string>
- Timeouts
Application
Timeouts
- Display
Name string - Name of the Amazon Q application.
- Iam
Service stringRole Arn - ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- Identity
Center 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:
- Attachments
Configuration ApplicationAttachments Configuration Args - 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.
- Encryption
Configuration ApplicationEncryption Configuration Args - Information about encryption configuration. See
encryption_configuration
below. - map[string]string
- Timeouts
Application
Timeouts Args
- display
Name String - Name of the Amazon Q application.
- iam
Service StringRole Arn - ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identity
Center 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:
- attachments
Configuration ApplicationAttachments Configuration - 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.
- encryption
Configuration ApplicationEncryption Configuration - Information about encryption configuration. See
encryption_configuration
below. - Map<String,String>
- timeouts
Application
Timeouts
- display
Name string - Name of the Amazon Q application.
- iam
Service stringRole Arn - ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identity
Center 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:
- attachments
Configuration ApplicationAttachments Configuration - 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.
- encryption
Configuration ApplicationEncryption Configuration - Information about encryption configuration. See
encryption_configuration
below. - {[key: string]: string}
- timeouts
Application
Timeouts
- 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_configuration
below. - description str
- Description of the Amazon Q application.
- encryption_
configuration ApplicationEncryption Configuration Args - Information about encryption configuration. See
encryption_configuration
below. - Mapping[str, str]
- timeouts
Application
Timeouts Args
- display
Name String - Name of the Amazon Q application.
- iam
Service StringRole Arn - ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identity
Center 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:
- attachments
Configuration 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.
- encryption
Configuration Property Map - Information about encryption configuration. See
encryption_configuration
below. - 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.
- Identity
Center 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_tags
configuration block.
- Arn string
- ARN of the Q Business application.
- Id string
- The provider-assigned unique ID for this managed resource.
- Identity
Center 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_tags
configuration block.
- arn String
- ARN of the Q Business application.
- id String
- The provider-assigned unique ID for this managed resource.
- identity
Center 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_tags
configuration block.
- arn string
- ARN of the Q Business application.
- id string
- The provider-assigned unique ID for this managed resource.
- identity
Center 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_tags
configuration 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_tags
configuration block.
- arn String
- ARN of the Q Business application.
- id String
- The provider-assigned unique ID for this managed resource.
- identity
Center 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_tags
configuration 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) -> 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.
- Arn string
- ARN of the Q Business application.
- Attachments
Configuration ApplicationAttachments Configuration - 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.
- Display
Name string - Name of the Amazon Q application.
- Encryption
Configuration ApplicationEncryption Configuration - Information about encryption configuration. See
encryption_configuration
below. - Iam
Service stringRole Arn - ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- Identity
Center stringApplication Arn - ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- Identity
Center 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_tags
configuration block. - Timeouts
Application
Timeouts
- Arn string
- 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_configuration
below. - Description string
- Description of the Amazon Q application.
- Display
Name string - Name of the Amazon Q application.
- Encryption
Configuration ApplicationEncryption Configuration Args - Information about encryption configuration. See
encryption_configuration
below. - Iam
Service stringRole Arn - ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- Identity
Center stringApplication Arn - ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- Identity
Center 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_tags
configuration block. - Timeouts
Application
Timeouts Args
- arn String
- ARN of the Q Business application.
- attachments
Configuration ApplicationAttachments Configuration - 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.
- display
Name String - Name of the Amazon Q application.
- encryption
Configuration ApplicationEncryption Configuration - Information about encryption configuration. See
encryption_configuration
below. - iam
Service StringRole Arn - ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identity
Center StringApplication Arn - ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- identity
Center 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_tags
configuration block. - timeouts
Application
Timeouts
- arn string
- ARN of the Q Business application.
- attachments
Configuration ApplicationAttachments Configuration - 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.
- display
Name string - Name of the Amazon Q application.
- encryption
Configuration ApplicationEncryption Configuration - Information about encryption configuration. See
encryption_configuration
below. - iam
Service stringRole Arn - ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identity
Center stringApplication Arn - ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- identity
Center 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_tags
configuration block. - timeouts
Application
Timeouts
- 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_configuration
below. - 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_configuration
below. - 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_tags
configuration block. - timeouts
Application
Timeouts Args
- arn String
- ARN of the Q Business application.
- attachments
Configuration 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.
- display
Name String - Name of the Amazon Q application.
- encryption
Configuration Property Map - Information about encryption configuration. See
encryption_configuration
below. - iam
Service StringRole Arn - ARN of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
- identity
Center StringApplication Arn - ARN of the AWS IAM Identity Center application attached to your Amazon Q Business application.
- identity
Center 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_tags
configuration block. - timeouts Property Map
Supporting Types
ApplicationAttachmentsConfiguration, ApplicationAttachmentsConfigurationArgs
- Attachments
Control stringMode - Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are
ENABLED
andDISABLED
.
- Attachments
Control stringMode - Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are
ENABLED
andDISABLED
.
- attachments
Control StringMode - Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are
ENABLED
andDISABLED
.
- attachments
Control stringMode - Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are
ENABLED
andDISABLED
.
- attachments_
control_ strmode - Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are
ENABLED
andDISABLED
.
- attachments
Control StringMode - Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are
ENABLED
andDISABLED
.
ApplicationEncryptionConfiguration, ApplicationEncryptionConfigurationArgs
- Kms
Key stringId - Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
- Kms
Key stringId - Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
- kms
Key StringId - Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
- kms
Key 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.
- kms
Key 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
aws
Terraform Provider.