EntitlementValue
public struct EntitlementValue : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember] -
The BooleanValue field will be populated with a boolean value when the entitlement is a boolean type. Otherwise, the field will not be set.
Declaration
Swift
public let booleanValue: Bool? -
The DoubleValue field will be populated with a double value when the entitlement is a double type. Otherwise, the field will not be set.
Declaration
Swift
public let doubleValue: Double? -
The IntegerValue field will be populated with an integer value when the entitlement is an integer type. Otherwise, the field will not be set.
Declaration
Swift
public let integerValue: Int? -
The StringValue field will be populated with a string value when the entitlement is a string type. Otherwise, the field will not be set.
Declaration
Swift
public let stringValue: String? -
Undocumented
Declaration
Swift
public init(booleanValue: Bool? = nil, doubleValue: Double? = nil, integerValue: Int? = nil, stringValue: String? = nil)
View on GitHub
EntitlementValue Structure Reference