interface EnableIoTLoggingParamsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnMitigationActionPropsMixin.EnableIoTLoggingParamsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnMitigationActionPropsMixin_EnableIoTLoggingParamsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnMitigationActionPropsMixin.EnableIoTLoggingParamsProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnMitigationActionPropsMixin.EnableIoTLoggingParamsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » 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 { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const enableIoTLoggingParamsProperty: iot.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