/*
* 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 worklink-2018-09-25.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.WorkLink.Model
{
///
/// This is the response object from the DescribeIdentityProviderConfiguration operation.
///
public partial class DescribeIdentityProviderConfigurationResponse : AmazonWebServiceResponse
{
private string _identityProviderSamlMetadata;
private IdentityProviderType _identityProviderType;
private string _serviceProviderSamlMetadata;
///
/// Gets and sets the property IdentityProviderSamlMetadata.
///
/// The SAML metadata document provided by the user’s identity provider.
///
///
[AWSProperty(Min=1, Max=204800)]
public string IdentityProviderSamlMetadata
{
get { return this._identityProviderSamlMetadata; }
set { this._identityProviderSamlMetadata = value; }
}
// Check to see if IdentityProviderSamlMetadata property is set
internal bool IsSetIdentityProviderSamlMetadata()
{
return this._identityProviderSamlMetadata != null;
}
///
/// Gets and sets the property IdentityProviderType.
///
/// The type of identity provider.
///
///
public IdentityProviderType IdentityProviderType
{
get { return this._identityProviderType; }
set { this._identityProviderType = value; }
}
// Check to see if IdentityProviderType property is set
internal bool IsSetIdentityProviderType()
{
return this._identityProviderType != null;
}
///
/// Gets and sets the property ServiceProviderSamlMetadata.
///
/// The SAML metadata document uploaded to the user’s identity provider.
///
///
[AWSProperty(Min=1, Max=204800)]
public string ServiceProviderSamlMetadata
{
get { return this._serviceProviderSamlMetadata; }
set { this._serviceProviderSamlMetadata = value; }
}
// Check to see if ServiceProviderSamlMetadata property is set
internal bool IsSetServiceProviderSamlMetadata()
{
return this._serviceProviderSamlMetadata != null;
}
}
}