This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto3 | |
import copy | |
table = "${destTableName}" | |
def handler(event, context): | |
// do some assume role stuff into another account here | |
// client = boto3.client('iam') | |
// response = client.assume_role( | |
// RoleArn=arn, | |
// RoleSessionName=username, | |
// DurationSeconds=timeout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// test data | |
class Foo | |
{ | |
private $a; | |
public function __construct($a) | |
{ |