Interface ModelEvents.AWSAPICallViaCloudTrail.TransformInput

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ModelEvents.AWSAPICallViaCloudTrail.TransformInput.Jsii$Proxy
Enclosing class:
ModelEvents.AWSAPICallViaCloudTrail

@Stability(Experimental) public static interface ModelEvents.AWSAPICallViaCloudTrail.TransformInput extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for TransformInput.

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.sagemaker.events.*;
 TransformInput transformInput = TransformInput.builder()
         .compressionType(List.of("compressionType"))
         .contentType(List.of("contentType"))
         .dataSource(DataSource.builder()
                 .s3DataSource(S3DataSource.builder()
                         .s3DataType(List.of("s3DataType"))
                         .s3Uri(List.of("s3Uri"))
                         .build())
                 .build())
         .build();
 
  • Method Details

    • getCompressionType

      @Stability(Experimental) @Nullable default List<String> getCompressionType()
      (experimental) compressionType property.

      Specify an array of string values to match this event if the actual value of compressionType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getContentType

      @Stability(Experimental) @Nullable default List<String> getContentType()
      (experimental) contentType property.

      Specify an array of string values to match this event if the actual value of contentType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getDataSource

      @Stability(Experimental) @Nullable default ModelEvents.AWSAPICallViaCloudTrail.DataSource getDataSource()
      (experimental) dataSource property.

      Specify an array of string values to match this event if the actual value of dataSource is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

      @Stability(Experimental) static ModelEvents.AWSAPICallViaCloudTrail.TransformInput.Builder builder()
      Returns:
      a ModelEvents.AWSAPICallViaCloudTrail.TransformInput.Builder of ModelEvents.AWSAPICallViaCloudTrail.TransformInput