AuditTargetEntity

sealed class AuditTargetEntity

A union structure that contains the specific entity information for different types of audit targets.

Inheritors

Types

Link copied to clipboard
data class Canary(val value: CanaryEntity) : AuditTargetEntity

Canary entity information when the audit target is a CloudWatch Synthetics canary.

Link copied to clipboard
Link copied to clipboard
data class Service(val value: ServiceEntity) : AuditTargetEntity

Service entity information when the audit target is a service.

Link copied to clipboard

Service operation entity information when the audit target is a specific service operation.

Link copied to clipboard

SLO entity information when the audit target is a service level objective.

Functions

Link copied to clipboard

Casts this AuditTargetEntity as a Canary and retrieves its aws.sdk.kotlin.services.applicationsignals.model.CanaryEntity value. Throws an exception if the AuditTargetEntity is not a Canary.

Link copied to clipboard
Link copied to clipboard

Casts this AuditTargetEntity as a Service and retrieves its aws.sdk.kotlin.services.applicationsignals.model.ServiceEntity value. Throws an exception if the AuditTargetEntity is not a Service.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard