com.pulumi.aws.autoscalingplans.ScalingPlanArgs 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.aws.autoscalingplans;
import com.pulumi.aws.autoscalingplans.inputs.ScalingPlanApplicationSourceArgs;
import com.pulumi.aws.autoscalingplans.inputs.ScalingPlanScalingInstructionArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ScalingPlanArgs extends com.pulumi.resources.ResourceArgs {
public static final ScalingPlanArgs Empty = new ScalingPlanArgs();
/**
* CloudFormation stack or set of tags. You can create one scaling plan per application source.
*
*/
@Import(name="applicationSource", required=true)
private Output applicationSource;
/**
* @return CloudFormation stack or set of tags. You can create one scaling plan per application source.
*
*/
public Output applicationSource() {
return this.applicationSource;
}
/**
* Name of the scaling plan. Names cannot contain vertical bars, colons, or forward slashes.
*
*/
@Import(name="name")
private @Nullable Output name;
/**
* @return Name of the scaling plan. Names cannot contain vertical bars, colons, or forward slashes.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy