CreateConfigurationTemplateMessage
public struct CreateConfigurationTemplateMessage : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of the Elastic Beanstalk application to associate with this configuration template.
Declaration
Swift
public let applicationName: String
-
An optional description for this configuration.
Declaration
Swift
public let description: String?
-
The ID of an environment whose settings you want to use to create the configuration template. You must specify EnvironmentId if you don’t specify PlatformArn, SolutionStackName, or SourceConfiguration.
Declaration
Swift
public let environmentId: String?
-
Option values for the Elastic Beanstalk configuration, such as the instance type. If specified, these values override the values obtained from the solution stack or the source configuration template. For a complete list of Elastic Beanstalk configuration options, see Option Values in the AWS Elastic Beanstalk Developer Guide.
Declaration
Swift
public let optionSettings: [ConfigurationOptionSetting]?
-
The Amazon Resource Name (ARN) of the custom platform. For more information, see Custom Platforms in the AWS Elastic Beanstalk Developer Guide. If you specify PlatformArn, then don’t specify SolutionStackName.
Declaration
Swift
public let platformArn: String?
-
The name of an Elastic Beanstalk solution stack (platform version) that this configuration uses. For example, 64bit Amazon Linux 2013.09 running Tomcat 7 Java 7. A solution stack specifies the operating system, runtime, and application server for a configuration template. It also determines the set of configuration options as well as the possible and default values. For more information, see Supported Platforms in the AWS Elastic Beanstalk Developer Guide. You must specify SolutionStackName if you don’t specify PlatformArn, EnvironmentId, or SourceConfiguration. Use the ListAvailableSolutionStacks API to obtain a list of available solution stacks.
Declaration
Swift
public let solutionStackName: String?
-
An Elastic Beanstalk configuration template to base this one on. If specified, Elastic Beanstalk uses the configuration values from the specified configuration template to create a new configuration. Values specified in OptionSettings override any values obtained from the SourceConfiguration. You must specify SourceConfiguration if you don’t specify PlatformArn, EnvironmentId, or SolutionStackName. Constraint: If both solution stack name and source configuration are specified, the solution stack of the source configuration template must match the specified solution stack name.
Declaration
Swift
public let sourceConfiguration: SourceConfiguration?
-
Specifies the tags applied to the configuration template.
Declaration
Swift
public let tags: [Tag]?
-
The name of the configuration template. Constraint: This name must be unique per application.
Declaration
Swift
public let templateName: String
-
init(applicationName:description:environmentId:optionSettings:platformArn:solutionStackName:sourceConfiguration:tags:templateName:)
Undocumented
Declaration
Swift
public init(applicationName: String, description: String? = nil, environmentId: String? = nil, optionSettings: [ConfigurationOptionSetting]? = nil, platformArn: String? = nil, solutionStackName: String? = nil, sourceConfiguration: SourceConfiguration? = nil, tags: [Tag]? = nil, templateName: String)
-
Declaration
Swift
public func validate(name: String) throws