# File lib/fog/aws/requests/rds/describe_db_cluster_snapshots.rb, line 19
        def describe_db_cluster_snapshots(opts={})
          params                                = {}
          params['SnapshotType']                = opts[:type]        if opts[:type]
          params['DBClusterIdentifier']         = opts[:identifier]  if opts[:identifier]
          params['DBClusterSnapshotIdentifier'] = opts[:snapshot_id] if opts[:snapshot_id]
          params['Marker']                      = opts[:marker]      if opts[:marker]
          params['MaxRecords']                  = opts[:max_records] if opts[:max_records]
          request({
            'Action' => 'DescribeDBClusterSnapshots',
            :parser  => Fog::Parsers::AWS::RDS::DescribeDBClusterSnapshots.new
          }.merge(params))
        end