AppImageConfigReference
- class aws_cdk.aws_sagemaker.AppImageConfigReference(*, app_image_config_arn, app_image_config_name)
Bases:
object
A reference to a AppImageConfig resource.
- Parameters:
app_image_config_arn (
str
) – The ARN of the AppImageConfig resource.app_image_config_name (
str
) – The AppImageConfigName of the AppImageConfig resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_sagemaker as sagemaker app_image_config_reference = sagemaker.AppImageConfigReference( app_image_config_arn="appImageConfigArn", app_image_config_name="appImageConfigName" )
Attributes
- app_image_config_arn
The ARN of the AppImageConfig resource.
- app_image_config_name
The AppImageConfigName of the AppImageConfig resource.