@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)",
date="2022-05-20T22:19:54.217Z")
public interface CfnApplicationProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.elasticbeanstalk.*; CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder() .applicationName("applicationName") .description("description") .resourceLifecycleConfig(ApplicationResourceLifecycleConfigProperty.builder() .serviceRole("serviceRole") .versionLifecycleConfig(ApplicationVersionLifecycleConfigProperty.builder() .maxAgeRule(MaxAgeRuleProperty.builder() .deleteSourceFromS3(false) .enabled(false) .maxAgeInDays(123) .build()) .maxCountRule(MaxCountRuleProperty.builder() .deleteSourceFromS3(false) .enabled(false) .maxCount(123) .build()) .build()) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplicationProps.Builder
A builder for
CfnApplicationProps |
static class |
CfnApplicationProps.Jsii$Proxy
An implementation for
CfnApplicationProps |
Modifier and Type | Method and Description |
---|---|
static CfnApplicationProps.Builder |
builder() |
default java.lang.String |
getApplicationName()
A name for the Elastic Beanstalk application.
|
default java.lang.String |
getDescription()
Your description of the application.
|
default java.lang.Object |
getResourceLifecycleConfig()
Specifies an application resource lifecycle configuration to prevent your application from accumulating too many versions.
|
default java.lang.String getApplicationName()
If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the application name. For more information, see Name Type .
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
default java.lang.String getDescription()
default java.lang.Object getResourceLifecycleConfig()
static CfnApplicationProps.Builder builder()
CfnApplicationProps.Builder
of CfnApplicationProps