Class CfnPrimaryTaskSet

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:47.072Z") @Stability(Stable) public class CfnPrimaryTaskSet extends CfnResource implements IInspectable
A CloudFormation AWS::ECS::PrimaryTaskSet.

Modifies which task set in a service is the primary task set. Any parameters that are updated on the primary task set in a service will transition to the service. This is used when a service uses the EXTERNAL deployment controller type. For more information, see Amazon ECS Deployment Types in the Amazon Elastic Container Service Developer Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ecs.*;
 CfnPrimaryTaskSet cfnPrimaryTaskSet = CfnPrimaryTaskSet.Builder.create(this, "MyCfnPrimaryTaskSet")
         .cluster("cluster")
         .service("service")
         .taskSetId("taskSetId")
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnPrimaryTaskSet

      protected CfnPrimaryTaskSet(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnPrimaryTaskSet

      protected CfnPrimaryTaskSet(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnPrimaryTaskSet

      @Stability(Stable) public CfnPrimaryTaskSet(@NotNull Construct scope, @NotNull String id, @NotNull CfnPrimaryTaskSetProps props)
      Create a new AWS::ECS::PrimaryTaskSet.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getCluster

      @Stability(Stable) @NotNull public String getCluster()
      The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task set exists in.
    • setCluster

      @Stability(Stable) public void setCluster(@NotNull String value)
      The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task set exists in.
    • getService

      @Stability(Stable) @NotNull public String getService()
      The short name or full Amazon Resource Name (ARN) of the service that the task set exists in.
    • setService

      @Stability(Stable) public void setService(@NotNull String value)
      The short name or full Amazon Resource Name (ARN) of the service that the task set exists in.
    • getTaskSetId

      @Stability(Stable) @NotNull public String getTaskSetId()
      The short name or full Amazon Resource Name (ARN) of the task set to set as the primary task set in the deployment.
    • setTaskSetId

      @Stability(Stable) public void setTaskSetId(@NotNull String value)
      The short name or full Amazon Resource Name (ARN) of the task set to set as the primary task set in the deployment.