Class: Aws::EC2::Types::AssociateIamInstanceProfileRequest

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 AssociateIamInstanceProfileRequest data as a hash:

{
  iam_instance_profile: { # required
    arn: "String",
    name: "String",
  },
  instance_id: "String", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#iam_instance_profileTypes::IamInstanceProfileSpecification

The IAM instance profile.



863
864
865
866
867
# File 'lib/aws-sdk-ec2/types.rb', line 863

class AssociateIamInstanceProfileRequest < Struct.new(
  :iam_instance_profile,
  :instance_id)
  include Aws::Structure
end

#instance_idString

The ID of the instance.

Returns:

  • (String)


863
864
865
866
867
# File 'lib/aws-sdk-ec2/types.rb', line 863

class AssociateIamInstanceProfileRequest < Struct.new(
  :iam_instance_profile,
  :instance_id)
  include Aws::Structure
end