getSecurityConfiguration method

Future<GetSecurityConfigurationResponse> getSecurityConfiguration({
  1. required String name,
})

Retrieves a specified security configuration.

May throw EntityNotFoundException. May throw InvalidInputException. May throw InternalServiceException. May throw OperationTimeoutException.

Parameter name : The name of the security configuration to retrieve.

Implementation

Future<GetSecurityConfigurationResponse> getSecurityConfiguration({
  required String name,
}) async {
  ArgumentError.checkNotNull(name, 'name');
  _s.validateStringLength(
    'name',
    name,
    1,
    255,
    isRequired: true,
  );
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'AWSGlue.GetSecurityConfiguration'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'Name': name,
    },
  );

  return GetSecurityConfigurationResponse.fromJson(jsonResponse.body);
}