GrantConstraints

public struct GrantConstraints : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A list of key-value pairs that must match the encryption context in the cryptographic operation request. The grant allows the operation only when the encryption context in the request is the same as the encryption context specified in this constraint.

    Declaration

    Swift

    public let encryptionContextEquals: [String : String]?
  • A list of key-value pairs that must be included in the encryption context of the cryptographic operation request. The grant allows the cryptographic operation only when the encryption context in the request includes the key-value pairs specified in this constraint, although it can include additional key-value pairs.

    Declaration

    Swift

    public let encryptionContextSubset: [String : String]?
  • Undocumented

    Declaration

    Swift

    public init(encryptionContextEquals: [String : String]? = nil, encryptionContextSubset: [String : String]? = nil)