/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the sso-admin-2020-07-20.normal.json service model. */ using System; using Amazon.Runtime; namespace Amazon.SSOAdmin { /// /// Constants used for properties of type InstanceAccessControlAttributeConfigurationStatus. /// public class InstanceAccessControlAttributeConfigurationStatus : ConstantClass { /// /// Constant CREATION_FAILED for InstanceAccessControlAttributeConfigurationStatus /// public static readonly InstanceAccessControlAttributeConfigurationStatus CREATION_FAILED = new InstanceAccessControlAttributeConfigurationStatus("CREATION_FAILED"); /// /// Constant CREATION_IN_PROGRESS for InstanceAccessControlAttributeConfigurationStatus /// public static readonly InstanceAccessControlAttributeConfigurationStatus CREATION_IN_PROGRESS = new InstanceAccessControlAttributeConfigurationStatus("CREATION_IN_PROGRESS"); /// /// Constant ENABLED for InstanceAccessControlAttributeConfigurationStatus /// public static readonly InstanceAccessControlAttributeConfigurationStatus ENABLED = new InstanceAccessControlAttributeConfigurationStatus("ENABLED"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public InstanceAccessControlAttributeConfigurationStatus(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static InstanceAccessControlAttributeConfigurationStatus FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator InstanceAccessControlAttributeConfigurationStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type PrincipalType. /// public class PrincipalType : ConstantClass { /// /// Constant GROUP for PrincipalType /// public static readonly PrincipalType GROUP = new PrincipalType("GROUP"); /// /// Constant USER for PrincipalType /// public static readonly PrincipalType USER = new PrincipalType("USER"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public PrincipalType(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static PrincipalType FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator PrincipalType(string value) { return FindValue(value); } } /// /// Constants used for properties of type ProvisioningStatus. /// public class ProvisioningStatus : ConstantClass { /// /// Constant LATEST_PERMISSION_SET_NOT_PROVISIONED for ProvisioningStatus /// public static readonly ProvisioningStatus LATEST_PERMISSION_SET_NOT_PROVISIONED = new ProvisioningStatus("LATEST_PERMISSION_SET_NOT_PROVISIONED"); /// /// Constant LATEST_PERMISSION_SET_PROVISIONED for ProvisioningStatus /// public static readonly ProvisioningStatus LATEST_PERMISSION_SET_PROVISIONED = new ProvisioningStatus("LATEST_PERMISSION_SET_PROVISIONED"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public ProvisioningStatus(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static ProvisioningStatus FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator ProvisioningStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type ProvisionTargetType. /// public class ProvisionTargetType : ConstantClass { /// /// Constant ALL_PROVISIONED_ACCOUNTS for ProvisionTargetType /// public static readonly ProvisionTargetType ALL_PROVISIONED_ACCOUNTS = new ProvisionTargetType("ALL_PROVISIONED_ACCOUNTS"); /// /// Constant AWS_ACCOUNT for ProvisionTargetType /// public static readonly ProvisionTargetType AWS_ACCOUNT = new ProvisionTargetType("AWS_ACCOUNT"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public ProvisionTargetType(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static ProvisionTargetType FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator ProvisionTargetType(string value) { return FindValue(value); } } /// /// Constants used for properties of type StatusValues. /// public class StatusValues : ConstantClass { /// /// Constant FAILED for StatusValues /// public static readonly StatusValues FAILED = new StatusValues("FAILED"); /// /// Constant IN_PROGRESS for StatusValues /// public static readonly StatusValues IN_PROGRESS = new StatusValues("IN_PROGRESS"); /// /// Constant SUCCEEDED for StatusValues /// public static readonly StatusValues SUCCEEDED = new StatusValues("SUCCEEDED"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public StatusValues(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static StatusValues FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator StatusValues(string value) { return FindValue(value); } } /// /// Constants used for properties of type TargetType. /// public class TargetType : ConstantClass { /// /// Constant AWS_ACCOUNT for TargetType /// public static readonly TargetType AWS_ACCOUNT = new TargetType("AWS_ACCOUNT"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public TargetType(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static TargetType FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator TargetType(string value) { return FindValue(value); } } }