AWSApiConfig constructor

const AWSApiConfig({
  1. required EndpointType endpointType,
  2. required String endpoint,
  3. required String region,
  4. required APIAuthorizationType authorizationType,
  5. String? apiKey,
})

Implementation

const AWSApiConfig({
  required this.endpointType,
  required this.endpoint,
  required this.region,
  required this.authorizationType,
  this.apiKey,
});