class CfnApplicationLogsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QBusiness.Mixins.CfnApplicationLogsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqbusiness/mixins#CfnApplicationLogsMixin |
Java | software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.CfnApplicationLogsMixin |
Python | aws_cdk.mixins_preview.aws_qbusiness.mixins.CfnApplicationLogsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_qbusiness » mixins » CfnApplicationLogsMixin |
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 { aws_logs as logs } from '@aws-cdk/mixins-preview';
import { mixins as qbusiness_mixins } from '@aws-cdk/mixins-preview/aws-qbusiness';
declare const logsDelivery: logs.ILogsDelivery;
const cfnApplicationLogsMixin = new qbusiness_mixins.CfnApplicationLogsMixin('logType', logsDelivery);
Initializer
new CfnApplicationLogsMixin(logType: string, logDelivery: ILogsDelivery)
Parameters
- logType
string— Type of logs that are getting vended. - logDelivery
ILogs— Object in charge of setting up the delivery source, delivery destination, and delivery connection.Delivery
Create a mixin to enable vended logs for AWS::QBusiness::Application.
Properties
| Name | Type | Description |
|---|---|---|
| log | ILogs | |
| log | string | |
| static EVENT_LOGS | Cfn | |
| static SYNC_JOB_LOGS | Cfn |
logDelivery
Type:
ILogs
logType
Type:
string
static EVENT_LOGS
Type:
Cfn
static SYNC_JOB_LOGS
Type:
Cfn
Methods
| Name | Description |
|---|---|
| apply | Apply vended logs configuration to the construct. |
| supports(construct) | Check if this mixin supports the given construct (has vendedLogs property). |
applyTo(resource)
public applyTo(resource: IConstruct): IConstruct
Parameters
- resource
IConstruct
Returns
Apply vended logs configuration to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct (has vendedLogs property).

.NET
Go
Java
Python
TypeScript