module Aws::SSO
This module provides support for AWS Single Sign-On. This module is available in the ‘aws-sdk-core` gem.
# Client
The {Client} class provides one method for each API operation. Operation methods each accept a hash of request parameters and return a response structure.
sso = Aws::SSO::Client.new resp = sso.get_role_credentials(params)
See {Client} for more information.
# Errors
Errors
returned from AWS Single Sign-On are defined in the {Errors} module and all extend {Errors::ServiceError}.
begin # do stuff rescue Aws::SSO::Errors::ServiceError # rescues all AWS Single Sign-On API errors end
See {Errors} for more information.
@!group service
WARNING ABOUT GENERATED CODE
This file is generated. See the contributing guide for more information: github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
WARNING ABOUT GENERATED CODE
WARNING ABOUT GENERATED CODE
This file is generated. See the contributing guide for more information: github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
WARNING ABOUT GENERATED CODE
WARNING ABOUT GENERATED CODE
This file is generated. See the contributing guide for more information: github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
WARNING ABOUT GENERATED CODE
WARNING ABOUT GENERATED CODE
This file is generated. See the contributing guide for more information: github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
WARNING ABOUT GENERATED CODE
WARNING ABOUT GENERATED CODE
This file is generated. See the contributing guide for more information: github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
WARNING ABOUT GENERATED CODE
WARNING ABOUT GENERATED CODE
This file is generated. See the contributing guide for more information: github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
WARNING ABOUT GENERATED CODE
WARNING ABOUT GENERATED CODE
This file is generated. See the contributing guide for more information: github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
WARNING ABOUT GENERATED CODE
WARNING ABOUT GENERATED CODE
This file is generated. See the contributing guide for more information: github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
WARNING ABOUT GENERATED CODE
Constants
- EndpointParameters
-
Endpoint parameters used to influence endpoints per request.
@!attribute region
The AWS region used to dispatch the request. @return [String]
@!attribute use_dual_stack
When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error. @return [Boolean]
@!attribute use_fips
When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error. @return [Boolean]
@!attribute endpoint
Override the endpoint used to send this request @return [String]
- GEM_VERSION
Public Class Methods
Source
# File lib/aws-sdk-sso/endpoint_parameters.rb, line 60 def self.create(config, options={}) new({ region: config.region, use_dual_stack: config.use_dualstack_endpoint, use_fips: config.use_fips_endpoint, endpoint: (config.endpoint.to_s unless config.regional_endpoint), }.merge(options)) end
Source
# File lib/aws-sdk-sso/endpoint_parameters.rb, line 51 def initialize(options = {}) self[:region] = options[:region] self[:use_dual_stack] = options[:use_dual_stack] self[:use_dual_stack] = false if self[:use_dual_stack].nil? self[:use_fips] = options[:use_fips] self[:use_fips] = false if self[:use_fips].nil? self[:endpoint] = options[:endpoint] end