Interface CfnAppProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppProps.Jsii$Proxy
CfnApp.
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.opsworks.*;
CfnAppProps cfnAppProps = CfnAppProps.builder()
.name("name")
.stackId("stackId")
.type("type")
// the properties below are optional
.appSource(SourceProperty.builder()
.password("password")
.revision("revision")
.sshKey("sshKey")
.type("type")
.url("url")
.username("username")
.build())
.attributes(Map.of(
"attributesKey", "attributes"))
.dataSources(List.of(DataSourceProperty.builder()
.arn("arn")
.databaseName("databaseName")
.type("type")
.build()))
.description("description")
.domains(List.of("domains"))
.enableSsl(false)
.environment(List.of(EnvironmentVariableProperty.builder()
.key("key")
.value("value")
// the properties below are optional
.secure(false)
.build()))
.shortname("shortname")
.sslConfiguration(SslConfigurationProperty.builder()
.certificate("certificate")
.chain("chain")
.privateKey("privateKey")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppPropsstatic final classAn implementation forCfnAppProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAppProps.Builderbuilder()default ObjectASourceobject that specifies the app repository.default ObjectOne or more user-defined key/value pairs to be added to the stack attributes.default ObjectThe app's data source.default StringA description of the app.The app virtual host settings, with multiple domains separated by commas.default ObjectWhether to enable SSL for the app.default ObjectAn array ofEnvironmentVariableobjects that specify environment variables to be associated with the app.getName()The app name.default StringThe app's short name.default ObjectAnSslConfigurationobject with the SSL configuration.The stack ID.getType()The app type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The app name.- See Also:
-
getStackId
The stack ID.- See Also:
-
getType
The app type.Each supported type is associated with a particular layer. For example, PHP applications are associated with a PHP layer. OpsWorks Stacks deploys an application to those instances that are members of the corresponding layer. If your app isn't one of the standard types, or you prefer to implement your own Deploy recipes, specify
other.- See Also:
-
getAppSource
ASourceobject that specifies the app repository.Returns union: either
IResolvableorCfnApp.SourceProperty- See Also:
-
getAttributes
One or more user-defined key/value pairs to be added to the stack attributes.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getDataSources
The app's data source.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnApp.DataSourceProperty>- See Also:
-
getDescription
A description of the app.- See Also:
-
getDomains
The app virtual host settings, with multiple domains separated by commas.For example:
'www.example.com, example.com'- See Also:
-
getEnableSsl
Whether to enable SSL for the app.Returns union: either
BooleanorIResolvable- See Also:
-
getEnvironment
An array ofEnvironmentVariableobjects that specify environment variables to be associated with the app.After you deploy the app, these variables are defined on the associated app server instance. For more information, see Environment Variables .
There is no specific limit on the number of environment variables. However, the size of the associated data structure - which includes the variables' names, values, and protected flag values - cannot exceed 20 KB. This limit should accommodate most if not all use cases. Exceeding it will cause an exception with the message, "Environment: is too large (maximum is 20KB)."
If you have specified one or more environment variables, you cannot modify the stack's Chef version.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnApp.EnvironmentVariableProperty>- See Also:
-
getShortname
The app's short name.- See Also:
-
getSslConfiguration
AnSslConfigurationobject with the SSL configuration.Returns union: either
IResolvableorCfnApp.SslConfigurationProperty- See Also:
-
builder
- Returns:
- a
CfnAppProps.BuilderofCfnAppProps
-