This file contains hidden or 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
This XML file does not appear to have any style information associated with it. The document tree is shown below. | |
<xs:schema xmlns:tns="http://cloudfront.amazonaws.com/doc/2016-01-13/" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://cloudfront.amazonaws.com/doc/2016-01-13/" elementFormDefault="qualified"> | |
<xs:element name="ActiveTrustedSigners" type="tns:ActiveTrustedSigners"/> | |
<xs:complexType name="ActiveTrustedSigners"> | |
<xs:sequence> | |
<xs:element name="Enabled" type="xs:boolean"/> | |
<xs:element name="Quantity" type="xs:integer"/> | |
<xs:element name="Items" type="tns:SignerList" minOccurs="0"/> | |
</xs:sequence> | |
</xs:complexType> |
This file contains hidden or 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
{ | |
"version":"2.0", | |
"metadata":{ | |
"apiVersion":"2016-01-13", | |
"endpointPrefix":"cloudfront", | |
"globalEndpoint":"cloudfront.amazonaws.com", | |
"protocol":"rest-xml", | |
"serviceAbbreviation":"CloudFront", | |
"serviceFullName":"Amazon CloudFront", | |
"serviceId":"CloudFront", |
This file contains hidden or 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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Action": [ | |
"apigateway:*", | |
"autoscaling:*", | |
"cloudtrail:*", | |
"cloudwatch:*", | |
"cloudformation:*", |
This file contains hidden or 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
a4b | |
account | |
acm | |
acm-pca | |
amplify | |
apigateway | |
application-autoscaling | |
appstream | |
appsync | |
artifact |
This file contains hidden or 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
"*" | |
"arn:*:iam::*:role/aws-service-role/s3.data-source.lustre.fsx.amazonaws.com/AWSServiceRoleForFSxS3Access_*" | |
"arn:aws:a4b:*:*:gateway/*" | |
"arn:aws:acm-pca:*:*:certificate-authority/*" | |
"arn:aws:acuity:*:*:stream/deeplens*/*" | |
"arn:aws:apigateway:*::/*" | |
"arn:aws:apigateway:*::/account", | |
"arn:aws:apigateway:*::/clientcertificates", | |
"arn:aws:apigateway:*::/clientcertificates/*", | |
"arn:aws:apigateway:*::/domainnames" |
This file contains hidden or 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
#!/usr/bin/env python | |
from os import listdir | |
from os.path import isfile, join | |
import re | |
import json | |
from bs4 import BeautifulSoup | |
""" |
This file contains hidden or 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
Clone botocore and run `git rev-list --all > commit_list.txt` to get a chrological list of the hashes. | |
Then I manually installed https://github.com/nok/git-walk but had to modify it to use my list instead of generating it's own each time because it was going into a loop. | |
So `read_commit_ids` looks like this: | |
``` | |
def read_commit_ids(): | |
#cmd = 'git rev-list --all' | |
#log = subp.check_output(cmd.split()).strip() | |
#log = [line.strip() for line in log.split('\n')] | |
with open("commit_list.txt") as f: |
This file contains hidden or 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
AWS::AmazonMQ::Broker | |
AWS::AmazonMQ::Configuration | |
AWS::ApiGateway::Account | |
AWS::ApiGateway::ApiKey | |
AWS::ApiGateway::Authorizer | |
AWS::ApiGateway::BasePathMapping | |
AWS::ApiGateway::ClientCertificate | |
AWS::ApiGateway::Deployment | |
AWS::ApiGateway::DocumentationPart | |
AWS::ApiGateway::DocumentationVersion |
This file contains hidden or 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
AWS::ACM::Certificate | |
AWS::AutoScaling::AutoScalingGroup | |
AWS::AutoScaling::LaunchConfiguration | |
AWS::AutoScaling::ScalingPolicy | |
AWS::AutoScaling::ScheduledAction | |
AWS::CloudFormation::Stack | |
AWS::CloudFront::Distribution | |
AWS::CloudFront::StreamingDistribution | |
AWS::CloudTrail::Trail | |
AWS::CloudWatch::Alarm |
This file contains hidden or 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
{ | |
"update.channel": "none", | |
"extensions.autoUpdate": false, | |
"extensions.ignoreRecommendations": true, | |
"editor.autoClosingBrackets": false, | |
"html.autoClosingTags": false, | |
"editor.quickSuggestions": { | |
"other": false, | |
"comments": false, | |
"strings": false |