Interface CfnProject.TemplateProviderDetailProperty

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

@Stability(Stable) public static interface CfnProject.TemplateProviderDetailProperty extends software.amazon.jsii.JsiiSerializable
Details about a template provider configuration and associated provisioning information.

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.*;
 TemplateProviderDetailProperty templateProviderDetailProperty = TemplateProviderDetailProperty.builder()
         .cfnTemplateProviderDetail(CfnTemplateProviderDetailProperty.builder()
                 .templateName("templateName")
                 .templateUrl("templateUrl")
                 // the properties below are optional
                 .parameters(List.of(CfnStackParameterProperty.builder()
                         .key("key")
                         .value("value")
                         .build()))
                 .roleArn("roleArn")
                 .build())
         .build();
 

See Also: