describeCompanyNetworkConfiguration method

Future<DescribeCompanyNetworkConfigurationResponse> describeCompanyNetworkConfiguration({
  1. required String fleetArn,
})

Describes the networking configuration to access the internal websites associated with 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<DescribeCompanyNetworkConfigurationResponse>
    describeCompanyNetworkConfiguration({
  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: '/describeCompanyNetworkConfiguration',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeCompanyNetworkConfigurationResponse.fromJson(response);
}