class Logging (construct)
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.Alpha.Logging |
Go | github.com/aws/aws-cdk-go/awscdkiotalpha/v2#Logging |
Java | software.amazon.awscdk.services.iot.alpha.Logging |
Python | aws_cdk.aws_iot_alpha.Logging |
TypeScript (source) | @aws-cdk/aws-iot-alpha ยป Logging |
Implements
IConstruct, IDependable, IResource, IEnvironment, ILogging
Defines AWS IoT Logging.
Example
new iot.Logging(this, 'Logging', {
logLevel: iot.LogLevel.INFO,
});
Initializer
new Logging(scope: Construct, id: string, props?: LoggingProps)
Parameters
- scope
Construct - id
string - props
LoggingProps
Construct Props
| Name | Type | Description |
|---|---|---|
| log | Log | The log level for the AWS IoT Logging. |
logLevel?
Type:
Log
(optional, default: LogLevel.ERROR)
The log level for the AWS IoT Logging.
Properties
| Name | Type | Description |
|---|---|---|
| env | Resource | The environment this resource belongs to. |
| log | string | The logging ID. |
| node | Node | The tree node. |
| stack | Stack | The stack in which this resource is defined. |
| static PROPERTY_INJECTION_ID | string | Uniquely identifies this class. |
env
Type:
Resource
The environment this resource belongs to.
For resources that are created and managed in a Stack (those created by
creating new class instances like new Role(), new Bucket(), etc.), this
is always the same as the environment of the stack they belong to.
For referenced resources (those obtained from referencing methods like
Role.fromRoleArn(), Bucket.fromBucketName(), etc.), they might be
different than the stack they were imported into.
logId
Type:
string
The logging ID.
node
Type:
Node
The tree node.
stack
Type:
Stack
The stack in which this resource is defined.
static PROPERTY_INJECTION_ID
Type:
string
Uniquely identifies this class.
Methods
| Name | Description |
|---|---|
| apply | Apply the given removal policy to this resource. |
| to | Returns a string representation of this construct. |
| static from | Import an existing AWS IoT Logging. |
applyRemovalPolicy(policy)
public applyRemovalPolicy(policy: RemovalPolicy): void
Parameters
- policy
RemovalPolicy
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (RemovalPolicy.DESTROY), or left in your AWS
account for data recovery and cleanup later (RemovalPolicy.RETAIN).
toString()
public toString(): string
Returns
string
Returns a string representation of this construct.
static fromLogId(scope, id, logId)
public static fromLogId(scope: Construct, id: string, logId: string): ILogging
Parameters
- scope
Constructโ The parent creating construct (usuallythis). - id
stringโ The construct's name. - logId
stringโ AWS IoT Logging ID.
Returns
Import an existing AWS IoT Logging.

.NET
Go
Java
Python
TypeScript (