/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The configuration for running a SageMaker image as a KernelGateway
* app.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the AppImageConfig.
*/ inline const Aws::String& GetAppImageConfigArn() const{ return m_appImageConfigArn; } /** *The Amazon Resource Name (ARN) of the AppImageConfig.
*/ inline bool AppImageConfigArnHasBeenSet() const { return m_appImageConfigArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the AppImageConfig.
*/ inline void SetAppImageConfigArn(const Aws::String& value) { m_appImageConfigArnHasBeenSet = true; m_appImageConfigArn = value; } /** *The Amazon Resource Name (ARN) of the AppImageConfig.
*/ inline void SetAppImageConfigArn(Aws::String&& value) { m_appImageConfigArnHasBeenSet = true; m_appImageConfigArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the AppImageConfig.
*/ inline void SetAppImageConfigArn(const char* value) { m_appImageConfigArnHasBeenSet = true; m_appImageConfigArn.assign(value); } /** *The Amazon Resource Name (ARN) of the AppImageConfig.
*/ inline AppImageConfigDetails& WithAppImageConfigArn(const Aws::String& value) { SetAppImageConfigArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the AppImageConfig.
*/ inline AppImageConfigDetails& WithAppImageConfigArn(Aws::String&& value) { SetAppImageConfigArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the AppImageConfig.
*/ inline AppImageConfigDetails& WithAppImageConfigArn(const char* value) { SetAppImageConfigArn(value); return *this;} /** *The name of the AppImageConfig. Must be unique to your account.
*/ inline const Aws::String& GetAppImageConfigName() const{ return m_appImageConfigName; } /** *The name of the AppImageConfig. Must be unique to your account.
*/ inline bool AppImageConfigNameHasBeenSet() const { return m_appImageConfigNameHasBeenSet; } /** *The name of the AppImageConfig. Must be unique to your account.
*/ inline void SetAppImageConfigName(const Aws::String& value) { m_appImageConfigNameHasBeenSet = true; m_appImageConfigName = value; } /** *The name of the AppImageConfig. Must be unique to your account.
*/ inline void SetAppImageConfigName(Aws::String&& value) { m_appImageConfigNameHasBeenSet = true; m_appImageConfigName = std::move(value); } /** *The name of the AppImageConfig. Must be unique to your account.
*/ inline void SetAppImageConfigName(const char* value) { m_appImageConfigNameHasBeenSet = true; m_appImageConfigName.assign(value); } /** *The name of the AppImageConfig. Must be unique to your account.
*/ inline AppImageConfigDetails& WithAppImageConfigName(const Aws::String& value) { SetAppImageConfigName(value); return *this;} /** *The name of the AppImageConfig. Must be unique to your account.
*/ inline AppImageConfigDetails& WithAppImageConfigName(Aws::String&& value) { SetAppImageConfigName(std::move(value)); return *this;} /** *The name of the AppImageConfig. Must be unique to your account.
*/ inline AppImageConfigDetails& WithAppImageConfigName(const char* value) { SetAppImageConfigName(value); return *this;} /** *When the AppImageConfig was created.
*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *When the AppImageConfig was created.
*/ inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; } /** *When the AppImageConfig was created.
*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTimeHasBeenSet = true; m_creationTime = value; } /** *When the AppImageConfig was created.
*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::move(value); } /** *When the AppImageConfig was created.
*/ inline AppImageConfigDetails& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *When the AppImageConfig was created.
*/ inline AppImageConfigDetails& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} /** *When the AppImageConfig was last modified.
*/ inline const Aws::Utils::DateTime& GetLastModifiedTime() const{ return m_lastModifiedTime; } /** *When the AppImageConfig was last modified.
*/ inline bool LastModifiedTimeHasBeenSet() const { return m_lastModifiedTimeHasBeenSet; } /** *When the AppImageConfig was last modified.
*/ inline void SetLastModifiedTime(const Aws::Utils::DateTime& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = value; } /** *When the AppImageConfig was last modified.
*/ inline void SetLastModifiedTime(Aws::Utils::DateTime&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::move(value); } /** *When the AppImageConfig was last modified.
*/ inline AppImageConfigDetails& WithLastModifiedTime(const Aws::Utils::DateTime& value) { SetLastModifiedTime(value); return *this;} /** *When the AppImageConfig was last modified.
*/ inline AppImageConfigDetails& WithLastModifiedTime(Aws::Utils::DateTime&& value) { SetLastModifiedTime(std::move(value)); return *this;} /** *The configuration for the file system and kernels in the SageMaker image.
*/ inline const KernelGatewayImageConfig& GetKernelGatewayImageConfig() const{ return m_kernelGatewayImageConfig; } /** *The configuration for the file system and kernels in the SageMaker image.
*/ inline bool KernelGatewayImageConfigHasBeenSet() const { return m_kernelGatewayImageConfigHasBeenSet; } /** *The configuration for the file system and kernels in the SageMaker image.
*/ inline void SetKernelGatewayImageConfig(const KernelGatewayImageConfig& value) { m_kernelGatewayImageConfigHasBeenSet = true; m_kernelGatewayImageConfig = value; } /** *The configuration for the file system and kernels in the SageMaker image.
*/ inline void SetKernelGatewayImageConfig(KernelGatewayImageConfig&& value) { m_kernelGatewayImageConfigHasBeenSet = true; m_kernelGatewayImageConfig = std::move(value); } /** *The configuration for the file system and kernels in the SageMaker image.
*/ inline AppImageConfigDetails& WithKernelGatewayImageConfig(const KernelGatewayImageConfig& value) { SetKernelGatewayImageConfig(value); return *this;} /** *The configuration for the file system and kernels in the SageMaker image.
*/ inline AppImageConfigDetails& WithKernelGatewayImageConfig(KernelGatewayImageConfig&& value) { SetKernelGatewayImageConfig(std::move(value)); return *this;} private: Aws::String m_appImageConfigArn; bool m_appImageConfigArnHasBeenSet = false; Aws::String m_appImageConfigName; bool m_appImageConfigNameHasBeenSet = false; Aws::Utils::DateTime m_creationTime; bool m_creationTimeHasBeenSet = false; Aws::Utils::DateTime m_lastModifiedTime; bool m_lastModifiedTimeHasBeenSet = false; KernelGatewayImageConfig m_kernelGatewayImageConfig; bool m_kernelGatewayImageConfigHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws