deleteEnvironmentBlueprintConfiguration method
Deletes the blueprint configuration in Amazon DataZone.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ValidationException.
Parameter domainIdentifier :
The ID of the Amazon DataZone domain in which the blueprint configuration
is deleted.
Parameter environmentBlueprintIdentifier :
The ID of the blueprint the configuration of which is deleted.
Implementation
Future<void> deleteEnvironmentBlueprintConfiguration({
required String domainIdentifier,
required String environmentBlueprintIdentifier,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/v2/domains/${Uri.encodeComponent(domainIdentifier)}/environment-blueprint-configurations/${Uri.encodeComponent(environmentBlueprintIdentifier)}',
exceptionFnMap: _exceptionFns,
);
}