@Stability(value=Stable)
public static interface CfnEndpointConfig.DataCaptureConfigProperty
extends software.amazon.jsii.JsiiSerializable
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sagemaker.*;
DataCaptureConfigProperty dataCaptureConfigProperty = DataCaptureConfigProperty.builder()
.captureOptions(List.of(CaptureOptionProperty.builder()
.captureMode("captureMode")
.build()))
.destinationS3Uri("destinationS3Uri")
.initialSamplingPercentage(123)
// the properties below are optional
.captureContentTypeHeader(CaptureContentTypeHeaderProperty.builder()
.csvContentTypes(List.of("csvContentTypes"))
.jsonContentTypes(List.of("jsonContentTypes"))
.build())
.enableCapture(false)
.kmsKeyId("kmsKeyId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEndpointConfig.DataCaptureConfigProperty.Builder
A builder for
CfnEndpointConfig.DataCaptureConfigProperty |
static class |
CfnEndpointConfig.DataCaptureConfigProperty.Jsii$Proxy
An implementation for
CfnEndpointConfig.DataCaptureConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEndpointConfig.DataCaptureConfigProperty.Builder |
builder() |
default Object |
getCaptureContentTypeHeader()
`CfnEndpointConfig.DataCaptureConfigProperty.CaptureContentTypeHeader`.
|
Object |
getCaptureOptions()
`CfnEndpointConfig.DataCaptureConfigProperty.CaptureOptions`.
|
String |
getDestinationS3Uri()
`CfnEndpointConfig.DataCaptureConfigProperty.DestinationS3Uri`.
|
default Object |
getEnableCapture()
`CfnEndpointConfig.DataCaptureConfigProperty.EnableCapture`.
|
Number |
getInitialSamplingPercentage()
`CfnEndpointConfig.DataCaptureConfigProperty.InitialSamplingPercentage`.
|
default String |
getKmsKeyId()
`CfnEndpointConfig.DataCaptureConfigProperty.KmsKeyId`.
|
@Stability(value=Stable) @Nullable default Object getCaptureContentTypeHeader()
@Stability(value=Stable) @NotNull Object getCaptureOptions()
@Stability(value=Stable) @NotNull String getDestinationS3Uri()
@Stability(value=Stable) @Nullable default Object getEnableCapture()
@Stability(value=Stable) @NotNull Number getInitialSamplingPercentage()
@Stability(value=Stable) @Nullable default String getKmsKeyId()
@Stability(value=Stable) static CfnEndpointConfig.DataCaptureConfigProperty.Builder builder()
Copyright © 2021. All rights reserved.