86 lines
2.8 KiB
C++
86 lines
2.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/transcribe/TranscribeService_EXPORTS.h>
|
|
#include <aws/transcribe/TranscribeServiceRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace TranscribeService
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_TRANSCRIBESERVICE_API DeleteMedicalVocabularyRequest : public TranscribeServiceRequest
|
|
{
|
|
public:
|
|
DeleteMedicalVocabularyRequest();
|
|
|
|
// Service request name is the Operation name which will send this request out,
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|
// so we can not get operation's name from response.
|
|
inline virtual const char* GetServiceRequestName() const override { return "DeleteMedicalVocabulary"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The name of the vocabulary that you want to delete.</p>
|
|
*/
|
|
inline const Aws::String& GetVocabularyName() const{ return m_vocabularyName; }
|
|
|
|
/**
|
|
* <p>The name of the vocabulary that you want to delete.</p>
|
|
*/
|
|
inline bool VocabularyNameHasBeenSet() const { return m_vocabularyNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the vocabulary that you want to delete.</p>
|
|
*/
|
|
inline void SetVocabularyName(const Aws::String& value) { m_vocabularyNameHasBeenSet = true; m_vocabularyName = value; }
|
|
|
|
/**
|
|
* <p>The name of the vocabulary that you want to delete.</p>
|
|
*/
|
|
inline void SetVocabularyName(Aws::String&& value) { m_vocabularyNameHasBeenSet = true; m_vocabularyName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the vocabulary that you want to delete.</p>
|
|
*/
|
|
inline void SetVocabularyName(const char* value) { m_vocabularyNameHasBeenSet = true; m_vocabularyName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the vocabulary that you want to delete.</p>
|
|
*/
|
|
inline DeleteMedicalVocabularyRequest& WithVocabularyName(const Aws::String& value) { SetVocabularyName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the vocabulary that you want to delete.</p>
|
|
*/
|
|
inline DeleteMedicalVocabularyRequest& WithVocabularyName(Aws::String&& value) { SetVocabularyName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the vocabulary that you want to delete.</p>
|
|
*/
|
|
inline DeleteMedicalVocabularyRequest& WithVocabularyName(const char* value) { SetVocabularyName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_vocabularyName;
|
|
bool m_vocabularyNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace TranscribeService
|
|
} // namespace Aws
|