describeAnalysisPermissions method

Future<DescribeAnalysisPermissionsResponse> describeAnalysisPermissions({
  1. required String analysisId,
  2. required String awsAccountId,
})

Provides the read and write permissions for an analysis.

May throw InvalidParameterValueException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw UnsupportedUserEditionException. May throw InternalFailureException.

Parameter analysisId : The ID of the analysis whose permissions you're describing. The ID is part of the analysis URL.

Parameter awsAccountId : The ID of the AWS account that contains the analysis whose permissions you're describing. You must be using the AWS account that the analysis is in.

Implementation

Future<DescribeAnalysisPermissionsResponse> describeAnalysisPermissions({
  required String analysisId,
  required String awsAccountId,
}) async {
  ArgumentError.checkNotNull(analysisId, 'analysisId');
  _s.validateStringLength(
    'analysisId',
    analysisId,
    1,
    2048,
    isRequired: true,
  );
  ArgumentError.checkNotNull(awsAccountId, 'awsAccountId');
  _s.validateStringLength(
    'awsAccountId',
    awsAccountId,
    12,
    12,
    isRequired: true,
  );
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/accounts/${Uri.encodeComponent(awsAccountId)}/analyses/${Uri.encodeComponent(analysisId)}/permissions',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeAnalysisPermissionsResponse.fromJson(response);
}