BuildArtifacts

public struct BuildArtifacts : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • An identifier for this artifact definition.

    Declaration

    Swift

    public let artifactIdentifier: String?
  • Information that tells you if encryption for build artifacts is disabled.

    Declaration

    Swift

    public let encryptionDisabled: Bool?
  • Information about the location of the build artifacts.

    Declaration

    Swift

    public let location: String?
  • The MD5 hash of the build artifact. You can use this hash along with a checksum tool to confirm file integrity and authenticity. This value is available only if the build project’s packaging value is set to ZIP.

    Declaration

    Swift

    public let md5sum: String?
  • If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

    Declaration

    Swift

    public let overrideArtifactName: Bool?
  • The SHA-256 hash of the build artifact. You can use this hash along with a checksum tool to confirm file integrity and authenticity. This value is available only if the build project’s packaging value is set to ZIP.

    Declaration

    Swift

    public let sha256sum: String?
  • Undocumented

    Declaration

    Swift

    public init(artifactIdentifier: String? = nil, encryptionDisabled: Bool? = nil, location: String? = nil, md5sum: String? = nil, overrideArtifactName: Bool? = nil, sha256sum: String? = nil)