getEnvironmentBlueprint method

Future<GetEnvironmentBlueprintOutput> getEnvironmentBlueprint({
  1. required String domainIdentifier,
  2. required String identifier,
})

Gets an Amazon DataZone blueprint.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter domainIdentifier : The identifier of the domain in which this blueprint exists.

Parameter identifier : The ID of this Amazon DataZone blueprint.

Implementation

Future<GetEnvironmentBlueprintOutput> getEnvironmentBlueprint({
  required String domainIdentifier,
  required String identifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/v2/domains/${Uri.encodeComponent(domainIdentifier)}/environment-blueprints/${Uri.encodeComponent(identifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetEnvironmentBlueprintOutput.fromJson(response);
}