Interface BucketEvents.AWSAPICallViaCloudTrail.TlsDetails
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BucketEvents.AWSAPICallViaCloudTrail.TlsDetails.Jsii$Proxy
- Enclosing class:
BucketEvents.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.s3.events.*;
TlsDetails tlsDetails = TlsDetails.builder()
.cipherSuite(List.of("cipherSuite"))
.clientProvidedHostHeader(List.of("clientProvidedHostHeader"))
.tlsVersion(List.of("tlsVersion"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBucketEvents.AWSAPICallViaCloudTrail.TlsDetailsstatic final classAn implementation forBucketEvents.AWSAPICallViaCloudTrail.TlsDetails -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) cipherSuite property.(experimental) clientProvidedHostHeader property.(experimental) tlsVersion property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCipherSuite
(experimental) cipherSuite property.Specify an array of string values to match this event if the actual value of cipherSuite 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
-
getClientProvidedHostHeader
(experimental) clientProvidedHostHeader property.Specify an array of string values to match this event if the actual value of clientProvidedHostHeader 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
-
getTlsVersion
(experimental) tlsVersion property.Specify an array of string values to match this event if the actual value of tlsVersion 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
-