DescribeImageAttribute
The DescribeImageAttribute
operation returns
information about an attribute of an AMI. Only one attribute
can be specified per call.
Request Parameters
The following table describes the request parameters for
DescribeImageAttribute
. Parameter names are case-sensitive.
Name | Description | Required |
---|---|---|
|
ID of the AMI for which an attribute will be described. Type: String |
Yes |
|
Specifies the attribute to describe. Type: String Valid Value: |
Yes |
Attributes
Attribute Name | Description | Required |
---|---|---|
|
The AMIs launch permissions. |
|
|
ID of the AMI for which an attribute will be described. Type: String |
Yes |
|
The product code attached to the AMI. |
No |
|
Describes the ID of the kernel associated with the AMI. Type: String |
No |
|
Describes the ID of RAM disk associated with the AMI. Type: String |
No |
|
Defines native device names to use when exposing virtual devices. Type: String |
No |
Response Elements
The following table describes the default response tags included
in DescribeImageAttribute
responses.
Name | Description |
---|---|
|
ID of the AMI described. Type: xsd:string |
|
Launch permissions of the AMI. Returned if Type: LaunchPermissionItemType[] |
|
Product codes of the AMI. Returned if Type: ProductCodeItemType[] |
|
ID of the kernel associated with the AMI. Returned if Type: xsd:string |
|
ID of the RAM disk associated with the AMI. Returned if Type: xsd:string |
|
Mapping that defines native device names to use when exposing
virtual devices. Returned if Type: BlockDeviceMappingItemType[] |
|
The operating platform of the instance. Type: xsd:string |
Sample Request - Launch Permission
https://ec2.amazonaws.com/ ?Action=DescribeImageAttribute &ImageId=ami-61a54008 &Attribute=launchPermission &...auth parameters...
Sample Response - Launch Permission
<DescribeImageAttributeResponse xmlns="http://ec2.amazonaws.com/doc/2008-08-08"> <imageId>ami-61a54008</imageId> <launchPermission> <item> <group>all</group> </item> <item> <userId>495219933132</userId> </item> </launchPermission> </DescribeImageAttributeResponse>
Sample Request - Product Codes
https://ec2.amazonaws.com/ ?Action=DescribeImageAttribute &ImageId=ami-61a54008 &Attribute=productCodes &...auth parameters...
Sample Response - Product Codes
<DescribeImageAttributeResponse xmlns="http://ec2.amazonaws.com/doc/2007-01-03"> <imageId>ami-61a54008</imageId> <productCodes> <item> <productCode>774F4FF8</productCode> </item> </productCodes> </DescribeImageAttributeResponse>