Interface ServiceConfiguration.Builder

All Superinterfaces:
Buildable, CopyableBuilder<ServiceConfiguration.Builder,ServiceConfiguration>, SdkBuilder<ServiceConfiguration.Builder,ServiceConfiguration>, SdkPojo
Enclosing class:
ServiceConfiguration

public static interface ServiceConfiguration.Builder extends SdkPojo, CopyableBuilder<ServiceConfiguration.Builder,ServiceConfiguration>
  • Method Details

    • memory

      The amount of memory used by the tasks in the Amazon ECS service.

      Parameters:
      memory - The amount of memory used by the tasks in the Amazon ECS service.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • cpu

      The number of CPU units used by the tasks in the Amazon ECS service.

      Parameters:
      cpu - The number of CPU units used by the tasks in the Amazon ECS service.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • containerConfigurations

      ServiceConfiguration.Builder containerConfigurations(Collection<ContainerConfiguration> containerConfigurations)

      The container configurations within a task of an Amazon ECS service.

      Parameters:
      containerConfigurations - The container configurations within a task of an Amazon ECS service.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • containerConfigurations

      ServiceConfiguration.Builder containerConfigurations(ContainerConfiguration... containerConfigurations)

      The container configurations within a task of an Amazon ECS service.

      Parameters:
      containerConfigurations - The container configurations within a task of an Amazon ECS service.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • containerConfigurations

      ServiceConfiguration.Builder containerConfigurations(Consumer<ContainerConfiguration.Builder>... containerConfigurations)

      The container configurations within a task of an Amazon ECS service.

      This is a convenience method that creates an instance of the ContainerConfiguration.Builder avoiding the need to create one manually via ContainerConfiguration.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to containerConfigurations(List<ContainerConfiguration>).

      Parameters:
      containerConfigurations - a consumer that will call methods on ContainerConfiguration.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • autoScalingConfiguration

      ServiceConfiguration.Builder autoScalingConfiguration(String autoScalingConfiguration)

      Describes the Auto Scaling configuration methods for an Amazon ECS service. This affects the generated recommendations. For example, if Auto Scaling is configured on a service’s CPU, then Compute Optimizer doesn’t generate CPU size recommendations.

      The Auto Scaling configuration methods include:

      • TARGET_TRACKING_SCALING_CPU — If the Amazon ECS service is configured to use target scaling on CPU, Compute Optimizer doesn't generate CPU recommendations.

      • TARGET_TRACKING_SCALING_MEMORY — If the Amazon ECS service is configured to use target scaling on memory, Compute Optimizer doesn't generate memory recommendations.

      For more information about step scaling and target scaling, see Step scaling policies for Application Auto Scaling and Target tracking scaling policies for Application Auto Scaling in the Application Auto Scaling User Guide.

      Parameters:
      autoScalingConfiguration - Describes the Auto Scaling configuration methods for an Amazon ECS service. This affects the generated recommendations. For example, if Auto Scaling is configured on a service’s CPU, then Compute Optimizer doesn’t generate CPU size recommendations.

      The Auto Scaling configuration methods include:

      • TARGET_TRACKING_SCALING_CPU — If the Amazon ECS service is configured to use target scaling on CPU, Compute Optimizer doesn't generate CPU recommendations.

      • TARGET_TRACKING_SCALING_MEMORY — If the Amazon ECS service is configured to use target scaling on memory, Compute Optimizer doesn't generate memory recommendations.

      For more information about step scaling and target scaling, see Step scaling policies for Application Auto Scaling and Target tracking scaling policies for Application Auto Scaling in the Application Auto Scaling User Guide.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • autoScalingConfiguration

      ServiceConfiguration.Builder autoScalingConfiguration(AutoScalingConfiguration autoScalingConfiguration)

      Describes the Auto Scaling configuration methods for an Amazon ECS service. This affects the generated recommendations. For example, if Auto Scaling is configured on a service’s CPU, then Compute Optimizer doesn’t generate CPU size recommendations.

      The Auto Scaling configuration methods include:

      • TARGET_TRACKING_SCALING_CPU — If the Amazon ECS service is configured to use target scaling on CPU, Compute Optimizer doesn't generate CPU recommendations.

      • TARGET_TRACKING_SCALING_MEMORY — If the Amazon ECS service is configured to use target scaling on memory, Compute Optimizer doesn't generate memory recommendations.

      For more information about step scaling and target scaling, see Step scaling policies for Application Auto Scaling and Target tracking scaling policies for Application Auto Scaling in the Application Auto Scaling User Guide.

      Parameters:
      autoScalingConfiguration - Describes the Auto Scaling configuration methods for an Amazon ECS service. This affects the generated recommendations. For example, if Auto Scaling is configured on a service’s CPU, then Compute Optimizer doesn’t generate CPU size recommendations.

      The Auto Scaling configuration methods include:

      • TARGET_TRACKING_SCALING_CPU — If the Amazon ECS service is configured to use target scaling on CPU, Compute Optimizer doesn't generate CPU recommendations.

      • TARGET_TRACKING_SCALING_MEMORY — If the Amazon ECS service is configured to use target scaling on memory, Compute Optimizer doesn't generate memory recommendations.

      For more information about step scaling and target scaling, see Step scaling policies for Application Auto Scaling and Target tracking scaling policies for Application Auto Scaling in the Application Auto Scaling User Guide.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • taskDefinitionArn

      ServiceConfiguration.Builder taskDefinitionArn(String taskDefinitionArn)

      The task definition ARN used by the tasks in the Amazon ECS service.

      Parameters:
      taskDefinitionArn - The task definition ARN used by the tasks in the Amazon ECS service.
      Returns:
      Returns a reference to this object so that method calls can be chained together.