interface CfnTemplateProviderDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnProjectPropsMixin.CfnTemplateProviderDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnProjectPropsMixin_CfnTemplateProviderDetailProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnProjectPropsMixin.CfnTemplateProviderDetailProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnProjectPropsMixin.CfnTemplateProviderDetailProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnProjectPropsMixin » CfnTemplateProviderDetailProperty |
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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const cfnTemplateProviderDetailProperty: sagemaker.CfnProjectPropsMixin.CfnTemplateProviderDetailProperty = {
parameters: [{
key: 'key',
value: 'value',
}],
roleArn: 'roleArn',
templateName: 'templateName',
templateUrl: 'templateUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameters? | IResolvable | (IResolvable | Cfn)[] | An array of CloudFormation stack parameters. |
| role | string | The IAM role used by CloudFormation to create the stack. |
| template | string | The unique identifier of the template within the project. |
| template | string | The Amazon S3 URL of the CloudFormation template. |
parameters?
Type:
IResolvable | (IResolvable | Cfn)[]
(optional)
An array of CloudFormation stack parameters.
roleArn?
Type:
string
(optional)
The IAM role used by CloudFormation to create the stack.
templateName?
Type:
string
(optional)
The unique identifier of the template within the project.
templateUrl?
Type:
string
(optional)
The Amazon S3 URL of the CloudFormation template.

.NET
Go
Java
Python
TypeScript