AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CustomArtifactConfiguration.h
1
6#pragma once
7#include <aws/kinesisanalyticsv2/KinesisAnalyticsV2_EXPORTS.h>
8#include <aws/kinesisanalyticsv2/model/ArtifactType.h>
9#include <aws/kinesisanalyticsv2/model/S3ContentLocation.h>
10#include <aws/kinesisanalyticsv2/model/MavenReference.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace KinesisAnalyticsV2
24{
25namespace Model
26{
27
35 {
36 public:
37 AWS_KINESISANALYTICSV2_API CustomArtifactConfiguration();
38 AWS_KINESISANALYTICSV2_API CustomArtifactConfiguration(Aws::Utils::Json::JsonView jsonValue);
40 AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
49 inline const ArtifactType& GetArtifactType() const{ return m_artifactType; }
50 inline bool ArtifactTypeHasBeenSet() const { return m_artifactTypeHasBeenSet; }
51 inline void SetArtifactType(const ArtifactType& value) { m_artifactTypeHasBeenSet = true; m_artifactType = value; }
52 inline void SetArtifactType(ArtifactType&& value) { m_artifactTypeHasBeenSet = true; m_artifactType = std::move(value); }
53 inline CustomArtifactConfiguration& WithArtifactType(const ArtifactType& value) { SetArtifactType(value); return *this;}
54 inline CustomArtifactConfiguration& WithArtifactType(ArtifactType&& value) { SetArtifactType(std::move(value)); return *this;}
56
58
59 inline const S3ContentLocation& GetS3ContentLocation() const{ return m_s3ContentLocation; }
60 inline bool S3ContentLocationHasBeenSet() const { return m_s3ContentLocationHasBeenSet; }
61 inline void SetS3ContentLocation(const S3ContentLocation& value) { m_s3ContentLocationHasBeenSet = true; m_s3ContentLocation = value; }
62 inline void SetS3ContentLocation(S3ContentLocation&& value) { m_s3ContentLocationHasBeenSet = true; m_s3ContentLocation = std::move(value); }
66
68
71 inline const MavenReference& GetMavenReference() const{ return m_mavenReference; }
72 inline bool MavenReferenceHasBeenSet() const { return m_mavenReferenceHasBeenSet; }
73 inline void SetMavenReference(const MavenReference& value) { m_mavenReferenceHasBeenSet = true; m_mavenReference = value; }
74 inline void SetMavenReference(MavenReference&& value) { m_mavenReferenceHasBeenSet = true; m_mavenReference = std::move(value); }
76 inline CustomArtifactConfiguration& WithMavenReference(MavenReference&& value) { SetMavenReference(std::move(value)); return *this;}
78 private:
79
80 ArtifactType m_artifactType;
81 bool m_artifactTypeHasBeenSet = false;
82
83 S3ContentLocation m_s3ContentLocation;
84 bool m_s3ContentLocationHasBeenSet = false;
85
86 MavenReference m_mavenReference;
87 bool m_mavenReferenceHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace KinesisAnalyticsV2
92} // namespace Aws
AWS_KINESISANALYTICSV2_API CustomArtifactConfiguration(Aws::Utils::Json::JsonView jsonValue)
CustomArtifactConfiguration & WithS3ContentLocation(S3ContentLocation &&value)
AWS_KINESISANALYTICSV2_API CustomArtifactConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
CustomArtifactConfiguration & WithS3ContentLocation(const S3ContentLocation &value)
AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const
CustomArtifactConfiguration & WithMavenReference(const MavenReference &value)
CustomArtifactConfiguration & WithArtifactType(const ArtifactType &value)
CustomArtifactConfiguration & WithArtifactType(ArtifactType &&value)
CustomArtifactConfiguration & WithMavenReference(MavenReference &&value)
Aws::Utils::Json::JsonValue JsonValue