Interface CfnPartnerAppProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPartnerAppProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-06-20T13:49:25.180Z") @Stability(Stable) public interface CfnPartnerAppProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnPartnerApp.

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.*;
 CfnPartnerAppProps cfnPartnerAppProps = CfnPartnerAppProps.builder()
         .authType("authType")
         .executionRoleArn("executionRoleArn")
         .name("name")
         .tier("tier")
         .type("type")
         // the properties below are optional
         .applicationConfig(PartnerAppConfigProperty.builder()
                 .adminUsers(List.of("adminUsers"))
                 .arguments(Map.of(
                         "argumentsKey", "arguments"))
                 .build())
         .clientToken("clientToken")
         .enableIamSessionBasedIdentity(false)
         .kmsKeyId("kmsKeyId")
         .maintenanceConfig(PartnerAppMaintenanceConfigProperty.builder()
                 .maintenanceWindowStart("maintenanceWindowStart")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: