interface EnableIoTLoggingParamsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnMitigationActionPropsMixin.EnableIoTLoggingParamsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnMitigationActionPropsMixin_EnableIoTLoggingParamsProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnMitigationActionPropsMixin.EnableIoTLoggingParamsProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnMitigationActionPropsMixin.EnableIoTLoggingParamsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnMitigationActionPropsMixin » EnableIoTLoggingParamsProperty |
Parameters used when defining a mitigation action that enable AWS IoT Core logging.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const enableIoTLoggingParamsProperty: iot_mixins.CfnMitigationActionPropsMixin.EnableIoTLoggingParamsProperty = {
logLevel: 'logLevel',
roleArnForLogging: 'roleArnForLogging',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | Specifies the type of information to be logged. |
| role | string | The Amazon Resource Name (ARN) of the IAM role used for logging. |
logLevel?
Type:
string
(optional)
Specifies the type of information to be logged.
roleArnForLogging?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role used for logging.

.NET
Go
Java
Python
TypeScript