1 /*
2 * Copyright 2013-2020 the original author or authors.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * https://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.springframework.cloud.aws.autoconfigure.context.properties;
18
19 import org.springframework.boot.context.properties.ConfigurationProperties;
20
21 /**
22 * Properties related to CloudFormation stack support.
23 *
24 * @author Maciej Walkowiak
25 */
26 @ConfigurationProperties("cloud.aws.stack")
27 public class AwsStackProperties {
28
29 /**
30 * Enables the automatic stack name detection for the application.
31 */
32 private boolean auto = true;
33
34 /**
35 * The name of the manually configured stack name that will be used to retrieve the
36 * resources.
37 */
38 private String name;
39
40 public boolean isAuto() {
41 return auto;
42 }
43
44 public void setAuto(boolean auto) {
45 this.auto = auto;
46 }
47
48 public String getName() {
49 return name;
50 }
51
52 public void setName(String name) {
53 this.name = name;
54 }
55
56 }
57