Show / Hide Table of Contents

Class CfnConfigurationTemplate.SourceConfigurationProperty

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.

Inheritance
System.Object
CfnConfigurationTemplate.SourceConfigurationProperty
Implements
CfnConfigurationTemplate.ISourceConfigurationProperty
Namespace: Amazon.CDK.AWS.ElasticBeanstalk
Assembly: Amazon.CDK.AWS.ElasticBeanstalk.dll
Syntax (csharp)
public class SourceConfigurationProperty : Object, CfnConfigurationTemplate.ISourceConfigurationProperty
Syntax (vb)
Public Class SourceConfigurationProperty
    Inherits Object
    Implements CfnConfigurationTemplate.ISourceConfigurationProperty
Remarks

An AWS Elastic Beanstalk configuration template to base a new one on. You can use it to define a AWS::ElasticBeanstalk::ConfigurationTemplate resource.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElasticBeanstalk;

var sourceConfigurationProperty = new SourceConfigurationProperty {
    ApplicationName = "applicationName",
    TemplateName = "templateName"
};

Synopsis

Constructors

SourceConfigurationProperty()

Properties

ApplicationName

The name of the application associated with the configuration.

TemplateName

The name of the configuration template.

Constructors

SourceConfigurationProperty()

public SourceConfigurationProperty()

Properties

ApplicationName

The name of the application associated with the configuration.

public string ApplicationName { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname

TemplateName

The name of the configuration template.

public string TemplateName { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename

Implements

CfnConfigurationTemplate.ISourceConfigurationProperty
Back to top Generated by DocFX