Class: Aws::SageMaker::Types::DescribeAppRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::DescribeAppRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass DescribeAppRequest data as a hash:
{
domain_id: "DomainId", # required
user_profile_name: "UserProfileName", # required
app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
app_name: "AppName", # required
}
Instance Attribute Summary collapse
-
#app_name ⇒ String
The name of the app.
-
#app_type ⇒ String
The type of app.
-
#domain_id ⇒ String
The domain ID.
-
#user_profile_name ⇒ String
The user profile name.
Instance Attribute Details
#app_name ⇒ String
The name of the app.
6152 6153 6154 6155 6156 6157 6158 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 6152 class DescribeAppRequest < Struct.new( :domain_id, :user_profile_name, :app_type, :app_name) include Aws::Structure end |
#app_type ⇒ String
The type of app.
6152 6153 6154 6155 6156 6157 6158 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 6152 class DescribeAppRequest < Struct.new( :domain_id, :user_profile_name, :app_type, :app_name) include Aws::Structure end |
#domain_id ⇒ String
The domain ID.
6152 6153 6154 6155 6156 6157 6158 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 6152 class DescribeAppRequest < Struct.new( :domain_id, :user_profile_name, :app_type, :app_name) include Aws::Structure end |
#user_profile_name ⇒ String
The user profile name.
6152 6153 6154 6155 6156 6157 6158 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 6152 class DescribeAppRequest < Struct.new( :domain_id, :user_profile_name, :app_type, :app_name) include Aws::Structure end |