amazonka-rds-1.5.0: Amazon Relational Database Service SDK.

Copyright(c) 2013-2017 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.RDS.DescribeDBLogFiles

Contents

Description

Returns a list of DB log files for the DB instance.

This operation returns paginated results.

Synopsis

Creating a Request

describeDBLogFiles Source #

Creates a value of DescribeDBLogFiles with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • ddlfFilenameContains - Filters the available log files for log file names that contain the specified string.
  • ddlfFilters - This parameter is not currently supported.
  • ddlfFileSize - Filters the available log files for files larger than the specified size.
  • ddlfFileLastWritten - Filters the available log files for files written since the specified date, in POSIX timestamp format with milliseconds.
  • ddlfMarker - The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.
  • ddlfMaxRecords - The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.
  • ddlfDBInstanceIdentifier - The customer-assigned name of the DB instance that contains the log files you want to list. Constraints: * Must match the identifier of an existing DBInstance.

data DescribeDBLogFiles Source #

See: describeDBLogFiles smart constructor.

Instances

Eq DescribeDBLogFiles Source # 
Data DescribeDBLogFiles Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DescribeDBLogFiles -> c DescribeDBLogFiles #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DescribeDBLogFiles #

toConstr :: DescribeDBLogFiles -> Constr #

dataTypeOf :: DescribeDBLogFiles -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c DescribeDBLogFiles) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DescribeDBLogFiles) #

gmapT :: (forall b. Data b => b -> b) -> DescribeDBLogFiles -> DescribeDBLogFiles #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DescribeDBLogFiles -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DescribeDBLogFiles -> r #

gmapQ :: (forall d. Data d => d -> u) -> DescribeDBLogFiles -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DescribeDBLogFiles -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DescribeDBLogFiles -> m DescribeDBLogFiles #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DescribeDBLogFiles -> m DescribeDBLogFiles #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DescribeDBLogFiles -> m DescribeDBLogFiles #

Read DescribeDBLogFiles Source # 
Show DescribeDBLogFiles Source # 
Generic DescribeDBLogFiles Source # 
Hashable DescribeDBLogFiles Source # 
NFData DescribeDBLogFiles Source # 

Methods

rnf :: DescribeDBLogFiles -> () #

AWSPager DescribeDBLogFiles Source # 
AWSRequest DescribeDBLogFiles Source # 
ToQuery DescribeDBLogFiles Source # 
ToPath DescribeDBLogFiles Source # 
ToHeaders DescribeDBLogFiles Source # 
type Rep DescribeDBLogFiles Source # 
type Rep DescribeDBLogFiles = D1 (MetaData "DescribeDBLogFiles" "Network.AWS.RDS.DescribeDBLogFiles" "amazonka-rds-1.5.0-4pv5DetELOaBXetw2fB1GM" False) (C1 (MetaCons "DescribeDBLogFiles'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_ddlfFilenameContains") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_ddlfFilters") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Filter]))) (S1 (MetaSel (Just Symbol "_ddlfFileSize") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Integer))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_ddlfFileLastWritten") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Integer))) (S1 (MetaSel (Just Symbol "_ddlfMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_ddlfMaxRecords") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Int))) (S1 (MetaSel (Just Symbol "_ddlfDBInstanceIdentifier") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))))
type Rs DescribeDBLogFiles Source # 

Request Lenses

ddlfFilenameContains :: Lens' DescribeDBLogFiles (Maybe Text) Source #

Filters the available log files for log file names that contain the specified string.

ddlfFilters :: Lens' DescribeDBLogFiles [Filter] Source #

This parameter is not currently supported.

ddlfFileSize :: Lens' DescribeDBLogFiles (Maybe Integer) Source #

Filters the available log files for files larger than the specified size.

ddlfFileLastWritten :: Lens' DescribeDBLogFiles (Maybe Integer) Source #

Filters the available log files for files written since the specified date, in POSIX timestamp format with milliseconds.

ddlfMarker :: Lens' DescribeDBLogFiles (Maybe Text) Source #

The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.

ddlfMaxRecords :: Lens' DescribeDBLogFiles (Maybe Int) Source #

The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.

ddlfDBInstanceIdentifier :: Lens' DescribeDBLogFiles Text Source #

The customer-assigned name of the DB instance that contains the log files you want to list. Constraints: * Must match the identifier of an existing DBInstance.

Destructuring the Response

describeDBLogFilesResponse Source #

Creates a value of DescribeDBLogFilesResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data DescribeDBLogFilesResponse Source #

The response from a call to DescribeDBLogFiles .

See: describeDBLogFilesResponse smart constructor.

Instances

Eq DescribeDBLogFilesResponse Source # 
Data DescribeDBLogFilesResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DescribeDBLogFilesResponse -> c DescribeDBLogFilesResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DescribeDBLogFilesResponse #

toConstr :: DescribeDBLogFilesResponse -> Constr #

dataTypeOf :: DescribeDBLogFilesResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c DescribeDBLogFilesResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DescribeDBLogFilesResponse) #

gmapT :: (forall b. Data b => b -> b) -> DescribeDBLogFilesResponse -> DescribeDBLogFilesResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DescribeDBLogFilesResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DescribeDBLogFilesResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> DescribeDBLogFilesResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DescribeDBLogFilesResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DescribeDBLogFilesResponse -> m DescribeDBLogFilesResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DescribeDBLogFilesResponse -> m DescribeDBLogFilesResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DescribeDBLogFilesResponse -> m DescribeDBLogFilesResponse #

Read DescribeDBLogFilesResponse Source # 
Show DescribeDBLogFilesResponse Source # 
Generic DescribeDBLogFilesResponse Source # 
NFData DescribeDBLogFilesResponse Source # 
type Rep DescribeDBLogFilesResponse Source # 
type Rep DescribeDBLogFilesResponse = D1 (MetaData "DescribeDBLogFilesResponse" "Network.AWS.RDS.DescribeDBLogFiles" "amazonka-rds-1.5.0-4pv5DetELOaBXetw2fB1GM" False) (C1 (MetaCons "DescribeDBLogFilesResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_ddlfrsDescribeDBLogFiles") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [DescribeDBLogFilesDetails]))) ((:*:) (S1 (MetaSel (Just Symbol "_ddlfrsMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_ddlfrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int)))))

Response Lenses

ddlfrsMarker :: Lens' DescribeDBLogFilesResponse (Maybe Text) Source #

A pagination token that can be used in a subsequent DescribeDBLogFiles request.