
com.pulumi.azurenative.awsconnector.outputs.AutoDeploymentResponse Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.awsconnector.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AutoDeploymentResponse {
/**
* @return If set to true, StackSets automatically deploys additional stack instances to AWS Organizations accounts that are added to a target organization or organizational unit (OU) in the specified Regions. If an account is removed from a target organization or OU, StackSets deletes stack instances from the account in the specified Regions.
*
*/
private @Nullable Boolean enabled;
/**
* @return If set to true, stack resources are retained when an account is removed from a target organization or OU. If set to false, stack resources are deleted. Specify only if Enabled is set to True.
*
*/
private @Nullable Boolean retainStacksOnAccountRemoval;
private AutoDeploymentResponse() {}
/**
* @return If set to true, StackSets automatically deploys additional stack instances to AWS Organizations accounts that are added to a target organization or organizational unit (OU) in the specified Regions. If an account is removed from a target organization or OU, StackSets deletes stack instances from the account in the specified Regions.
*
*/
public Optional enabled() {
return Optional.ofNullable(this.enabled);
}
/**
* @return If set to true, stack resources are retained when an account is removed from a target organization or OU. If set to false, stack resources are deleted. Specify only if Enabled is set to True.
*
*/
public Optional retainStacksOnAccountRemoval() {
return Optional.ofNullable(this.retainStacksOnAccountRemoval);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AutoDeploymentResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Boolean enabled;
private @Nullable Boolean retainStacksOnAccountRemoval;
public Builder() {}
public Builder(AutoDeploymentResponse defaults) {
Objects.requireNonNull(defaults);
this.enabled = defaults.enabled;
this.retainStacksOnAccountRemoval = defaults.retainStacksOnAccountRemoval;
}
@CustomType.Setter
public Builder enabled(@Nullable Boolean enabled) {
this.enabled = enabled;
return this;
}
@CustomType.Setter
public Builder retainStacksOnAccountRemoval(@Nullable Boolean retainStacksOnAccountRemoval) {
this.retainStacksOnAccountRemoval = retainStacksOnAccountRemoval;
return this;
}
public AutoDeploymentResponse build() {
final var _resultValue = new AutoDeploymentResponse();
_resultValue.enabled = enabled;
_resultValue.retainStacksOnAccountRemoval = retainStacksOnAccountRemoval;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy