Skip to content

CloudWatchLogs / Client / describe_deliveries - missing fields in response #4680

@RhysRedbearIT

Description

@RhysRedbearIT

Describe the issue

https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/logs/client/describe_deliveries.html

Documentation shows 9 fields that should exist in the response in the deliveries list. We only get 4.

Is this a documentation mistake? Are these fields considered optional or only shown if special? Our test is an S3 output, but no deliveryDestinationType in the response, and no s3DeliveryConfiguration even though we have it set.

Example in documentation:

'deliveries': [
        {
            'id': 'string',
            'arn': 'string',
            'deliverySourceName': 'string',
            'deliveryDestinationArn': 'string',
            'deliveryDestinationType': 'S3'|'CWL'|'FH'|'XRAY',
            'recordFields': [
                'string',
            ],
            'fieldDelimiter': 'string',
            's3DeliveryConfiguration': {
                'suffixPath': 'string',
                'enableHiveCompatiblePath': True|False
            },
            'tags': {
                'string': 'string'
            }
        },

Python response:


'deliveries': [
    {
        'id': 'xx',
        'arn': 'arn:aws:logs:us-east-1:xx:delivery:xx',
        'deliverySourceName': 'CreatedByCloudFront-xx',
        'deliveryDestinationArn': 'arn:aws:logs:us-east-1:xx:delivery-destination:rbit-cloudfront-s3-destination-xx'
    },

Links

https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/logs/client/describe_deliveries.html

Metadata

Metadata

Labels

bugThis issue is a confirmed bug.cloudwatchlogsdocumentationThis is a problem with documentation.p3This is a minor priority issueresponse-requestedWaiting on additional information or feedback.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions