UpgradePublishedSchemaRequest

public struct UpgradePublishedSchemaRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ARN of the development schema with the changes used for the upgrade.

    Declaration

    Swift

    public let developmentSchemaArn: String
  • Used for testing whether the Development schema provided is backwards compatible, or not, with the publish schema provided by the user to be upgraded. If schema compatibility fails, an exception would be thrown else the call would succeed. This parameter is optional and defaults to false.

    Declaration

    Swift

    public let dryRun: Bool?
  • Identifies the minor version of the published schema that will be created. This parameter is NOT optional.

    Declaration

    Swift

    public let minorVersion: String
  • The ARN of the published schema to be upgraded.

    Declaration

    Swift

    public let publishedSchemaArn: String
  • Undocumented

    Declaration

    Swift

    public init(developmentSchemaArn: String, dryRun: Bool? = nil, minorVersion: String, publishedSchemaArn: String)
  • Declaration

    Swift

    public func validate(name: String) throws