There are more AWS SDK examples available in the AWS Doc SDK Examples
Use DeleteCampaign
with an AWS SDK
The following code example shows how to use DeleteCampaign
.
- Java
-
- SDK for Java 2.x
-
Note
There's more on GitHub. Find the complete example and learn how to set up and run in the AWS Code Examples Repository
. public static void deleteSpecificCampaign(PersonalizeClient personalizeClient, String campaignArn) { try { DeleteCampaignRequest campaignRequest = DeleteCampaignRequest.builder() .campaignArn(campaignArn) .build(); personalizeClient.deleteCampaign(campaignRequest); } catch (PersonalizeException e) { System.err.println(e.awsErrorDetails().errorMessage()); System.exit(1); } }
-
For API details, see DeleteCampaign in AWS SDK for Java 2.x API Reference.
-
CreateSolutionVersion
DeleteEventTracker