Class: Aws::OpsWorks::Types::DeleteInstanceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorks::Types::DeleteInstanceRequest
- Defined in:
- gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb
Overview
Note:
When making an API call, you may pass DeleteInstanceRequest data as a hash:
{
instance_id: "String", # required
delete_elastic_ip: false,
delete_volumes: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delete_elastic_ip ⇒ Boolean
Whether to delete the instance Elastic IP address.
-
#delete_volumes ⇒ Boolean
Whether to delete the instance's Amazon EBS volumes.
-
#instance_id ⇒ String
The instance ID.
Instance Attribute Details
#delete_elastic_ip ⇒ Boolean
Whether to delete the instance Elastic IP address.
2353 2354 2355 2356 2357 2358 2359 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 2353 class DeleteInstanceRequest < Struct.new( :instance_id, :delete_elastic_ip, :delete_volumes) SENSITIVE = [] include Aws::Structure end |
#delete_volumes ⇒ Boolean
Whether to delete the instance's Amazon EBS volumes.
2353 2354 2355 2356 2357 2358 2359 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 2353 class DeleteInstanceRequest < Struct.new( :instance_id, :delete_elastic_ip, :delete_volumes) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
The instance ID.
2353 2354 2355 2356 2357 2358 2359 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 2353 class DeleteInstanceRequest < Struct.new( :instance_id, :delete_elastic_ip, :delete_volumes) SENSITIVE = [] include Aws::Structure end |