Interface CfnInferenceScheduler.DataOutputConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInferenceScheduler.DataOutputConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnInferenceScheduler
@Stability(Stable)
public static interface CfnInferenceScheduler.DataOutputConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.lookoutequipment.*;
DataOutputConfigurationProperty dataOutputConfigurationProperty = DataOutputConfigurationProperty.builder()
.s3OutputConfiguration(S3OutputConfigurationProperty.builder()
.bucket("bucket")
// the properties below are optional
.prefix("prefix")
.build())
// the properties below are optional
.kmsKeyId("kmsKeyId")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInferenceScheduler.DataOutputConfigurationPropertystatic final classAn implementation forCfnInferenceScheduler.DataOutputConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3OutputConfiguration
CfnInferenceScheduler.DataOutputConfigurationProperty.S3OutputConfiguration. -
getKmsKeyId
CfnInferenceScheduler.DataOutputConfigurationProperty.KmsKeyId. -
builder
-