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)


29135
29136
29137
29138
29139
# File 'lib/aws-sdk-ec2/types.rb', line 29135

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

#iam_instance_profileTypes::IamInstanceProfileSpecification

The IAM instance profile.



29135
29136
29137
29138
29139
# File 'lib/aws-sdk-ec2/types.rb', line 29135

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