Class: Aws::EC2::Types::ReplaceIamInstanceProfileAssociationRequest

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#association_idString

The ID of the existing IAM instance profile association.

Returns:

  • (String)


18911
18912
18913
18914
18915
# File 'lib/aws-sdk-ec2/types.rb', line 18911

class ReplaceIamInstanceProfileAssociationRequest < Struct.new(
  :iam_instance_profile,
  :association_id)
  include Aws::Structure
end

#iam_instance_profileTypes::IamInstanceProfileSpecification

The IAM instance profile.



18911
18912
18913
18914
18915
# File 'lib/aws-sdk-ec2/types.rb', line 18911

class ReplaceIamInstanceProfileAssociationRequest < Struct.new(
  :iam_instance_profile,
  :association_id)
  include Aws::Structure
end