AppImageConfigReference
- class aws_cdk.interfaces.aws_sagemaker.AppImageConfigReference(*, app_image_config_arn, app_image_config_name)
Bases:
objectA 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.interfaces import aws_sagemaker as interfaces_aws_sagemaker app_image_config_reference = interfaces_aws_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.