access-analyzer/enablement/create-account-analyzer-stack-set.py [89:103]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  },
  Regions=all_regions,
  OperationPreferences={
    'FailureToleranceCount': 1,
    'MaxConcurrentCount': 10
  }
)

operation_id=response['OperationId']
print("Create Stack Instances Operation Id is {}".format((operation_id)))

waiter.wait(
    StackSetName=StackSetName,
    OperationId=operation_id
)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



access-analyzer/enablement/create-org-analyzer-stack-set.py [90:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  },
  Regions=all_regions,
   OperationPreferences={
     'FailureToleranceCount': 1,
     'MaxConcurrentCount': 10
   }
)

operation_id=response['OperationId']
print("Create Stack Instances Operation Id is {}".format((operation_id)))

waiter.wait(
    StackSetName=StackSetName,
    OperationId=operation_id
)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



