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
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:
Python response:
Links
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/logs/client/describe_deliveries.html