CfnArtifactMixinProps
- class aws_cdk.cfn_property_mixins.aws_sagemaker.CfnArtifactMixinProps(*, artifact_name=None, artifact_type=None, metadata_properties=None, properties=None, source=None, tags=None)
Bases:
objectProperties for CfnArtifactPropsMixin.
- Parameters:
artifact_name (
Optional[str]) – The name of the artifact. Must be unique to your account in an AWS Region.artifact_type (
Optional[str]) – The artifact type.metadata_properties (
Union[IResolvable,MetadataPropertiesProperty,Dict[str,Any],None])properties (
Union[IResolvable,Mapping[str,str],None]) – A list of properties to add to the artifact.source (
Union[IResolvable,ArtifactSourceProperty,Dict[str,Any],None])tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A list of tags to apply to the artifact.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-artifact.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_sagemaker as sagemaker cfn_artifact_mixin_props = sagemaker.CfnArtifactMixinProps( artifact_name="artifactName", artifact_type="artifactType", metadata_properties=sagemaker.CfnArtifactPropsMixin.MetadataPropertiesProperty( commit_id="commitId", generated_by="generatedBy", project_id="projectId", repository="repository" ), properties={ "properties_key": "properties" }, source=sagemaker.CfnArtifactPropsMixin.ArtifactSourceProperty( source_types=[sagemaker.CfnArtifactPropsMixin.ArtifactSourceTypeProperty( source_id_type="sourceIdType", value="value" )], source_uri="sourceUri" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- artifact_name
The name of the artifact.
Must be unique to your account in an AWS Region.
- artifact_type
The artifact type.
- metadata_properties
-
- Type:
see
- properties
A list of properties to add to the artifact.
- source
-
- Type:
see
- tags
A list of tags to apply to the artifact.