class Fog::AWS::RDS::Clusters
Public Instance Methods
Source
# File lib/fog/aws/models/rds/clusters.rb, line 9 def all data = service.describe_db_clusters.body['DescribeDBClustersResult']['DBClusters'] load(data) end
Source
# File lib/fog/aws/models/rds/clusters.rb, line 14 def get(identity) data = service.describe_db_clusters(identity).body['DescribeDBClustersResult']['DBClusters'].first new(data) rescue Fog::AWS::RDS::NotFound nil end