Class: Aws::ApplicationSignals::Types::AuditTargetEntity
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::AuditTargetEntity
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
AuditTargetEntity is a union - when making an API calls you must set exactly one of the members.
A union structure that contains the specific entity information for different types of audit targets.
Direct Known Subclasses
Defined Under Namespace
Classes: Service, ServiceOperation, Slo, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#service ⇒ Types::ServiceEntity
Service entity information when the audit target is a service.
-
#service_operation ⇒ Types::ServiceOperationEntity
Service operation entity information when the audit target is a specific service operation.
-
#slo ⇒ Types::ServiceLevelObjectiveEntity
SLO entity information when the audit target is a service level objective.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#service ⇒ Types::ServiceEntity
Service entity information when the audit target is a service.
143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 143 class AuditTargetEntity < Struct.new( :service, :slo, :service_operation, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Service < AuditTargetEntity; end class Slo < AuditTargetEntity; end class ServiceOperation < AuditTargetEntity; end class Unknown < AuditTargetEntity; end end |
#service_operation ⇒ Types::ServiceOperationEntity
Service operation entity information when the audit target is a specific service operation.
143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 143 class AuditTargetEntity < Struct.new( :service, :slo, :service_operation, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Service < AuditTargetEntity; end class Slo < AuditTargetEntity; end class ServiceOperation < AuditTargetEntity; end class Unknown < AuditTargetEntity; end end |
#slo ⇒ Types::ServiceLevelObjectiveEntity
SLO entity information when the audit target is a service level objective.
143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 143 class AuditTargetEntity < Struct.new( :service, :slo, :service_operation, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Service < AuditTargetEntity; end class Slo < AuditTargetEntity; end class ServiceOperation < AuditTargetEntity; end class Unknown < AuditTargetEntity; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
143 144 145 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 143 def unknown @unknown end |