CfnAppProps
- class aws_cdk.aws_sagemaker.CfnAppProps(*, app_name, app_type, domain_id, user_profile_name, recovery_mode=None, resource_spec=None, tags=None)
Bases:
objectProperties for defining a
CfnApp.- Parameters:
app_name (
str) – The name of the app.app_type (
str) – The type of app.domain_id (
str) – The domain ID.user_profile_name (
str) – The user profile name.recovery_mode (
Union[bool,IResolvable,None]) – Indicates whether the application is launched in recovery mode.resource_spec (
Union[IResolvable,ResourceSpecProperty,Dict[str,Any],None]) – Specifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.html
- 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 cfn_app_props = sagemaker.CfnAppProps( app_name="appName", app_type="appType", domain_id="domainId", user_profile_name="userProfileName", # the properties below are optional recovery_mode=False, resource_spec=sagemaker.CfnApp.ResourceSpecProperty( instance_type="instanceType", lifecycle_config_arn="lifecycleConfigArn", sage_maker_image_arn="sageMakerImageArn", sage_maker_image_version_arn="sageMakerImageVersionArn" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- app_name
The name of the app.
- app_type
The type of app.
- domain_id
The domain ID.
- recovery_mode
Indicates whether the application is launched in recovery mode.
- resource_spec
Specifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on.
- user_profile_name
The user profile name.