/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object containing detailed information about the self-service
* action.See Also:
AWS
* API Reference
Summary information about the self-service action.
*/ inline const ServiceActionSummary& GetServiceActionSummary() const{ return m_serviceActionSummary; } /** *Summary information about the self-service action.
*/ inline bool ServiceActionSummaryHasBeenSet() const { return m_serviceActionSummaryHasBeenSet; } /** *Summary information about the self-service action.
*/ inline void SetServiceActionSummary(const ServiceActionSummary& value) { m_serviceActionSummaryHasBeenSet = true; m_serviceActionSummary = value; } /** *Summary information about the self-service action.
*/ inline void SetServiceActionSummary(ServiceActionSummary&& value) { m_serviceActionSummaryHasBeenSet = true; m_serviceActionSummary = std::move(value); } /** *Summary information about the self-service action.
*/ inline ServiceActionDetail& WithServiceActionSummary(const ServiceActionSummary& value) { SetServiceActionSummary(value); return *this;} /** *Summary information about the self-service action.
*/ inline ServiceActionDetail& WithServiceActionSummary(ServiceActionSummary&& value) { SetServiceActionSummary(std::move(value)); return *this;} /** *A map that defines the self-service action.
*/ inline const Aws::MapA map that defines the self-service action.
*/ inline bool DefinitionHasBeenSet() const { return m_definitionHasBeenSet; } /** *A map that defines the self-service action.
*/ inline void SetDefinition(const Aws::MapA map that defines the self-service action.
*/ inline void SetDefinition(Aws::MapA map that defines the self-service action.
*/ inline ServiceActionDetail& WithDefinition(const Aws::MapA map that defines the self-service action.
*/ inline ServiceActionDetail& WithDefinition(Aws::MapA map that defines the self-service action.
*/ inline ServiceActionDetail& AddDefinition(const ServiceActionDefinitionKey& key, const Aws::String& value) { m_definitionHasBeenSet = true; m_definition.emplace(key, value); return *this; } /** *A map that defines the self-service action.
*/ inline ServiceActionDetail& AddDefinition(ServiceActionDefinitionKey&& key, const Aws::String& value) { m_definitionHasBeenSet = true; m_definition.emplace(std::move(key), value); return *this; } /** *A map that defines the self-service action.
*/ inline ServiceActionDetail& AddDefinition(const ServiceActionDefinitionKey& key, Aws::String&& value) { m_definitionHasBeenSet = true; m_definition.emplace(key, std::move(value)); return *this; } /** *A map that defines the self-service action.
*/ inline ServiceActionDetail& AddDefinition(ServiceActionDefinitionKey&& key, Aws::String&& value) { m_definitionHasBeenSet = true; m_definition.emplace(std::move(key), std::move(value)); return *this; } /** *A map that defines the self-service action.
*/ inline ServiceActionDetail& AddDefinition(ServiceActionDefinitionKey&& key, const char* value) { m_definitionHasBeenSet = true; m_definition.emplace(std::move(key), value); return *this; } /** *A map that defines the self-service action.
*/ inline ServiceActionDetail& AddDefinition(const ServiceActionDefinitionKey& key, const char* value) { m_definitionHasBeenSet = true; m_definition.emplace(key, value); return *this; } private: ServiceActionSummary m_serviceActionSummary; bool m_serviceActionSummaryHasBeenSet = false; Aws::Map