1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/chime/Chime_EXPORTS.h>
8 #include <aws/chime/model/AudioMuxType.h>
9 #include <utility>
10 
11 namespace Aws
12 {
13 namespace Utils
14 {
15 namespace Json
16 {
17   class JsonValue;
18   class JsonView;
19 } // namespace Json
20 } // namespace Utils
21 namespace Chime
22 {
23 namespace Model
24 {
25 
26   /**
27    * <p>The audio artifact configuration object.</p><p><h3>See Also:</h3>   <a
28    * href="http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/AudioArtifactsConfiguration">AWS
29    * API Reference</a></p>
30    */
31   class AWS_CHIME_API AudioArtifactsConfiguration
32   {
33   public:
34     AudioArtifactsConfiguration();
35     AudioArtifactsConfiguration(Aws::Utils::Json::JsonView jsonValue);
36     AudioArtifactsConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
37     Aws::Utils::Json::JsonValue Jsonize() const;
38 
39 
40     /**
41      * <p>The MUX type of the audio artifact configuration object.</p>
42      */
GetMuxType()43     inline const AudioMuxType& GetMuxType() const{ return m_muxType; }
44 
45     /**
46      * <p>The MUX type of the audio artifact configuration object.</p>
47      */
MuxTypeHasBeenSet()48     inline bool MuxTypeHasBeenSet() const { return m_muxTypeHasBeenSet; }
49 
50     /**
51      * <p>The MUX type of the audio artifact configuration object.</p>
52      */
SetMuxType(const AudioMuxType & value)53     inline void SetMuxType(const AudioMuxType& value) { m_muxTypeHasBeenSet = true; m_muxType = value; }
54 
55     /**
56      * <p>The MUX type of the audio artifact configuration object.</p>
57      */
SetMuxType(AudioMuxType && value)58     inline void SetMuxType(AudioMuxType&& value) { m_muxTypeHasBeenSet = true; m_muxType = std::move(value); }
59 
60     /**
61      * <p>The MUX type of the audio artifact configuration object.</p>
62      */
WithMuxType(const AudioMuxType & value)63     inline AudioArtifactsConfiguration& WithMuxType(const AudioMuxType& value) { SetMuxType(value); return *this;}
64 
65     /**
66      * <p>The MUX type of the audio artifact configuration object.</p>
67      */
WithMuxType(AudioMuxType && value)68     inline AudioArtifactsConfiguration& WithMuxType(AudioMuxType&& value) { SetMuxType(std::move(value)); return *this;}
69 
70   private:
71 
72     AudioMuxType m_muxType;
73     bool m_muxTypeHasBeenSet;
74   };
75 
76 } // namespace Model
77 } // namespace Chime
78 } // namespace Aws
79