Class: Aws::GuardDuty::Types::Ec2LaunchTemplate

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb

Overview

Contains information about the Amazon EC2 launch template involved in a GuardDuty finding, including unique identifiers of the Amazon EC2 instances.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ec2_instance_uidsArray<String>

A list of unique identifiers for the compromised Amazon EC2 instances that share the same Amazon EC2 launch template.

Returns:

  • (Array<String>)


3593
3594
3595
3596
3597
3598
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 3593

class Ec2LaunchTemplate < Struct.new(
  :ec2_instance_uids,
  :version)
  SENSITIVE = []
  include Aws::Structure
end

#versionString

Version of the EC2 launch template.

Returns:

  • (String)


3593
3594
3595
3596
3597
3598
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 3593

class Ec2LaunchTemplate < Struct.new(
  :ec2_instance_uids,
  :version)
  SENSITIVE = []
  include Aws::Structure
end