CreateEnvironmentRequest

public struct CreateEnvironmentRequest : AWSShape

Undocumented

  • Declaration

    Swift

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

    Declaration

    Swift

    public let applicationId: String
  • A description of the environment.

    Declaration

    Swift

    public let description: String?
  • Amazon CloudWatch alarms to monitor during the deployment process.

    Declaration

    Swift

    public let monitors: [Monitor]?
  • A name for the environment.

    Declaration

    Swift

    public let name: String
  • Metadata to assign to the environment. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.

    Declaration

    Swift

    public let tags: [String : String]?
  • Undocumented

    Declaration

    Swift

    public init(applicationId: String, description: String? = nil, monitors: [Monitor]? = nil, name: String, tags: [String : String]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws