Class: Aws::ECS::Types::InstanceLaunchTemplate
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::InstanceLaunchTemplate
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The launch template configuration for Amazon ECS Managed Instances. This defines how Amazon ECS launches Amazon EC2 instances, including the instance profile for your tasks, network and storage configuration, capacity options, and instance requirements for flexible instance type selection.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ec2_instance_profile_arn ⇒ String
The Amazon Resource Name (ARN) of the instance profile that Amazon ECS applies to Amazon ECS Managed Instances.
-
#instance_requirements ⇒ Types::InstanceRequirementsRequest
The instance requirements.
-
#monitoring ⇒ String
CloudWatch provides two categories of monitoring: basic monitoring and detailed monitoring.
-
#network_configuration ⇒ Types::ManagedInstancesNetworkConfiguration
The network configuration for Amazon ECS Managed Instances.
-
#storage_configuration ⇒ Types::ManagedInstancesStorageConfiguration
The storage configuration for Amazon ECS Managed Instances.
Instance Attribute Details
#ec2_instance_profile_arn ⇒ String
The Amazon Resource Name (ARN) of the instance profile that Amazon ECS applies to Amazon ECS Managed Instances. This instance profile must include the necessary permissions for your tasks to access Amazon Web Services services and resources.
For more information, see Amazon ECS instance profile for Managed Instances in the Amazon ECS Developer Guide.
6193 6194 6195 6196 6197 6198 6199 6200 6201 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6193 class InstanceLaunchTemplate < Struct.new( :ec2_instance_profile_arn, :network_configuration, :storage_configuration, :monitoring, :instance_requirements) SENSITIVE = [] include Aws::Structure end |
#instance_requirements ⇒ Types::InstanceRequirementsRequest
The instance requirements. You can specify:
The instance types
Instance requirements such as vCPU count, memory, network performance, and accelerator specifications
Amazon ECS automatically selects the instances that match the specified criteria.
6193 6194 6195 6196 6197 6198 6199 6200 6201 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6193 class InstanceLaunchTemplate < Struct.new( :ec2_instance_profile_arn, :network_configuration, :storage_configuration, :monitoring, :instance_requirements) SENSITIVE = [] include Aws::Structure end |
#monitoring ⇒ String
CloudWatch provides two categories of monitoring: basic monitoring and detailed monitoring. By default, your managed instance is configured for basic monitoring. You can optionally enable detailed monitoring to help you more quickly identify and act on operational issues. You can enable or turn off detailed monitoring at launch or when the managed instance is running or stopped. For more information, see Detailed monitoring for Amazon ECS Managed Instances in the Amazon ECS Developer Guide.
6193 6194 6195 6196 6197 6198 6199 6200 6201 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6193 class InstanceLaunchTemplate < Struct.new( :ec2_instance_profile_arn, :network_configuration, :storage_configuration, :monitoring, :instance_requirements) SENSITIVE = [] include Aws::Structure end |
#network_configuration ⇒ Types::ManagedInstancesNetworkConfiguration
The network configuration for Amazon ECS Managed Instances. This specifies the subnets and security groups that instances use for network connectivity.
6193 6194 6195 6196 6197 6198 6199 6200 6201 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6193 class InstanceLaunchTemplate < Struct.new( :ec2_instance_profile_arn, :network_configuration, :storage_configuration, :monitoring, :instance_requirements) SENSITIVE = [] include Aws::Structure end |
#storage_configuration ⇒ Types::ManagedInstancesStorageConfiguration
The storage configuration for Amazon ECS Managed Instances. This defines the root volume size and type for the instances.
6193 6194 6195 6196 6197 6198 6199 6200 6201 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6193 class InstanceLaunchTemplate < Struct.new( :ec2_instance_profile_arn, :network_configuration, :storage_configuration, :monitoring, :instance_requirements) SENSITIVE = [] include Aws::Structure end |