Interface AWSAPICallViaCloudTrail.TransformInput
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AWSAPICallViaCloudTrail.TransformInput.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.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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAWSAPICallViaCloudTrail.TransformInputstatic final classAn implementation forAWSAPICallViaCloudTrail.TransformInput -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) compressionType property.(experimental) contentType property.(experimental) dataSource property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-