Class: Aws::CodeGuruProfiler::Types::AgentOrchestrationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruProfiler::Types::AgentOrchestrationConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeguruprofiler/types.rb
Overview
Specifies whether profiling is enabled or disabled for a profiling group. It is used by [ ‘ConfigureAgent` ][1] to enable or disable profiling for a profiling group.
[1]: docs.aws.amazon.com/codeguru/latest/profiler-api/API_ConfigureAgent.html
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 'lib/aws-sdk-codeguruprofiler/types.rb', line 117 class AgentOrchestrationConfig < Struct.new( :profiling_enabled) SENSITIVE = [] include Aws::Structure end |