package awsecspatterns import ( _init_ "github.com/aws/aws-cdk-go/awscdk/v2/jsii" _jsii_ "github.com/aws/jsii-runtime-go/runtime" "github.com/aws/aws-cdk-go/awscdk/v2/awsec2" "github.com/aws/aws-cdk-go/awscdk/v2/awsecs" "github.com/aws/aws-cdk-go/awscdk/v2/awsecspatterns/internal" "github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2" "github.com/aws/constructs-go/constructs/v10" ) // The base class for NetworkMultipleTargetGroupsEc2Service and NetworkMultipleTargetGroupsFargateService classes. type NetworkMultipleTargetGroupsServiceBase interface { constructs.Construct // The cluster that hosts the service. Cluster() awsecs.ICluster // 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. InternalDesiredCount() *float64 // The listener for the service. // Deprecated: - Use `listeners` instead. Listener() awselasticloadbalancingv2.NetworkListener // The listeners of the service. Listeners() *[]awselasticloadbalancingv2.NetworkListener // The Network Load Balancer for the service. // Deprecated: - Use `loadBalancers` instead. LoadBalancer() awselasticloadbalancingv2.NetworkLoadBalancer // The load balancers of the service. LoadBalancers() *[]awselasticloadbalancingv2.NetworkLoadBalancer LogDriver() awsecs.LogDriver SetLogDriver(val awsecs.LogDriver) // The tree node. Node() constructs.Node // The target groups of the service. TargetGroups() *[]awselasticloadbalancingv2.NetworkTargetGroup AddPortMappingForTargets(container awsecs.ContainerDefinition, targets *[]*NetworkTargetProps) CreateAWSLogDriver(prefix *string) awsecs.AwsLogDriver FindListener(name *string) awselasticloadbalancingv2.NetworkListener // Returns the default cluster. GetDefaultCluster(scope constructs.Construct, vpc awsec2.IVpc) awsecs.Cluster RegisterECSTargets(service awsecs.BaseService, container awsecs.ContainerDefinition, targets *[]*NetworkTargetProps) awselasticloadbalancingv2.NetworkTargetGroup // Returns a string representation of this construct. ToString() *string } // The jsii proxy struct for NetworkMultipleTargetGroupsServiceBase type jsiiProxy_NetworkMultipleTargetGroupsServiceBase struct { internal.Type__constructsConstruct } func (j *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) Cluster() awsecs.ICluster { var returns awsecs.ICluster _jsii_.Get( j, "cluster", &returns, ) return returns } func (j *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) InternalDesiredCount() *float64 { var returns *float64 _jsii_.Get( j, "internalDesiredCount", &returns, ) return returns } func (j *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) Listener() awselasticloadbalancingv2.NetworkListener { var returns awselasticloadbalancingv2.NetworkListener _jsii_.Get( j, "listener", &returns, ) return returns } func (j *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) Listeners() *[]awselasticloadbalancingv2.NetworkListener { var returns *[]awselasticloadbalancingv2.NetworkListener _jsii_.Get( j, "listeners", &returns, ) return returns } func (j *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) LoadBalancer() awselasticloadbalancingv2.NetworkLoadBalancer { var returns awselasticloadbalancingv2.NetworkLoadBalancer _jsii_.Get( j, "loadBalancer", &returns, ) return returns } func (j *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) LoadBalancers() *[]awselasticloadbalancingv2.NetworkLoadBalancer { var returns *[]awselasticloadbalancingv2.NetworkLoadBalancer _jsii_.Get( j, "loadBalancers", &returns, ) return returns } func (j *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) LogDriver() awsecs.LogDriver { var returns awsecs.LogDriver _jsii_.Get( j, "logDriver", &returns, ) return returns } func (j *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) Node() constructs.Node { var returns constructs.Node _jsii_.Get( j, "node", &returns, ) return returns } func (j *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) TargetGroups() *[]awselasticloadbalancingv2.NetworkTargetGroup { var returns *[]awselasticloadbalancingv2.NetworkTargetGroup _jsii_.Get( j, "targetGroups", &returns, ) return returns } // Constructs a new instance of the NetworkMultipleTargetGroupsServiceBase class. func NewNetworkMultipleTargetGroupsServiceBase_Override(n NetworkMultipleTargetGroupsServiceBase, scope constructs.Construct, id *string, props *NetworkMultipleTargetGroupsServiceBaseProps) { _init_.Initialize() _jsii_.Create( "aws-cdk-lib.aws_ecs_patterns.NetworkMultipleTargetGroupsServiceBase", []interface{}{scope, id, props}, n, ) } func (j *jsiiProxy_NetworkMultipleTargetGroupsServiceBase)SetLogDriver(val awsecs.LogDriver) { _jsii_.Set( j, "logDriver", val, ) } // Checks if `x` is a construct. // // Use this method instead of `instanceof` to properly detect `Construct` // instances, even when the construct library is symlinked. // // Explanation: in JavaScript, multiple copies of the `constructs` library on // disk are seen as independent, completely different libraries. As a // consequence, the class `Construct` in each copy of the `constructs` library // is seen as a different class, and an instance of one class will not test as // `instanceof` the other class. `npm install` will not create installations // like this, but users may manually symlink construct libraries together or // use a monorepo tool: in those cases, multiple copies of the `constructs` // library can be accidentally installed, and `instanceof` will behave // unpredictably. It is safest to avoid using `instanceof`, and using // this type-testing method instead. // // Returns: true if `x` is an object created from a class which extends `Construct`. func NetworkMultipleTargetGroupsServiceBase_IsConstruct(x interface{}) *bool { _init_.Initialize() if err := validateNetworkMultipleTargetGroupsServiceBase_IsConstructParameters(x); err != nil { panic(err) } var returns *bool _jsii_.StaticInvoke( "aws-cdk-lib.aws_ecs_patterns.NetworkMultipleTargetGroupsServiceBase", "isConstruct", []interface{}{x}, &returns, ) return returns } func (n *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) AddPortMappingForTargets(container awsecs.ContainerDefinition, targets *[]*NetworkTargetProps) { if err := n.validateAddPortMappingForTargetsParameters(container, targets); err != nil { panic(err) } _jsii_.InvokeVoid( n, "addPortMappingForTargets", []interface{}{container, targets}, ) } func (n *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) CreateAWSLogDriver(prefix *string) awsecs.AwsLogDriver { if err := n.validateCreateAWSLogDriverParameters(prefix); err != nil { panic(err) } var returns awsecs.AwsLogDriver _jsii_.Invoke( n, "createAWSLogDriver", []interface{}{prefix}, &returns, ) return returns } func (n *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) FindListener(name *string) awselasticloadbalancingv2.NetworkListener { var returns awselasticloadbalancingv2.NetworkListener _jsii_.Invoke( n, "findListener", []interface{}{name}, &returns, ) return returns } func (n *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) GetDefaultCluster(scope constructs.Construct, vpc awsec2.IVpc) awsecs.Cluster { if err := n.validateGetDefaultClusterParameters(scope); err != nil { panic(err) } var returns awsecs.Cluster _jsii_.Invoke( n, "getDefaultCluster", []interface{}{scope, vpc}, &returns, ) return returns } func (n *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) RegisterECSTargets(service awsecs.BaseService, container awsecs.ContainerDefinition, targets *[]*NetworkTargetProps) awselasticloadbalancingv2.NetworkTargetGroup { if err := n.validateRegisterECSTargetsParameters(service, container, targets); err != nil { panic(err) } var returns awselasticloadbalancingv2.NetworkTargetGroup _jsii_.Invoke( n, "registerECSTargets", []interface{}{service, container, targets}, &returns, ) return returns } func (n *jsiiProxy_NetworkMultipleTargetGroupsServiceBase) ToString() *string { var returns *string _jsii_.Invoke( n, "toString", nil, // no parameters &returns, ) return returns }