// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 // Do not modify this file. This file is machine generated, and any changes to it will be overwritten. using System; using AWS.EncryptionSDK.Core; namespace AWS.EncryptionSDK.Core { public class CreateAwsKmsMultiKeyringInput { private string _generator; private System.Collections.Generic.List _kmsKeyIds; private AWS.EncryptionSDK.Core.IClientSupplier _clientSupplier; private System.Collections.Generic.List _grantTokens; public string Generator { get { return this._generator; } set { this._generator = value; } } internal bool IsSetGenerator() { return this._generator != null; } public System.Collections.Generic.List KmsKeyIds { get { return this._kmsKeyIds; } set { this._kmsKeyIds = value; } } internal bool IsSetKmsKeyIds() { return this._kmsKeyIds != null; } public AWS.EncryptionSDK.Core.IClientSupplier ClientSupplier { get { return this._clientSupplier; } set { this._clientSupplier = value; } } internal bool IsSetClientSupplier() { return this._clientSupplier != null; } public System.Collections.Generic.List GrantTokens { get { return this._grantTokens; } set { this._grantTokens = value; } } internal bool IsSetGrantTokens() { return this._grantTokens != null; } public void Validate() { } } }