Class: Aws::Synthetics::Types::EngineConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::EngineConfig
- Defined in:
- gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb
Overview
A structure of engine configurations for the canary, one for each browser type that the canary is configured to run on.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#browser_type ⇒ String
The browser type associated with this engine configuration.
-
#engine_arn ⇒ String
Each engine configuration contains the ARN of the Lambda function that is used as the canary's engine for a specific browser type.
Instance Attribute Details
#browser_type ⇒ String
The browser type associated with this engine configuration.
1449 1450 1451 1452 1453 1454 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1449 class EngineConfig < Struct.new( :engine_arn, :browser_type) SENSITIVE = [] include Aws::Structure end |
#engine_arn ⇒ String
Each engine configuration contains the ARN of the Lambda function that is used as the canary's engine for a specific browser type.
1449 1450 1451 1452 1453 1454 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1449 class EngineConfig < Struct.new( :engine_arn, :browser_type) SENSITIVE = [] include Aws::Structure end |