Class: Aws::CodeGuruProfiler::Types::AgentOrchestrationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruProfiler::Types::AgentOrchestrationConfig
- Defined in:
- gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb
Overview
Specifies whether profiling is enabled or disabled for a profiling
group. It is used by ConfigureAgent
to enable or disable
profiling for a profiling group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#profiling_enabled ⇒ Boolean
A
Boolean
that specifies whether the profiling agent collects profiling data or not.
Instance Attribute Details
#profiling_enabled ⇒ Boolean
A Boolean
that specifies whether the profiling agent collects
profiling data or not. Set to true
to enable profiling.
117 118 119 120 121 |
# File 'gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb', line 117 class AgentOrchestrationConfig < Struct.new( :profiling_enabled) SENSITIVE = [] include Aws::Structure end |