Interface CfnConfigurationTemplatePropsMixin.SourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationTemplatePropsMixin.SourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnConfigurationTemplatePropsMixin
@Stability(Stable)
public static interface CfnConfigurationTemplatePropsMixin.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.cfnpropertymixins.services.elasticbeanstalk.*;
SourceConfigurationProperty sourceConfigurationProperty = SourceConfigurationProperty.builder()
.applicationName("applicationName")
.templateName("templateName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConfigurationTemplatePropsMixin.SourceConfigurationProperty -
Method Summary
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
@Stability(Stable) static CfnConfigurationTemplatePropsMixin.SourceConfigurationProperty.Builder builder()
-