class CfnApplicationPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QBusiness.Mixins.CfnApplicationPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqbusiness/mixins#CfnApplicationPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.CfnApplicationPropsMixin |
Python | aws_cdk.mixins_preview.aws_qbusiness.mixins.CfnApplicationPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_qbusiness » mixins » CfnApplicationPropsMixin |
Implements
IMixin
Extends
Mixin
Creates an Amazon Q Business application.
There are new tiers for Amazon Q Business. Not all features in Amazon Q Business Pro are also available in Amazon Q Business Lite. For information on what's included in Amazon Q Business Lite and what's included in Amazon Q Business Pro, see Amazon Q Business tiers . You must use the Amazon Q Business console to assign subscription tiers to users.
An Amazon Q Apps service linked role will be created if it's absent in the AWS account when
QAppsConfigurationis enabled in the request. For more information, see Using service-linked roles for Q Apps .When you create an application, Amazon Q Business may securely transmit data for processing from your selected AWS region, but within your geography. For more information, see Cross region inference in Amazon Q Business .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as qbusiness_mixins } from '@aws-cdk/mixins-preview/aws-qbusiness';
const cfnApplicationPropsMixin = new qbusiness_mixins.CfnApplicationPropsMixin({
attachmentsConfiguration: {
attachmentsControlMode: 'attachmentsControlMode',
},
autoSubscriptionConfiguration: {
autoSubscribe: 'autoSubscribe',
defaultSubscriptionType: 'defaultSubscriptionType',
},
clientIdsForOidc: ['clientIdsForOidc'],
description: 'description',
displayName: 'displayName',
encryptionConfiguration: {
kmsKeyId: 'kmsKeyId',
},
iamIdentityProviderArn: 'iamIdentityProviderArn',
identityCenterInstanceArn: 'identityCenterInstanceArn',
identityType: 'identityType',
personalizationConfiguration: {
personalizationControlMode: 'personalizationControlMode',
},
qAppsConfiguration: {
qAppsControlMode: 'qAppsControlMode',
},
quickSightConfiguration: {
clientNamespace: 'clientNamespace',
},
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnApplicationPropsMixin(props: CfnApplicationMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Application Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::QBusiness::Application.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript