@@ -24,8 +24,17 @@ namespace Model
24
24
{
25
25
26
26
/* *
27
- * <p> Information about an exported environment variable. </p><p><h3>See
28
- * Also:</h3> <a
27
+ * <p>Contains information about an exported environment variable. </p> <p>Exported
28
+ * environment variables are used in conjunction with AWS CodePipeline to export
29
+ * environment variables from the current build stage to subsequent stages in the
30
+ * pipeline. For more information, see <a
31
+ * href="https://docs.aws.amazon.com/codepipeline/latest/userguide/actions-variables.html">Working
32
+ * with variables</a> in the <i>AWS CodePipeline User Guide</i>.</p> <p>
33
+ * During a build, the value of a variable is available starting with the
34
+ * <code>install</code> phase. It can be updated between the start of the
35
+ * <code>install</code> phase and the end of the <code>post_build</code> phase.
36
+ * After the <code>post_build</code> phase ends, the value of exported variables
37
+ * cannot change.</p> <p><h3>See Also:</h3> <a
29
38
* href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ExportedEnvironmentVariable">AWS
30
39
* API Reference</a></p>
31
40
*/
@@ -39,123 +48,83 @@ namespace Model
39
48
40
49
41
50
/* *
42
- * <p> The name of this exported environment variable. </p>
51
+ * <p>The name of the exported environment variable.</p>
43
52
*/
44
53
inline const Aws::String& GetName () const { return m_name; }
45
54
46
55
/* *
47
- * <p> The name of this exported environment variable. </p>
56
+ * <p>The name of the exported environment variable.</p>
48
57
*/
49
58
inline bool NameHasBeenSet () const { return m_nameHasBeenSet; }
50
59
51
60
/* *
52
- * <p> The name of this exported environment variable. </p>
61
+ * <p>The name of the exported environment variable.</p>
53
62
*/
54
63
inline void SetName (const Aws::String& value) { m_nameHasBeenSet = true ; m_name = value; }
55
64
56
65
/* *
57
- * <p> The name of this exported environment variable. </p>
66
+ * <p>The name of the exported environment variable.</p>
58
67
*/
59
68
inline void SetName (Aws::String&& value) { m_nameHasBeenSet = true ; m_name = std::move (value); }
60
69
61
70
/* *
62
- * <p> The name of this exported environment variable. </p>
71
+ * <p>The name of the exported environment variable.</p>
63
72
*/
64
73
inline void SetName (const char * value) { m_nameHasBeenSet = true ; m_name.assign (value); }
65
74
66
75
/* *
67
- * <p> The name of this exported environment variable. </p>
76
+ * <p>The name of the exported environment variable.</p>
68
77
*/
69
78
inline ExportedEnvironmentVariable& WithName (const Aws::String& value) { SetName (value); return *this ;}
70
79
71
80
/* *
72
- * <p> The name of this exported environment variable. </p>
81
+ * <p>The name of the exported environment variable.</p>
73
82
*/
74
83
inline ExportedEnvironmentVariable& WithName (Aws::String&& value) { SetName (std::move (value)); return *this ;}
75
84
76
85
/* *
77
- * <p> The name of this exported environment variable. </p>
86
+ * <p>The name of the exported environment variable.</p>
78
87
*/
79
88
inline ExportedEnvironmentVariable& WithName (const char * value) { SetName (value); return *this ;}
80
89
81
90
82
91
/* *
83
- * <p> The value assigned to this exported environment variable. </p> <p>
84
- * During a build, the value of a variable is available starting with the
85
- * <code>install</code> phase. It can be updated between the start of the
86
- * <code>install</code> phase and the end of the <code>post_build</code> phase.
87
- * After the <code>post_build</code> phase ends, the value of exported variables
88
- * cannot change.</p>
92
+ * <p>The value assigned to the exported environment variable.</p>
89
93
*/
90
94
inline const Aws::String& GetValue () const { return m_value; }
91
95
92
96
/* *
93
- * <p> The value assigned to this exported environment variable. </p> <p>
94
- * During a build, the value of a variable is available starting with the
95
- * <code>install</code> phase. It can be updated between the start of the
96
- * <code>install</code> phase and the end of the <code>post_build</code> phase.
97
- * After the <code>post_build</code> phase ends, the value of exported variables
98
- * cannot change.</p>
97
+ * <p>The value assigned to the exported environment variable.</p>
99
98
*/
100
99
inline bool ValueHasBeenSet () const { return m_valueHasBeenSet; }
101
100
102
101
/* *
103
- * <p> The value assigned to this exported environment variable. </p> <p>
104
- * During a build, the value of a variable is available starting with the
105
- * <code>install</code> phase. It can be updated between the start of the
106
- * <code>install</code> phase and the end of the <code>post_build</code> phase.
107
- * After the <code>post_build</code> phase ends, the value of exported variables
108
- * cannot change.</p>
102
+ * <p>The value assigned to the exported environment variable.</p>
109
103
*/
110
104
inline void SetValue (const Aws::String& value) { m_valueHasBeenSet = true ; m_value = value; }
111
105
112
106
/* *
113
- * <p> The value assigned to this exported environment variable. </p> <p>
114
- * During a build, the value of a variable is available starting with the
115
- * <code>install</code> phase. It can be updated between the start of the
116
- * <code>install</code> phase and the end of the <code>post_build</code> phase.
117
- * After the <code>post_build</code> phase ends, the value of exported variables
118
- * cannot change.</p>
107
+ * <p>The value assigned to the exported environment variable.</p>
119
108
*/
120
109
inline void SetValue (Aws::String&& value) { m_valueHasBeenSet = true ; m_value = std::move (value); }
121
110
122
111
/* *
123
- * <p> The value assigned to this exported environment variable. </p> <p>
124
- * During a build, the value of a variable is available starting with the
125
- * <code>install</code> phase. It can be updated between the start of the
126
- * <code>install</code> phase and the end of the <code>post_build</code> phase.
127
- * After the <code>post_build</code> phase ends, the value of exported variables
128
- * cannot change.</p>
112
+ * <p>The value assigned to the exported environment variable.</p>
129
113
*/
130
114
inline void SetValue (const char * value) { m_valueHasBeenSet = true ; m_value.assign (value); }
131
115
132
116
/* *
133
- * <p> The value assigned to this exported environment variable. </p> <p>
134
- * During a build, the value of a variable is available starting with the
135
- * <code>install</code> phase. It can be updated between the start of the
136
- * <code>install</code> phase and the end of the <code>post_build</code> phase.
137
- * After the <code>post_build</code> phase ends, the value of exported variables
138
- * cannot change.</p>
117
+ * <p>The value assigned to the exported environment variable.</p>
139
118
*/
140
119
inline ExportedEnvironmentVariable& WithValue (const Aws::String& value) { SetValue (value); return *this ;}
141
120
142
121
/* *
143
- * <p> The value assigned to this exported environment variable. </p> <p>
144
- * During a build, the value of a variable is available starting with the
145
- * <code>install</code> phase. It can be updated between the start of the
146
- * <code>install</code> phase and the end of the <code>post_build</code> phase.
147
- * After the <code>post_build</code> phase ends, the value of exported variables
148
- * cannot change.</p>
122
+ * <p>The value assigned to the exported environment variable.</p>
149
123
*/
150
124
inline ExportedEnvironmentVariable& WithValue (Aws::String&& value) { SetValue (std::move (value)); return *this ;}
151
125
152
126
/* *
153
- * <p> The value assigned to this exported environment variable. </p> <p>
154
- * During a build, the value of a variable is available starting with the
155
- * <code>install</code> phase. It can be updated between the start of the
156
- * <code>install</code> phase and the end of the <code>post_build</code> phase.
157
- * After the <code>post_build</code> phase ends, the value of exported variables
158
- * cannot change.</p>
127
+ * <p>The value assigned to the exported environment variable.</p>
159
128
*/
160
129
inline ExportedEnvironmentVariable& WithValue (const char * value) { SetValue (value); return *this ;}
161
130
0 commit comments