Class: Aws::EC2::Types::LaunchTemplateIamInstanceProfileSpecificationRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass LaunchTemplateIamInstanceProfileSpecificationRequest data as a hash:

{
  arn: "String",
  name: "String",
}

An IAM instance profile.

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The Amazon Resource Name (ARN) of the instance profile.

Returns:

  • (String)


24213
24214
24215
24216
24217
# File 'lib/aws-sdk-ec2/types.rb', line 24213

class LaunchTemplateIamInstanceProfileSpecificationRequest < Struct.new(
  :arn,
  :name)
  include Aws::Structure
end

#nameString

The name of the instance profile.

Returns:

  • (String)


24213
24214
24215
24216
24217
# File 'lib/aws-sdk-ec2/types.rb', line 24213

class LaunchTemplateIamInstanceProfileSpecificationRequest < Struct.new(
  :arn,
  :name)
  include Aws::Structure
end