S3Location

public struct S3Location : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the Amazon S3 bucket where the application revision is stored.

    Declaration

    Swift

    public let bucket: String?
  • The file type of the application revision. Must be one of the following: tar: A tar archive file. tgz: A compressed tar archive file. zip: A zip archive file.

    Declaration

    Swift

    public let bundleType: BundleType?
  • The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision. If the ETag is not specified as an input parameter, ETag validation of the object is skipped.

    Declaration

    Swift

    public let eTag: String?
  • key

    The name of the Amazon S3 object that represents the bundled artifacts for the application revision.

    Declaration

    Swift

    public let key: String?
  • A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision. If the version is not specified, the system uses the most recent version by default.

    Declaration

    Swift

    public let version: String?
  • Undocumented

    Declaration

    Swift

    public init(bucket: String? = nil, bundleType: BundleType? = nil, eTag: String? = nil, key: String? = nil, version: String? = nil)