Find an API

Search public APIs with auth details & Postman guides

← All APIs

Amazon Data Lifecycle Manager

amazonaws · Cloud

Cloud No Auth Free & Open cloud Sandbox

Amazon Data Lifecycle Manager With Amazon Data Lifecycle Manager, you can manage the lifecycle of your Amazon Web Services resources. You create lifecycle policies, which are used to automate operations on the specified resources. Amazon Data Lifecycle Manager supports Amazon EBS volumes and snapshots. For information about using Amazon Data Lifecycle Manager with Amazon EBS, see

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET GetLifecyclePolicies

Gets summary information about all or the specified data lifecycle policies. To get complete information about a policy, use GetLifecyclePolicy .

https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies?state=ENABLED&policyIds=example&tagsToAdd=example&targetTags=example&resourceTypes=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies?state=ENABLED&policyIds=example&tagsToAdd=example&targetTags=example&resourceTypes=example"
import requests
params = {
    "state": "ENABLED",
    "policyIds": "example",
    "tagsToAdd": "example",
    "targetTags": "example",
    "resourceTypes": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies');
url.searchParams.set('state', 'ENABLED');
url.searchParams.set('policyIds', 'example');
url.searchParams.set('tagsToAdd', 'example');
url.searchParams.set('targetTags', 'example');
url.searchParams.set('resourceTypes', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies")
	q := baseURL.Query()
	q.Set("state", "ENABLED")
	q.Set("policyIds", "example")
	q.Set("tagsToAdd", "example")
	q.Set("targetTags", "example")
	q.Set("resourceTypes", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies")
uri.query = URI.encode_www_form({
  "state" => "ENABLED",
  "policyIds" => "example",
  "tagsToAdd" => "example",
  "targetTags" => "example",
  "resourceTypes" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies?" . http_build_query([
    "state" => "ENABLED",
    "policyIds" => "example",
    "tagsToAdd" => "example",
    "targetTags" => "example",
    "resourceTypes" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET GetLifecyclePolicy

Gets detailed information about the specified lifecycle policy.

https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies/{policyId}

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies/{policyId}/"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies/{policyId}/",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies/{policyId}/';

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies/{policyId}/"
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies/{policyId}/")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/policies/{policyId}/";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET ListTagsForResource

Lists the tags for the specified resource.

https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/tags/{resourceArn}

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/tags/{resourceArn}"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/tags/{resourceArn}",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/tags/{resourceArn}';

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/tags/{resourceArn}"
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/tags/{resourceArn}")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/tags/{resourceArn}";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Amazon Data Lifecycle Manager?

Amazon Data Lifecycle Manager is a Cloud API. Developers commonly use cloud APIs for:

  • provisioning and managing cloud infrastructure
  • automating deployments and container orchestration
  • monitoring uptime and performance metrics
  • managing storage buckets and databases
  • setting up auto-scaling and load balancing

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Amazon Data Lifecycle Manager is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗