Interface CfnProjectPropsMixin.TemplateProviderDetailProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectPropsMixin.TemplateProviderDetailProperty.Jsii$Proxy
- Enclosing class:
CfnProjectPropsMixin
@Stability(Stable)
public static interface CfnProjectPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
TemplateProviderDetailProperty templateProviderDetailProperty = TemplateProviderDetailProperty.builder()
.cfnTemplateProviderDetail(CfnTemplateProviderDetailProperty.builder()
.parameters(List.of(CfnStackParameterProperty.builder()
.key("key")
.value("value")
.build()))
.roleArn("roleArn")
.templateName("templateName")
.templateUrl("templateUrl")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProjectPropsMixin.TemplateProviderDetailPropertystatic final classAn implementation forCfnProjectPropsMixin.TemplateProviderDetailProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCfnTemplateProviderDetail
Details about a CloudFormation template provider configuration and associated provisioning information.Returns union: either
IResolvableorCfnProjectPropsMixin.CfnTemplateProviderDetailProperty- See Also:
-
builder
-