Interface CfnModel.ModelAccessConfigProperty

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

@Stability(Stable) public static interface CfnModel.ModelAccessConfigProperty extends software.amazon.jsii.JsiiSerializable
The access configuration file to control access to the ML model.

You can explicitly accept the model end-user license agreement (EULA) within the ModelAccessConfig .

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.*;
 ModelAccessConfigProperty modelAccessConfigProperty = ModelAccessConfigProperty.builder()
         .acceptEula(false)
         .build();
 

See Also: