/AWS1/IF_SGM=>CREATEARTIFACT()¶
About CreateArtifact¶
Creates an artifact. An artifact is a lineage tracking entity that represents a URI addressable object or data. Some examples are the S3 URI of a dataset and the ECR registry path of an image. For more information, see Amazon SageMaker ML Lineage Tracking.
Method Signature¶
METHODS /AWS1/IF_SGM~CREATEARTIFACT
IMPORTING
!IV_ARTIFACTNAME TYPE /AWS1/SGMEXPERIMENTENTITYNAME OPTIONAL
!IO_SOURCE TYPE REF TO /AWS1/CL_SGMARTIFACTSOURCE OPTIONAL
!IV_ARTIFACTTYPE TYPE /AWS1/SGMSTRING256 OPTIONAL
!IT_PROPERTIES TYPE /AWS1/CL_SGMARTIFACTPRPS_W=>TT_ARTIFACTPROPERTIES OPTIONAL
!IO_METADATAPROPERTIES TYPE REF TO /AWS1/CL_SGMMETADATAPROPERTIES OPTIONAL
!IT_TAGS TYPE /AWS1/CL_SGMTAG=>TT_TAGLIST OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_sgmcreateartifactrsp
RAISING
/AWS1/CX_SGMRESOURCELIMITEXCD
/AWS1/CX_SGMCLIENTEXC
/AWS1/CX_SGMSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
io_source TYPE REF TO /AWS1/CL_SGMARTIFACTSOURCE /AWS1/CL_SGMARTIFACTSOURCE¶
The ID, ID type, and URI of the source.
iv_artifacttype TYPE /AWS1/SGMSTRING256 /AWS1/SGMSTRING256¶
The artifact type.
Optional arguments:¶
iv_artifactname TYPE /AWS1/SGMEXPERIMENTENTITYNAME /AWS1/SGMEXPERIMENTENTITYNAME¶
The name of the artifact. Must be unique to your account in an Amazon Web Services Region.
it_properties TYPE /AWS1/CL_SGMARTIFACTPRPS_W=>TT_ARTIFACTPROPERTIES TT_ARTIFACTPROPERTIES¶
A list of properties to add to the artifact.
io_metadataproperties TYPE REF TO /AWS1/CL_SGMMETADATAPROPERTIES /AWS1/CL_SGMMETADATAPROPERTIES¶
MetadataProperties
it_tags TYPE /AWS1/CL_SGMTAG=>TT_TAGLIST TT_TAGLIST¶
A list of tags to apply to the artifact.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_sgmcreateartifactrsp /AWS1/CL_SGMCREATEARTIFACTRSP¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->createartifact(
io_metadataproperties = new /aws1/cl_sgmmetadataproperties(
iv_commitid = |string|
iv_generatedby = |string|
iv_projectid = |string|
iv_repository = |string|
)
io_source = new /aws1/cl_sgmartifactsource(
it_sourcetypes = VALUE /aws1/cl_sgmartifactsourcetype=>tt_artifactsourcetypes(
(
new /aws1/cl_sgmartifactsourcetype(
iv_sourceidtype = |string|
iv_value = |string|
)
)
)
iv_sourceuri = |string|
)
it_properties = VALUE /aws1/cl_sgmartifactprps_w=>tt_artifactproperties(
(
VALUE /aws1/cl_sgmartifactprps_w=>ts_artifactproperties_maprow(
key = |string|
value = new /aws1/cl_sgmartifactprps_w( |string| )
)
)
)
it_tags = VALUE /aws1/cl_sgmtag=>tt_taglist(
(
new /aws1/cl_sgmtag(
iv_key = |string|
iv_value = |string|
)
)
)
iv_artifactname = |string|
iv_artifacttype = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_artifactarn = lo_result->get_artifactarn( ).
ENDIF.