Class: Aws::IAM::Types::UpdateSAMLProviderRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::UpdateSAMLProviderRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
When making an API call, you may pass UpdateSAMLProviderRequest data as a hash:
{
saml_metadata_document: "SAMLMetadataDocumentType", # required
saml_provider_arn: "arnType", # required
}
Instance Attribute Summary collapse
-
#saml_metadata_document ⇒ String
An XML document generated by an identity provider (IdP) that supports SAML 2.0.
-
#saml_provider_arn ⇒ String
The Amazon Resource Name (ARN) of the SAML provider to update.
Instance Attribute Details
#saml_metadata_document ⇒ String
An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer’s name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your organization’s IdP.
10675 10676 10677 10678 10679 |
# File 'lib/aws-sdk-iam/types.rb', line 10675 class UpdateSAMLProviderRequest < Struct.new( :saml_metadata_document, :saml_provider_arn) include Aws::Structure end |
#saml_provider_arn ⇒ String
The Amazon Resource Name (ARN) of the SAML provider to update.
For more information about ARNs, see [Amazon Resource Names (ARNs) and AWS Service Namespaces] in the *AWS General Reference*.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
10675 10676 10677 10678 10679 |
# File 'lib/aws-sdk-iam/types.rb', line 10675 class UpdateSAMLProviderRequest < Struct.new( :saml_metadata_document, :saml_provider_arn) include Aws::Structure end |