Class: Aws::Synthetics::Types::EngineConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#browser_typeString

The browser type associated with this engine configuration.

Returns:

  • (String)


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_arnString

Each engine configuration contains the ARN of the Lambda function that is used as the canary's engine for a specific browser type.

Returns:

  • (String)


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