Interface CfnPartnerApp.PartnerAppConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPartnerApp.PartnerAppConfigProperty.Jsii$Proxy
- Enclosing class:
CfnPartnerApp
@Stability(Stable)
public static interface CfnPartnerApp.PartnerAppConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration settings for the SageMaker Partner AI App.
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.*;
PartnerAppConfigProperty partnerAppConfigProperty = PartnerAppConfigProperty.builder()
.adminUsers(List.of("adminUsers"))
.arguments(Map.of(
"argumentsKey", "arguments"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPartnerApp.PartnerAppConfigPropertystatic final classAn implementation forCfnPartnerApp.PartnerAppConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdminUsers
The list of users that are given admin access to the SageMaker Partner AI App.- See Also:
-
getArguments
This is a map of required inputs for a SageMaker Partner AI App.Based on the application type, the map is populated with a key and value pair that is specific to the user and application.
- See Also:
-
builder
-