@@ -35,157 +35,58 @@ namespace Model
35
35
AWS_MIGRATIONHUB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders () const override ;
36
36
37
37
38
+ // /@{
38
39
/* *
39
40
* <p>The name of the ProgressUpdateStream. </p>
40
41
*/
41
42
inline const Aws::String& GetProgressUpdateStream () const { return m_progressUpdateStream; }
42
-
43
- /* *
44
- * <p>The name of the ProgressUpdateStream. </p>
45
- */
46
43
inline bool ProgressUpdateStreamHasBeenSet () const { return m_progressUpdateStreamHasBeenSet; }
47
-
48
- /* *
49
- * <p>The name of the ProgressUpdateStream. </p>
50
- */
51
44
inline void SetProgressUpdateStream (const Aws::String& value) { m_progressUpdateStreamHasBeenSet = true ; m_progressUpdateStream = value; }
52
-
53
- /* *
54
- * <p>The name of the ProgressUpdateStream. </p>
55
- */
56
45
inline void SetProgressUpdateStream (Aws::String&& value) { m_progressUpdateStreamHasBeenSet = true ; m_progressUpdateStream = std::move (value); }
57
-
58
- /* *
59
- * <p>The name of the ProgressUpdateStream. </p>
60
- */
61
46
inline void SetProgressUpdateStream (const char * value) { m_progressUpdateStreamHasBeenSet = true ; m_progressUpdateStream.assign (value); }
62
-
63
- /* *
64
- * <p>The name of the ProgressUpdateStream. </p>
65
- */
66
47
inline AssociateCreatedArtifactRequest& WithProgressUpdateStream (const Aws::String& value) { SetProgressUpdateStream (value); return *this ;}
67
-
68
- /* *
69
- * <p>The name of the ProgressUpdateStream. </p>
70
- */
71
48
inline AssociateCreatedArtifactRequest& WithProgressUpdateStream (Aws::String&& value) { SetProgressUpdateStream (std::move (value)); return *this ;}
72
-
73
- /* *
74
- * <p>The name of the ProgressUpdateStream. </p>
75
- */
76
49
inline AssociateCreatedArtifactRequest& WithProgressUpdateStream (const char * value) { SetProgressUpdateStream (value); return *this ;}
50
+ // /@}
77
51
78
-
52
+ // /@{
79
53
/* *
80
54
* <p>Unique identifier that references the migration task. <i>Do not store
81
55
* personal data in this field.</i> </p>
82
56
*/
83
57
inline const Aws::String& GetMigrationTaskName () const { return m_migrationTaskName; }
84
-
85
- /* *
86
- * <p>Unique identifier that references the migration task. <i>Do not store
87
- * personal data in this field.</i> </p>
88
- */
89
58
inline bool MigrationTaskNameHasBeenSet () const { return m_migrationTaskNameHasBeenSet; }
90
-
91
- /* *
92
- * <p>Unique identifier that references the migration task. <i>Do not store
93
- * personal data in this field.</i> </p>
94
- */
95
59
inline void SetMigrationTaskName (const Aws::String& value) { m_migrationTaskNameHasBeenSet = true ; m_migrationTaskName = value; }
96
-
97
- /* *
98
- * <p>Unique identifier that references the migration task. <i>Do not store
99
- * personal data in this field.</i> </p>
100
- */
101
60
inline void SetMigrationTaskName (Aws::String&& value) { m_migrationTaskNameHasBeenSet = true ; m_migrationTaskName = std::move (value); }
102
-
103
- /* *
104
- * <p>Unique identifier that references the migration task. <i>Do not store
105
- * personal data in this field.</i> </p>
106
- */
107
61
inline void SetMigrationTaskName (const char * value) { m_migrationTaskNameHasBeenSet = true ; m_migrationTaskName.assign (value); }
108
-
109
- /* *
110
- * <p>Unique identifier that references the migration task. <i>Do not store
111
- * personal data in this field.</i> </p>
112
- */
113
62
inline AssociateCreatedArtifactRequest& WithMigrationTaskName (const Aws::String& value) { SetMigrationTaskName (value); return *this ;}
114
-
115
- /* *
116
- * <p>Unique identifier that references the migration task. <i>Do not store
117
- * personal data in this field.</i> </p>
118
- */
119
63
inline AssociateCreatedArtifactRequest& WithMigrationTaskName (Aws::String&& value) { SetMigrationTaskName (std::move (value)); return *this ;}
120
-
121
- /* *
122
- * <p>Unique identifier that references the migration task. <i>Do not store
123
- * personal data in this field.</i> </p>
124
- */
125
64
inline AssociateCreatedArtifactRequest& WithMigrationTaskName (const char * value) { SetMigrationTaskName (value); return *this ;}
65
+ // /@}
126
66
127
-
67
+ // /@{
128
68
/* *
129
69
* <p>An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance,
130
70
* RDS instance, etc.) </p>
131
71
*/
132
72
inline const CreatedArtifact& GetCreatedArtifact () const { return m_createdArtifact; }
133
-
134
- /* *
135
- * <p>An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance,
136
- * RDS instance, etc.) </p>
137
- */
138
73
inline bool CreatedArtifactHasBeenSet () const { return m_createdArtifactHasBeenSet; }
139
-
140
- /* *
141
- * <p>An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance,
142
- * RDS instance, etc.) </p>
143
- */
144
74
inline void SetCreatedArtifact (const CreatedArtifact& value) { m_createdArtifactHasBeenSet = true ; m_createdArtifact = value; }
145
-
146
- /* *
147
- * <p>An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance,
148
- * RDS instance, etc.) </p>
149
- */
150
75
inline void SetCreatedArtifact (CreatedArtifact&& value) { m_createdArtifactHasBeenSet = true ; m_createdArtifact = std::move (value); }
151
-
152
- /* *
153
- * <p>An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance,
154
- * RDS instance, etc.) </p>
155
- */
156
76
inline AssociateCreatedArtifactRequest& WithCreatedArtifact (const CreatedArtifact& value) { SetCreatedArtifact (value); return *this ;}
157
-
158
- /* *
159
- * <p>An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance,
160
- * RDS instance, etc.) </p>
161
- */
162
77
inline AssociateCreatedArtifactRequest& WithCreatedArtifact (CreatedArtifact&& value) { SetCreatedArtifact (std::move (value)); return *this ;}
78
+ // /@}
163
79
164
-
80
+ // /@{
165
81
/* *
166
82
* <p>Optional boolean flag to indicate whether any effect should take place. Used
167
83
* to test if the caller has permission to make the call.</p>
168
84
*/
169
85
inline bool GetDryRun () const { return m_dryRun; }
170
-
171
- /* *
172
- * <p>Optional boolean flag to indicate whether any effect should take place. Used
173
- * to test if the caller has permission to make the call.</p>
174
- */
175
86
inline bool DryRunHasBeenSet () const { return m_dryRunHasBeenSet; }
176
-
177
- /* *
178
- * <p>Optional boolean flag to indicate whether any effect should take place. Used
179
- * to test if the caller has permission to make the call.</p>
180
- */
181
87
inline void SetDryRun (bool value) { m_dryRunHasBeenSet = true ; m_dryRun = value; }
182
-
183
- /* *
184
- * <p>Optional boolean flag to indicate whether any effect should take place. Used
185
- * to test if the caller has permission to make the call.</p>
186
- */
187
88
inline AssociateCreatedArtifactRequest& WithDryRun (bool value) { SetDryRun (value); return *this ;}
188
-
89
+ // /@}
189
90
private:
190
91
191
92
Aws::String m_progressUpdateStream;
0 commit comments