CARVIEW |
Select Language
HTTP/1.1 302 Moved Temporarily
Content-Type: text/html; charset=iso-8859-1
Content-Length: 301
Connection: keep-alive
Date: Thu, 31 Jul 2025 05:13:33 GMT
Location: https://sdk.amazonaws.com/kotlin/api/latest/ec2/aws.sdk.kotlin.services.ec2/-ec2-client/describe-image-attribute.html
Server: Server
Cache-Control: max-age=600
X-Frame-Options: SAMEORIGIN
Strict-Transport-Security: max-age=47304000; includeSubDomains
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Content-Security-Policy: upgrade-insecure-requests; script-src 'self' 'unsafe-inline' *.awsstatic.com *.cdn.uis.awsstatic.com *.cdn.console.awsstatic.com d2c.aws.amazon.com a0.awsstatic.com *.feedback.console.aws.dev insights.docs.aws.com wss://insights.docs.aws.com/prod; object-src 'none';
X-Cache: Miss from cloudfront
Via: 1.1 78fad162bf3327a21c1befb2923b3f84.cloudfront.net (CloudFront)
X-Amz-Cf-Pop: BOM78-P5
X-Amz-Cf-Id: Hq_BD0_qX4tHYmmucyxAWsr5WhHQbEqrg4OmCvxj5CAR9TxzfaRg_Q==
HTTP/1.1 200 OK
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Content-Security-Policy: upgrade-insecure-requests; script-src 'self' 'unsafe-inline' *.awsstatic.com *.cdn.uis.awsstatic.com *.cdn.console.awsstatic.com docs.aws.amazon.com https://*.shortbread.aws.dev; img-src 'self' https://amazonwebservices.d2.sc.omtrdc.net https://aws.demdex.net https://dpm.demdex.net https://cm.everesttech.net https://a0.awsstatic.com/; frame-src 'self' https://aws.demdex.net https://dpm.demdex.net; connect-src 'self' https://amazonwebservices.d2.sc.omtrdc.net https://aws.demdex.net https://dpm.demdex.net https://cm.everesttech.net https://a0.awsstatic.com/ https://d2c.aws.amazon.com https://vs.aws.amazon.com https://*.shortbread.aws.dev; object-src 'none'; frame-ancestors 'self'; base-uri 'none'
Strict-Transport-Security: max-age=31536000
Date: Thu, 31 Jul 2025 05:13:36 GMT
Last-Modified: Wed, 30 Jul 2025 22:34:20 GMT
X-Frame-Options: SAMEORIGIN
x-amz-server-side-encryption: AES256
Content-Encoding: gzip
Server: AmazonS3
Cache-Control: no-store, no-cache, must-revalidate
Via: 1.1 f211f91e8d5cedb9f00541e06f435da2.cloudfront.net (CloudFront), 1.1 814d785316b3b97f3947d5725de20452.cloudfront.net (CloudFront)
X-Amz-Cf-Pop: TLV50-C1
X-XSS-Protection: 1; mode=block
ETag: W/"0d72c045ecde03def32a722078771d2d"
Vary: Accept-Encoding
X-Cache: Miss from cloudfront
X-Amz-Cf-Pop: BOM78-P1
X-Amz-Cf-Id: QPsvWN3AuB0jfS3dTTi2h-MKnm-07V67wcbBiQlgA934bjMxFF_sfg==
describeImageAttribute
AWS SDK for Kotlin
describe
1.5.7
Platform filter
describeImageAttribute
abstract suspend fun describeImageAttribute(input: DescribeImageAttributeRequest): DescribeImageAttributeResponse
Describes the specified attribute of the specified AMI. You can specify only one attribute at a time.
The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
Samples
import aws.sdk.kotlin.services.ec2.model.ImageAttributeName
fun main() {
//sampleStart
// This example describes the launch permissions for the specified AMI.
val resp = ec2Client.describeImageAttribute {
attribute = ImageAttributeName.fromValue("launchPermission")
imageId = "ami-5731123e"
}
//sampleEnd
}