App
public struct App : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The app ID.
Declaration
Swift
public let appId: String?
-
A Source object that describes the app repository.
Declaration
Swift
public let appSource: Source?
-
The stack attributes.
Declaration
Swift
public let attributes: [AppAttributesKeys : String]?
-
When the app was created.
Declaration
Swift
public let createdAt: String?
-
The app’s data sources.
Declaration
Swift
public let dataSources: [DataSource]?
-
A description of the app.
Declaration
Swift
public let description: String?
-
The app vhost settings with multiple domains separated by commas. For example: ‘www.example.com, example.com’
Declaration
Swift
public let domains: [String]?
-
Whether to enable SSL for the app.
Declaration
Swift
public let enableSsl: Bool?
-
An array of EnvironmentVariable objects that specify environment variables to be associated with the app. After you deploy the app, these variables are defined on the associated app server instances. For more information, see Environment Variables. There is no specific limit on the number of environment variables. However, the size of the associated data structure - which includes the variable names, values, and protected flag values - cannot exceed 20 KB. This limit should accommodate most if not all use cases, but if you do exceed it, you will cause an exception (API) with an “Environment: is too large (maximum is 20 KB)” message.
Declaration
Swift
public let environment: [EnvironmentVariable]?
-
The app name.
Declaration
Swift
public let name: String?
-
The app’s short name.
Declaration
Swift
public let shortname: String?
-
An SslConfiguration object with the SSL configuration.
Declaration
Swift
public let sslConfiguration: SslConfiguration?
-
The app stack ID.
Declaration
Swift
public let stackId: String?
-
The app type.
Declaration
Swift
public let type: AppType?
-
init(appId:appSource:attributes:createdAt:dataSources:description:domains:enableSsl:environment:name:shortname:sslConfiguration:stackId:type:)
Undocumented
Declaration
Swift
public init(appId: String? = nil, appSource: Source? = nil, attributes: [AppAttributesKeys : String]? = nil, createdAt: String? = nil, dataSources: [DataSource]? = nil, description: String? = nil, domains: [String]? = nil, enableSsl: Bool? = nil, environment: [EnvironmentVariable]? = nil, name: String? = nil, shortname: String? = nil, sslConfiguration: SslConfiguration? = nil, stackId: String? = nil, type: AppType? = nil)