Class: Aws::EC2::Types::DescribeImageAttributeRequest

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

{
  attribute: "description", # required, accepts description, kernel, ramdisk, launchPermission, productCodes, blockDeviceMapping, sriovNetSupport
  image_id: "String", # required
  dry_run: false,
}

Contains the parameters for DescribeImageAttribute.

Instance Attribute Summary collapse

Instance Attribute Details

#attributeString

The AMI attribute.

Note: Depending on your account privileges, the ‘blockDeviceMapping` attribute may return a `Client.AuthFailure` error. If this happens, use DescribeImages to get information about the block device mapping for the AMI.

Returns:

  • (String)


11379
11380
11381
11382
11383
11384
# File 'lib/aws-sdk-ec2/types.rb', line 11379

class DescribeImageAttributeRequest < Struct.new(
  :attribute,
  :image_id,
  :dry_run)
  include Aws::Structure
end

#dry_runBoolean

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ‘DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.

Returns:

  • (Boolean)


11379
11380
11381
11382
11383
11384
# File 'lib/aws-sdk-ec2/types.rb', line 11379

class DescribeImageAttributeRequest < Struct.new(
  :attribute,
  :image_id,
  :dry_run)
  include Aws::Structure
end

#image_idString

The ID of the AMI.

Returns:

  • (String)


11379
11380
11381
11382
11383
11384
# File 'lib/aws-sdk-ec2/types.rb', line 11379

class DescribeImageAttributeRequest < Struct.new(
  :attribute,
  :image_id,
  :dry_run)
  include Aws::Structure
end