interface CfnLogDeliveryConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cognito.CfnLogDeliveryConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscognito#CfnLogDeliveryConfigurationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cognito.CfnLogDeliveryConfigurationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cognito.CfnLogDeliveryConfigurationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cognito » CfnLogDeliveryConfigurationMixinProps |
Properties for CfnLogDeliveryConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognito as cognito } from '@aws-cdk/cfn-property-mixins';
const cfnLogDeliveryConfigurationMixinProps: cognito.CfnLogDeliveryConfigurationMixinProps = {
logConfigurations: [{
cloudWatchLogsConfiguration: {
logGroupArn: 'logGroupArn',
},
eventSource: 'eventSource',
firehoseConfiguration: {
streamArn: 'streamArn',
},
logLevel: 'logLevel',
s3Configuration: {
bucketArn: 'bucketArn',
},
}],
userPoolId: 'userPoolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | IResolvable | (IResolvable | Log)[] | A logging destination of a user pool. |
| user | string | The ID of the user pool where you configured logging. |
logConfigurations?
Type:
IResolvable | (IResolvable | Log)[]
(optional)
A logging destination of a user pool.
User pools can have multiple logging destinations for message-delivery and user-activity logs.
userPoolId?
Type:
string
(optional)
The ID of the user pool where you configured logging.

.NET
Go
Java
Python
TypeScript