describeIdentityProviderConfiguration method
Future<DescribeIdentityProviderConfigurationResponse>
describeIdentityProviderConfiguration({
- required String fleetArn,
Describes the identity provider configuration of the specified fleet.
May throw UnauthorizedException. May throw InternalServerErrorException. May throw InvalidRequestException. May throw ResourceNotFoundException. May throw TooManyRequestsException.
Parameter fleetArn
:
The ARN of the fleet.
Implementation
Future<DescribeIdentityProviderConfigurationResponse>
describeIdentityProviderConfiguration({
required String fleetArn,
}) async {
ArgumentError.checkNotNull(fleetArn, 'fleetArn');
_s.validateStringLength(
'fleetArn',
fleetArn,
20,
2048,
isRequired: true,
);
final $payload = <String, dynamic>{
'FleetArn': fleetArn,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/describeIdentityProviderConfiguration',
exceptionFnMap: _exceptionFns,
);
return DescribeIdentityProviderConfigurationResponse.fromJson(response);
}