DescribeEnvironmentsMessage
public struct DescribeEnvironmentsMessage : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application.
Declaration
Swift
public let applicationName: String?
-
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified IDs.
Declaration
Swift
public let environmentIds: [String]?
-
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified names.
Declaration
Swift
public let environmentNames: [String]?
-
If specified when IncludeDeleted is set to true, then environments deleted after this date are displayed.
Declaration
Swift
public let includedDeletedBackTo: TimeStamp?
-
Indicates whether to include deleted environments: true: Environments that have been deleted after IncludedDeletedBackTo are displayed. false: Do not include deleted environments.
Declaration
Swift
public let includeDeleted: Bool?
-
For a paginated request. Specify a maximum number of environments to include in each response. If no MaxRecords is specified, all available environments are retrieved in a single response.
Declaration
Swift
public let maxRecords: Int?
-
For a paginated request. Specify a token from a previous response page to retrieve the next response page. All other parameter values must be identical to the ones specified in the initial request. If no NextToken is specified, the first page is retrieved.
Declaration
Swift
public let nextToken: String?
-
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application version.
Declaration
Swift
public let versionLabel: String?
-
init(applicationName:environmentIds:environmentNames:includedDeletedBackTo:includeDeleted:maxRecords:nextToken:versionLabel:)
Undocumented
Declaration
Swift
public init(applicationName: String? = nil, environmentIds: [String]? = nil, environmentNames: [String]? = nil, includedDeletedBackTo: TimeStamp? = nil, includeDeleted: Bool? = nil, maxRecords: Int? = nil, nextToken: String? = nil, versionLabel: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws