interface CfnLogDeliveryConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cognito.Mixins.CfnLogDeliveryConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscognito/mixins#CfnLogDeliveryConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cognito.mixins.CfnLogDeliveryConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_cognito.mixins.CfnLogDeliveryConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cognito » mixins » 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 { mixins as cognito_mixins } from '@aws-cdk/mixins-preview/aws-cognito';
const cfnLogDeliveryConfigurationMixinProps: cognito_mixins.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