Class: Aws::ApplicationSignals::Types::ServiceEntity
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::ServiceEntity
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
Represents a service entity that is monitored by Application Signals.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_account_id ⇒ String
The AWS account ID where the service is deployed.
-
#environment ⇒ String
The environment where the service is deployed, such as "Production", "Staging", or "Development".
-
#name ⇒ String
The name of the service as identified by Application Signals.
-
#type ⇒ String
The type of service, such as "WebService", "Database", "Queue", or "Function".
Instance Attribute Details
#aws_account_id ⇒ String
The AWS account ID where the service is deployed.
2652 2653 2654 2655 2656 2657 2658 2659 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2652 class ServiceEntity < Struct.new( :type, :name, :environment, :aws_account_id) SENSITIVE = [] include Aws::Structure end |
#environment ⇒ String
The environment where the service is deployed, such as "Production", "Staging", or "Development".
2652 2653 2654 2655 2656 2657 2658 2659 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2652 class ServiceEntity < Struct.new( :type, :name, :environment, :aws_account_id) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the service as identified by Application Signals.
2652 2653 2654 2655 2656 2657 2658 2659 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2652 class ServiceEntity < Struct.new( :type, :name, :environment, :aws_account_id) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of service, such as "WebService", "Database", "Queue", or "Function".
2652 2653 2654 2655 2656 2657 2658 2659 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2652 class ServiceEntity < Struct.new( :type, :name, :environment, :aws_account_id) SENSITIVE = [] include Aws::Structure end |