Interface CfnProjectPropsMixin.CfnTemplateProviderDetailProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectPropsMixin.CfnTemplateProviderDetailProperty.Jsii$Proxy
- Enclosing class:
CfnProjectPropsMixin
@Stability(Stable)
public static interface CfnProjectPropsMixin.CfnTemplateProviderDetailProperty
extends software.amazon.jsii.JsiiSerializable
Details about a CloudFormation 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.*;
CfnTemplateProviderDetailProperty cfnTemplateProviderDetailProperty = CfnTemplateProviderDetailProperty.builder()
.parameters(List.of(CfnStackParameterProperty.builder()
.key("key")
.value("value")
.build()))
.roleArn("roleArn")
.templateName("templateName")
.templateUrl("templateUrl")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProjectPropsMixin.CfnTemplateProviderDetailPropertystatic final classAn implementation forCfnProjectPropsMixin.CfnTemplateProviderDetailProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectAn array of CloudFormation stack parameters.default StringThe IAM role used by CloudFormation to create the stack.default StringThe unique identifier of the template within the project.default StringThe Amazon S3 URL of the CloudFormation template.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameters
An array of CloudFormation stack parameters.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnProjectPropsMixin.CfnStackParameterProperty>- See Also:
-
getRoleArn
The IAM role used by CloudFormation to create the stack.- See Also:
-
getTemplateName
The unique identifier of the template within the project.- See Also:
-
getTemplateUrl
The Amazon S3 URL of the CloudFormation template.- See Also:
-
builder
-