getEnvironmentBlueprintConfiguration method

Future<GetEnvironmentBlueprintConfigurationOutput> getEnvironmentBlueprintConfiguration({
  1. required String domainIdentifier,
  2. required String environmentBlueprintIdentifier,
})

Gets the blueprint configuration in Amazon DataZone.

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

Parameter domainIdentifier : The ID of the Amazon DataZone domain where this blueprint exists.

Parameter environmentBlueprintIdentifier : He ID of the blueprint.

Implementation

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