Interface CfnInferenceSchedulerPropsMixin.DataOutputConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInferenceSchedulerPropsMixin.DataOutputConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnInferenceSchedulerPropsMixin
@Stability(Stable)
public static interface CfnInferenceSchedulerPropsMixin.DataOutputConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies configuration information for the output results for the inference scheduler, including the S3 location for the output.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.lookoutequipment.*;
DataOutputConfigurationProperty dataOutputConfigurationProperty = DataOutputConfigurationProperty.builder()
.kmsKeyId("kmsKeyId")
.s3OutputConfiguration(S3OutputConfigurationProperty.builder()
.bucket("bucket")
.prefix("prefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnInferenceSchedulerPropsMixin.DataOutputConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsKeyId
The ID number for the AWS KMS key used to encrypt the inference output.- See Also:
-
getS3OutputConfiguration
Specifies configuration information for the output results from the inference, including output S3 location.Returns union: either
IResolvableorCfnInferenceSchedulerPropsMixin.S3OutputConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnInferenceSchedulerPropsMixin.DataOutputConfigurationProperty.Builder builder()
-