Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AwsEcsServiceDetails

import type { AwsEcsServiceDetails } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

Provides details about a service within an ECS cluster.

interface AwsEcsServiceDetails {
CapacityProviderStrategy?: AwsEcsServiceCapacityProviderStrategyDetails[] | null;
Cluster?: string | null;
DeploymentConfiguration?: AwsEcsServiceDeploymentConfigurationDetails | null;
DeploymentController?: AwsEcsServiceDeploymentControllerDetails | null;
DesiredCount?: number | null;
EnableEcsManagedTags?: boolean | null;
EnableExecuteCommand?: boolean | null;
HealthCheckGracePeriodSeconds?: number | null;
LaunchType?: string | null;
LoadBalancers?: AwsEcsServiceLoadBalancersDetails[] | null;
Name?: string | null;
NetworkConfiguration?: AwsEcsServiceNetworkConfigurationDetails | null;
PlacementConstraints?: AwsEcsServicePlacementConstraintsDetails[] | null;
PlacementStrategies?: AwsEcsServicePlacementStrategiesDetails[] | null;
PlatformVersion?: string | null;
PropagateTags?: string | null;
Role?: string | null;
SchedulingStrategy?: string | null;
ServiceArn?: string | null;
ServiceName?: string | null;
ServiceRegistries?: AwsEcsServiceServiceRegistriesDetails[] | null;
TaskDefinition?: string | null;
}

§Properties

§
CapacityProviderStrategy?: AwsEcsServiceCapacityProviderStrategyDetails[] | null
[src]

The capacity provider strategy that the service uses.

§
Cluster?: string | null
[src]

The ARN of the cluster that hosts the service.

§
DeploymentConfiguration?: AwsEcsServiceDeploymentConfigurationDetails | null
[src]

Deployment parameters for the service. Includes the number of tasks that run and the order in which to start and stop tasks.

§
DeploymentController?: AwsEcsServiceDeploymentControllerDetails | null
[src]

Contains the deployment controller type that the service uses.

§
DesiredCount?: number | null
[src]

The number of instantiations of the task definition to run on the service.

§
EnableEcsManagedTags?: boolean | null
[src]

Whether to enable Amazon ECS managed tags for the tasks in the service.

§
EnableExecuteCommand?: boolean | null
[src]

Whether the execute command functionality is enabled for the service.

§
HealthCheckGracePeriodSeconds?: number | null
[src]

After a task starts, the amount of time in seconds that the Amazon ECS service scheduler ignores unhealthy Elastic Load Balancing target health checks.

§
LaunchType?: string | null
[src]

The launch type that the service uses.

Valid values: EC2 | FARGATE | EXTERNAL

§

Information about the load balancers that the service uses.

§
Name?: string | null
[src]

The name of the service.

§
NetworkConfiguration?: AwsEcsServiceNetworkConfigurationDetails | null
[src]

For tasks that use the awsvpc networking mode, the VPC subnet and security group configuration.

§
PlacementConstraints?: AwsEcsServicePlacementConstraintsDetails[] | null
[src]

The placement constraints for the tasks in the service.

§
PlacementStrategies?: AwsEcsServicePlacementStrategiesDetails[] | null
[src]

Information about how tasks for the service are placed.

§
PlatformVersion?: string | null
[src]

The platform version on which to run the service. Only specified for tasks that are hosted on Fargate. If a platform version is not specified, the LATEST platform version is used by default.

§
PropagateTags?: string | null
[src]

Indicates whether to propagate the tags from the task definition to the task or from the service to the task. If no value is provided, then tags are not propagated.

Valid values: TASK_DEFINITION | SERVICE

§
Role?: string | null
[src]

The ARN of the IAM role that is associated with the service. The role allows the Amazon ECS container agent to register container instances with an Elastic Load Balancing load balancer.

§
SchedulingStrategy?: string | null
[src]

The scheduling strategy to use for the service.

The REPLICA scheduling strategy places and maintains the desired number of tasks across the cluster. By default, the service scheduler spreads tasks across Availability Zones. Task placement strategies and constraints are used to customize task placement decisions.

The DAEMON scheduling strategy deploys exactly one task on each active container instance that meets all of the task placement constraints that are specified in the cluster. The service scheduler also evaluates the task placement constraints for running tasks and stops tasks that do not meet the placement constraints.

Valid values: REPLICA | DAEMON

§
ServiceArn?: string | null
[src]

The ARN of the service.

§
ServiceName?: string | null
[src]

The name of the service.

The name can contain up to 255 characters. It can use letters, numbers, underscores, and hyphens.

§
ServiceRegistries?: AwsEcsServiceServiceRegistriesDetails[] | null
[src]

Information about the service discovery registries to assign to the service.

§
TaskDefinition?: string | null
[src]

The task definition to use for tasks in the service.