PolicyAttributeTypeDescription

public struct PolicyAttributeTypeDescription : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the attribute.

    Declaration

    Swift

    public let attributeName: String?
  • The type of the attribute. For example, Boolean or Integer.

    Declaration

    Swift

    public let attributeType: String?
  • The cardinality of the attribute. Valid values: ONE(1) : Single value required ZERO_OR_ONE(0..1) : Up to one value is allowed ZERO_OR_MORE(0..*) : Optional. Multiple values are allowed ONE_OR_MORE(1..*0) : Required. Multiple values are allowed

    Declaration

    Swift

    public let cardinality: String?
  • The default value of the attribute, if applicable.

    Declaration

    Swift

    public let defaultValue: String?
  • A description of the attribute.

    Declaration

    Swift

    public let description: String?
  • Undocumented

    Declaration

    Swift

    public init(attributeName: String? = nil, attributeType: String? = nil, cardinality: String? = nil, defaultValue: String? = nil, description: String? = nil)