modifyInstanceAttribute
abstract suspend fun modifyInstanceAttribute(input: ModifyInstanceAttributeRequest): ModifyInstanceAttributeResponse
Modifies the specified attribute of the specified instance. You can specify only one attribute at a time.
**Note: **Using this action to change the security groups associated with an elastic network interface (ENI) attached to an instance can result in an error if the instance has more than one ENI. To change the security groups associated with an ENI attached to an instance that has multiple ENIs, we recommend that you use the ModifyNetworkInterfaceAttribute action.
To modify some attributes, the instance must be stopped. For more information, see Modify a stopped instance in the Amazon EC2 User Guide.
Samples
import aws.sdk.kotlin.services.ec2.model.AttributeBooleanValue
import aws.sdk.kotlin.services.ec2.model.AttributeValue
fun main() {
//sampleStart
// This example enables enhanced networking for the specified stopped instance.
val resp = ec2Client.modifyInstanceAttribute {
instanceId = "i-1234567890abcdef0"
enaSupport = AttributeBooleanValue {
value = true
}
}
//sampleEnd
}
import aws.sdk.kotlin.services.ec2.model.AttributeBooleanValue
import aws.sdk.kotlin.services.ec2.model.AttributeValue
fun main() {
//sampleStart
// This example modifies the instance type of the specified stopped instance.
val resp = ec2Client.modifyInstanceAttribute {
instanceId = "i-1234567890abcdef0"
instanceType = AttributeValue {
value = "m5.large"
}
}
//sampleEnd
}