Interface CfnExpressGatewayService.IngressPathArnsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExpressGatewayService.IngressPathArnsProperty.Jsii$Proxy
- Enclosing class:
CfnExpressGatewayService
@Stability(Stable)
public static interface CfnExpressGatewayService.IngressPathArnsProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
IngressPathArnsProperty ingressPathArnsProperty = IngressPathArnsProperty.builder()
.certificateArn("certificateArn")
.listenerArn("listenerArn")
.listenerRuleArn("listenerRuleArn")
.loadBalancerArn("loadBalancerArn")
.loadBalancerSecurityGroups(List.of("loadBalancerSecurityGroups"))
.targetGroupArns(List.of("targetGroupArns"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExpressGatewayService.IngressPathArnsPropertystatic final classAn implementation forCfnExpressGatewayService.IngressPathArnsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Certificate ARN associated with the express service.default StringThe ARN of the Load Balancer listener associated with the express service.default StringThe ARN of the Load Balancer listener rule associated with the express service.default StringThe ARN of the Load Balancer associated with the express service.The list of Load Balancer Security Group ARNs associated with the express service.The list of Target Group ARNs associated with the express service.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateArn
The Certificate ARN associated with the express service.- See Also:
-
getListenerArn
The ARN of the Load Balancer listener associated with the express service.- See Also:
-
getListenerRuleArn
The ARN of the Load Balancer listener rule associated with the express service.- See Also:
-
getLoadBalancerArn
The ARN of the Load Balancer associated with the express service.- See Also:
-
getLoadBalancerSecurityGroups
The list of Load Balancer Security Group ARNs associated with the express service.- See Also:
-
getTargetGroupArns
The list of Target Group ARNs associated with the express service.- See Also:
-
builder
-