Interface CfnFeatureGroup.S3StorageConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFeatureGroup.S3StorageConfigProperty.Jsii$Proxy
Enclosing class:
CfnFeatureGroup

@Stability(Stable) public static interface CfnFeatureGroup.S3StorageConfigProperty extends software.amazon.jsii.JsiiSerializable
The Amazon Simple Storage (Amazon S3) location and and security configuration for OfflineStore .

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.sagemaker.*;
 S3StorageConfigProperty s3StorageConfigProperty = S3StorageConfigProperty.builder()
         .s3Uri("s3Uri")
         // the properties below are optional
         .kmsKeyId("kmsKeyId")
         .build();
 
  • Method Details