Interface CfnConfigurationTemplate.SourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationTemplate.SourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnConfigurationTemplate
@Stability(Stable)
public static interface CfnConfigurationTemplate.SourceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Use the
SourceConfiguration property type to specify another AWS Elastic Beanstalk configuration template as the base to creating a new AWS::ElasticBeanstalk::ConfigurationTemplate resource in an AWS CloudFormation template.
An AWS Elastic Beanstalk configuration template to base a new one on. You can use it to define a AWS::ElasticBeanstalk::ConfigurationTemplate resource.
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.*;
SourceConfigurationProperty sourceConfigurationProperty = SourceConfigurationProperty.builder()
.applicationName("applicationName")
.templateName("templateName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigurationTemplate.SourceConfigurationPropertystatic final classAn implementation forCfnConfigurationTemplate.SourceConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the application associated with the configuration.The name of the configuration template.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationName
The name of the application associated with the configuration.- See Also:
-
getTemplateName
The name of the configuration template.- See Also:
-
builder
-