activateOrganizationsAccess method

Future<void> activateOrganizationsAccess()

Activate trusted access with Organizations. With trusted access between StackSets and Organizations activated, the management account has permissions to create and manage StackSets for your organization.

May throw InvalidOperationException. May throw OperationNotFoundException.

Implementation

Future<void> activateOrganizationsAccess() async {
  final $request = <String, String>{};
  await _protocol.send(
    $request,
    action: 'ActivateOrganizationsAccess',
    version: '2010-05-15',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    resultWrapper: 'ActivateOrganizationsAccessResult',
  );
}