enableSharingWithAwsOrganization method

Future<EnableSharingWithAwsOrganizationResponse> enableSharingWithAwsOrganization()

Enables resource sharing within your AWS Organization.

The caller must be the master account for the AWS Organization.

May throw OperationNotPermittedException. May throw ServerInternalException. May throw ServiceUnavailableException.

Implementation

Future<EnableSharingWithAwsOrganizationResponse>
    enableSharingWithAwsOrganization() async {
  final response = await _protocol.send(
    payload: null,
    method: 'POST',
    requestUri: '/enablesharingwithawsorganization',
    exceptionFnMap: _exceptionFns,
  );
  return EnableSharingWithAwsOrganizationResponse.fromJson(response);
}