class CfnInstanceLogsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnInstanceLogsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnInstanceLogsMixin |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnInstanceLogsMixin |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnInstanceLogsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnInstanceLogsMixin |
Implements
IMixin
Extends
Mixin
This is a preview release for Amazon Connect . It is subject to change..
Initiates an Amazon Connect instance with all the supported channels enabled. It does not attach any storage, such as Amazon Simple Storage Service (Amazon S3) or Amazon Kinesis.
Amazon Connect enforces a limit on the total number of instances that you can create or delete in 30 days. If you exceed this limit, you will get an error message indicating there has been an excessive number of attempts at creating or deleting instances. You must wait 30 days before you can restart creating and deleting instances in your account.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-instance.html
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 connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
declare const logsDelivery: logs.ILogsDelivery;
const cfnInstanceLogsMixin = new connect_mixins.CfnInstanceLogsMixin('logType', logsDelivery);
Initializer
new CfnInstanceLogsMixin(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::Connect::Instance.
Properties
| Name | Type | Description |
|---|---|---|
| log | ILogs | |
| log | string | |
| static AMAZON_CONNECT_FLOW_LOGS | Cfn |
logDelivery
Type:
ILogs
logType
Type:
string
static AMAZON_CONNECT_FLOW_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