Interface AWSAPICallViaCloudTrail.ResponseElements
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AWSAPICallViaCloudTrail.ResponseElements.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.*;
ResponseElements responseElements = ResponseElements.builder()
.dNsName(List.of("dNsName"))
.healthCheck(HealthCheck.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()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAWSAPICallViaCloudTrail.ResponseElementsstatic final classAn implementation forAWSAPICallViaCloudTrail.ResponseElements -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) dNSName property.(experimental) healthCheck property.(experimental) instances property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDNsName
(experimental) dNSName property.Specify an array of string values to match this event if the actual value of dNSName 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
-
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
-
builder
-