CreateApplicationMessage
public struct CreateApplicationMessage : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of the application. Must be unique within your account.
Declaration
Swift
public let applicationName: String
-
Your description of the application.
Declaration
Swift
public let description: String?
-
Specifies an application resource lifecycle configuration to prevent your application from accumulating too many versions.
Declaration
Swift
public let resourceLifecycleConfig: ApplicationResourceLifecycleConfig?
-
Specifies the tags applied to the application. Elastic Beanstalk applies these tags only to the application. Environments that you create in the application don’t inherit the tags.
Declaration
Swift
public let tags: [Tag]?
-
Undocumented
Declaration
Swift
public init(applicationName: String, description: String? = nil, resourceLifecycleConfig: ApplicationResourceLifecycleConfig? = nil, tags: [Tag]? = nil)
-
Declaration
Swift
public func validate(name: String) throws