interface CfnArtifactMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnArtifactMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnArtifactMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnArtifactMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnArtifactMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnArtifactMixinProps |
Properties for CfnArtifactPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-artifact.html
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 cfnArtifactMixinProps: sagemaker.CfnArtifactMixinProps = {
artifactName: 'artifactName',
artifactType: 'artifactType',
metadataProperties: {
commitId: 'commitId',
generatedBy: 'generatedBy',
projectId: 'projectId',
repository: 'repository',
},
properties: {
propertiesKey: 'properties',
},
source: {
sourceTypes: [{
sourceIdType: 'sourceIdType',
value: 'value',
}],
sourceUri: 'sourceUri',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| artifact | string | The name of the artifact. |
| artifact | string | The artifact type. |
| metadata | IResolvable | Metadata | |
| properties? | IResolvable | { [string]: string } | A list of properties to add to the artifact. |
| source? | IResolvable | Artifact | |
| tags? | Cfn[] | A list of tags to apply to the artifact. |
artifactName?
Type:
string
(optional)
The name of the artifact.
Must be unique to your account in an AWS Region.
artifactType?
Type:
string
(optional)
The artifact type.
metadataProperties?
Type:
IResolvable | Metadata
(optional)
properties?
Type:
IResolvable | { [string]: string }
(optional)
A list of properties to add to the artifact.
source?
Type:
IResolvable | Artifact
(optional)
tags?
Type:
Cfn[]
(optional)
A list of tags to apply to the artifact.

.NET
Go
Java
Python
TypeScript