Class: AWSCDK::ECSPatterns::ApplicationMultipleTargetGroupsEC2Service

Inherits:
ApplicationMultipleTargetGroupsServiceBase
  • Object
show all
Defined in:
ecs_patterns/application_multiple_target_groups_ec2_service.rb

Overview

An EC2 service running on an ECS cluster fronted by an application load balancer.

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(scope, id, props = nil) ⇒ ApplicationMultipleTargetGroupsEC2Service

Constructs a new instance of the ApplicationMultipleTargetGroupsEc2Service class.

Parameters:



13
14
15
16
17
18
19
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 13

def initialize(scope, id, props = nil)
  props = props.is_a?(Hash) ? ::AWSCDK::ECSPatterns::ApplicationMultipleTargetGroupsEC2ServiceProps.new(**props.transform_keys(&:to_sym)) : props
  Jsii::Type.check_type(scope, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJjb25zdHJ1Y3RzLkNvbnN0cnVjdCJ9")), "scope")
  Jsii::Type.check_type(id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id")
  Jsii::Type.check_type(props, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWNzX3BhdHRlcm5zLkFwcGxpY2F0aW9uTXVsdGlwbGVUYXJnZXRHcm91cHNFYzJTZXJ2aWNlUHJvcHMifQ==")), "props") unless props.nil?
  Jsii::Object.instance_method(:initialize).bind(self).call(scope, id, props)
end

Class Method Details

.jsii_overridable_methodsObject



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 21

def self.jsii_overridable_methods
  {
    :node => { kind: :property, name: "node", is_optional: false },
    :cluster => { kind: :property, name: "cluster", is_optional: false },
    :listener => { kind: :property, name: "listener", is_optional: false },
    :listeners => { kind: :property, name: "listeners", is_optional: false },
    :load_balancer => { kind: :property, name: "loadBalancer", is_optional: false },
    :load_balancers => { kind: :property, name: "loadBalancers", is_optional: false },
    :target_groups => { kind: :property, name: "targetGroups", is_optional: false },
    :internal_desired_count => { kind: :property, name: "internalDesiredCount", is_optional: true },
    :log_driver => { kind: :property, name: "logDriver", is_optional: true },
    :service => { kind: :property, name: "service", is_optional: false },
    :target_group => { kind: :property, name: "targetGroup", is_optional: false },
    :task_definition => { kind: :property, name: "taskDefinition", is_optional: false },
    :to_string => { kind: :method, name: "toString", is_optional: false },
    :with => { kind: :method, name: "with", is_optional: false },
    :add_port_mapping_for_targets => { kind: :method, name: "addPortMappingForTargets", is_optional: false },
    :create_aws_log_driver => { kind: :method, name: "createAWSLogDriver", is_optional: false },
    :find_listener => { kind: :method, name: "findListener", is_optional: false },
    :get_default_cluster => { kind: :method, name: "getDefaultCluster", is_optional: false },
    :register_ecs_targets => { kind: :method, name: "registerECSTargets", is_optional: false },
  }
end

Instance Method Details

#add_port_mapping_for_targets(container, targets) ⇒ void

This method returns an undefined value.



164
165
166
167
168
169
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 164

def add_port_mapping_for_targets(container, targets)
  Jsii::Type.check_type(container, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWNzLkNvbnRhaW5lckRlZmluaXRpb24ifQ==")), "container")
  targets = targets.is_a?(Array) ? targets.map { |jsii_v0| jsii_v0.is_a?(Hash) ? ::AWSCDK::ECSPatterns::ApplicationTargetProps.new(**jsii_v0.transform_keys(&:to_sym)) : jsii_v0 } : targets
  Jsii::Type.check_type(targets, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7ImZxbiI6ImF3cy1jZGstbGliLmF3c19lY3NfcGF0dGVybnMuQXBwbGljYXRpb25UYXJnZXRQcm9wcyJ9LCJraW5kIjoiYXJyYXkifX0=")), "targets")
  jsii_call_method("addPortMappingForTargets", [container, targets])
end

#clusterAWSCDK::ECS::ICluster

The cluster that hosts the service.



55
56
57
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 55

def cluster()
  jsii_get_property("cluster")
end

#create_aws_log_driver(prefix) ⇒ AWSCDK::ECS::AWSLogDriver

Parameters:

  • prefix (String)

Returns:



173
174
175
176
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 173

def create_aws_log_driver(prefix)
  Jsii::Type.check_type(prefix, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "prefix")
  jsii_call_method("createAWSLogDriver", [prefix])
end

#find_listener(name = nil) ⇒ AWSCDK::ElasticLoadBalancingv2::ApplicationListener

Parameters:

  • name (String, nil) (defaults to: nil)

Returns:



180
181
182
183
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 180

def find_listener(name = nil)
  Jsii::Type.check_type(name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name") unless name.nil?
  jsii_call_method("findListener", [name])
end

#get_default_cluster(scope, vpc = nil) ⇒ AWSCDK::ECS::Cluster

Returns the default cluster.

Parameters:

Returns:



190
191
192
193
194
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 190

def get_default_cluster(scope, vpc = nil)
  Jsii::Type.check_type(scope, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJjb25zdHJ1Y3RzLkNvbnN0cnVjdCJ9")), "scope")
  Jsii::Type.check_type(vpc, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWMyLklWcGMifQ==")), "vpc") unless vpc.nil?
  jsii_call_method("getDefaultCluster", [scope, vpc])
end

#internal_desired_countNumeric?

The desired number of instantiations of the task definition to keep running on the service.

The default is 1 for all new services and uses the existing services desired count when updating an existing service, if one is not provided.

Returns:

  • (Numeric, nil)


102
103
104
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 102

def internal_desired_count()
  jsii_get_property("internalDesiredCount")
end

#listenerAWSCDK::ElasticLoadBalancingv2::ApplicationListener

Deprecated.
  • Use listeners instead.

The default listener for the service (first added listener).



63
64
65
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 63

def listener()
  jsii_get_property("listener")
end

#listenersArray<AWSCDK::ElasticLoadBalancingv2::ApplicationListener>

The listeners of the service.



70
71
72
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 70

def listeners()
  jsii_get_property("listeners")
end

#load_balancerAWSCDK::ElasticLoadBalancingv2::ApplicationLoadBalancer

Deprecated.
  • Use loadBalancers instead.

The default Application Load Balancer for the service (first added load balancer).



78
79
80
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 78

def load_balancer()
  jsii_get_property("loadBalancer")
end

#load_balancersArray<AWSCDK::ElasticLoadBalancingv2::ApplicationLoadBalancer>

The load balancers of the service.



85
86
87
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 85

def load_balancers()
  jsii_get_property("loadBalancers")
end

#log_driverAWSCDK::ECS::LogDriver?

Returns:



107
108
109
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 107

def log_driver()
  jsii_get_property("logDriver")
end

#log_driver=(value) ⇒ Object



111
112
113
114
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 111

def log_driver=(value)
  Jsii::Type.check_type(value, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWNzLkxvZ0RyaXZlciJ9")), "logDriver") unless value.nil?
  jsii_set_property("logDriver", value)
end

#nodeConstructs::Node

The tree node.

Returns:

  • (Constructs::Node)


48
49
50
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 48

def node()
  jsii_get_property("node")
end

#register_ecs_targets(service, container, targets) ⇒ AWSCDK::ElasticLoadBalancingv2::ApplicationTargetGroup



200
201
202
203
204
205
206
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 200

def register_ecs_targets(service, container, targets)
  Jsii::Type.check_type(service, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWNzLkJhc2VTZXJ2aWNlIn0=")), "service")
  Jsii::Type.check_type(container, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWNzLkNvbnRhaW5lckRlZmluaXRpb24ifQ==")), "container")
  targets = targets.is_a?(Array) ? targets.map { |jsii_v0| jsii_v0.is_a?(Hash) ? ::AWSCDK::ECSPatterns::ApplicationTargetProps.new(**jsii_v0.transform_keys(&:to_sym)) : jsii_v0 } : targets
  Jsii::Type.check_type(targets, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7ImZxbiI6ImF3cy1jZGstbGliLmF3c19lY3NfcGF0dGVybnMuQXBwbGljYXRpb25UYXJnZXRQcm9wcyJ9LCJraW5kIjoiYXJyYXkifX0=")), "targets")
  jsii_call_method("registerECSTargets", [service, container, targets])
end

#serviceAWSCDK::ECS::EC2Service

The EC2 service in this construct.



119
120
121
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 119

def service()
  jsii_get_property("service")
end

#target_groupAWSCDK::ElasticLoadBalancingv2::ApplicationTargetGroup

Deprecated.
  • Use targetGroups instead.

The default target group for the service.



127
128
129
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 127

def target_group()
  jsii_get_property("targetGroup")
end

#target_groupsArray<AWSCDK::ElasticLoadBalancingv2::ApplicationTargetGroup>

The target groups of the service.



92
93
94
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 92

def target_groups()
  jsii_get_property("targetGroups")
end

#task_definitionAWSCDK::ECS::EC2TaskDefinition

The EC2 Task Definition in this construct.



134
135
136
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 134

def task_definition()
  jsii_get_property("taskDefinition")
end

#to_stringString

Returns a string representation of this construct.

Returns:

  • (String)


141
142
143
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 141

def to_string()
  jsii_call_method("toString", [])
end

#with(*mixins) ⇒ Constructs::IConstruct

Applies one or more mixins to this construct.

Mixins are applied in order. The list of constructs is captured at the start of the call, so constructs added by a mixin will not be visited. Use multiple with() calls if subsequent mixins should apply to added constructs.

Parameters:

  • mixins (Array<Constructs::IMixin>)

    The mixins to apply.

Returns:

  • (Constructs::IConstruct)

    This construct for chaining



154
155
156
157
158
159
# File 'ecs_patterns/application_multiple_target_groups_ec2_service.rb', line 154

def with(*mixins)
  mixins.each_with_index do |item, index|
    Jsii::Type.check_type(item, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJjb25zdHJ1Y3RzLklNaXhpbiJ9")), "mixins[#{index}]")
  end
  jsii_call_method("with", [*mixins])
end