UpdateAppRequest

public struct UpdateAppRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The app ID.

    Declaration

    Swift

    public let appId: String
  • A Source object that specifies the app repository.

    Declaration

    Swift

    public let appSource: Source?
  • One or more user-defined key/value pairs to be added to the stack attributes.

    Declaration

    Swift

    public let attributes: [AppAttributesKeys : 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’s virtual host settings, with multiple domains separated by commas. For example: ‘www.example.com, example.com’

    Declaration

    Swift

    public let domains: [String]?
  • Whether SSL is enabled 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 variables’ names, values, and protected flag values - cannot exceed 20 KB. This limit should accommodate most if not all use cases. Exceeding it will cause an exception with the message, “Environment: is too large (maximum is 20 KB).” If you have specified one or more environment variables, you cannot modify the stack’s Chef version.

    Declaration

    Swift

    public let environment: [EnvironmentVariable]?
  • The app name.

    Declaration

    Swift

    public let name: String?
  • An SslConfiguration object with the SSL configuration.

    Declaration

    Swift

    public let sslConfiguration: SslConfiguration?
  • The app type.

    Declaration

    Swift

    public let type: AppType?
  • Undocumented

    Declaration

    Swift

    public init(appId: String, appSource: Source? = nil, attributes: [AppAttributesKeys : String]? = nil, dataSources: [DataSource]? = nil, description: String? = nil, domains: [String]? = nil, enableSsl: Bool? = nil, environment: [EnvironmentVariable]? = nil, name: String? = nil, sslConfiguration: SslConfiguration? = nil, type: AppType? = nil)