LayerVersionContentInput

public struct LayerVersionContentInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The Amazon S3 bucket of the layer archive.

    Declaration

    Swift

    public let s3Bucket: String?
  • The Amazon S3 key of the layer archive.

    Declaration

    Swift

    public let s3Key: String?
  • For versioned objects, the version of the layer archive object to use.

    Declaration

    Swift

    public let s3ObjectVersion: String?
  • The base64-encoded contents of the layer archive. AWS SDK and AWS CLI clients handle the encoding for you.

    Declaration

    Swift

    public let zipFile: Data?
  • Undocumented

    Declaration

    Swift

    public init(s3Bucket: String? = nil, s3Key: String? = nil, s3ObjectVersion: String? = nil, zipFile: Data? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws