Interface AWSAPICallViaCloudTrail.RequestParameters
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AWSAPICallViaCloudTrail.RequestParameters.Jsii$Proxy
- Enclosing class:
AWSAPICallViaCloudTrail
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.elasticloadbalancing.events.*;
RequestParameters requestParameters = RequestParameters.builder()
.healthCheck(HealthCheck1.builder()
.healthyThreshold(List.of("healthyThreshold"))
.interval(List.of("interval"))
.target(List.of("target"))
.timeout(List.of("timeout"))
.unhealthyThreshold(List.of("unhealthyThreshold"))
.build())
.instances(List.of(ResponseElementsItem.builder()
.instanceId(List.of("instanceId"))
.build()))
.listeners(List.of(RequestParametersItem.builder()
.instancePort(List.of("instancePort"))
.loadBalancerPort(List.of("loadBalancerPort"))
.protocol(List.of("protocol"))
.build()))
.loadBalancerName(List.of("loadBalancerName"))
.subnets(List.of("subnets"))
.targetGroupArn(List.of("targetGroupArn"))
.targets(List.of(RequestParametersItem1.builder()
.id(List.of("id"))
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAWSAPICallViaCloudTrail.RequestParametersstatic final classAn implementation forAWSAPICallViaCloudTrail.RequestParameters -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) healthCheck property.(experimental) instances property.(experimental) listeners property.(experimental) loadBalancerName property.(experimental) subnets property.(experimental) targetGroupArn property.(experimental) targets property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHealthCheck
(experimental) healthCheck property.Specify an array of string values to match this event if the actual value of healthCheck is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getInstances
@Stability(Experimental) @Nullable default List<AWSAPICallViaCloudTrail.ResponseElementsItem> getInstances()(experimental) instances property.Specify an array of string values to match this event if the actual value of instances is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getListeners
@Stability(Experimental) @Nullable default List<AWSAPICallViaCloudTrail.RequestParametersItem> getListeners()(experimental) listeners property.Specify an array of string values to match this event if the actual value of listeners is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getLoadBalancerName
(experimental) loadBalancerName property.Specify an array of string values to match this event if the actual value of loadBalancerName is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getSubnets
(experimental) subnets property.Specify an array of string values to match this event if the actual value of subnets is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getTargetGroupArn
(experimental) targetGroupArn property.Specify an array of string values to match this event if the actual value of targetGroupArn is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getTargets
@Stability(Experimental) @Nullable default List<AWSAPICallViaCloudTrail.RequestParametersItem1> getTargets()(experimental) targets property.Specify an array of string values to match this event if the actual value of targets is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-