CopyOptionGroupMessage

public struct CopyOptionGroupMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The identifier or ARN for the source option group. For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon RDS User Guide. Constraints: Must specify a valid option group. If the source option group is in the same AWS Region as the copy, specify a valid option group identifier, for example my-option-group, or a valid ARN. If the source option group is in a different AWS Region than the copy, specify a valid option group ARN, for example arn:aws:rds:us-west-2:123456789012:og:special-options.

    Declaration

    Swift

    public let sourceOptionGroupIdentifier: String
  • Undocumented

    Declaration

    Swift

    public let tags: [Tag]?
  • The description for the copied option group.

    Declaration

    Swift

    public let targetOptionGroupDescription: String
  • The identifier for the copied option group. Constraints: Can’t be null, empty, or blank Must contain from 1 to 255 letters, numbers, or hyphens First character must be a letter Can’t end with a hyphen or contain two consecutive hyphens Example: my-option-group

    Declaration

    Swift

    public let targetOptionGroupIdentifier: String
  • Undocumented

    Declaration

    Swift

    public init(sourceOptionGroupIdentifier: String, tags: [Tag]? = nil, targetOptionGroupDescription: String, targetOptionGroupIdentifier: String)