I have dynamodb arn string and want to combine manually about the string of stream arn.
arn:aws:dynamodb:us-east-1:123456789012:table/books_table
arn:aws:dynamodb:us-east-1:123456789012:table/books_table/stream/2015-05-11T21:21:33.291
Any one who knows how to get label in aws cloudformation of '2015-05-11T21:21:33.291' and give me example combine the dynamodb arn string to dynamodb stream arn string.
ps:
I can not use:
Fn::GetAtt: [ 'dynamodbTableLogicalId', 'StreamArn' ]
Because my dynamodb arn is the output string of my nested stack. I do not want export everything in nested stack.