-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated SDK generation @ aws-cloudformation-user-guide 19dc52cd3f20…
…07d6d268b65b739ffb5ebf8c1e76 (#1841) *Automated PR* #### New resources: - `apigateway.BasePathMappingV2` - `apigateway.DomainNameAccessAssociation` - `apigateway.DomainNameV2` - `connect.EmailAddress` - `customerprofiles.SegmentDefinition` - `ec2.VpcBlockPublicAccessExclusion` - `ec2.VpcBlockPublicAccessOptions` - `m2.Deployment` - `workspacesweb.DataProtectionSettings` #### New functions: - `apigateway.getBasePathMappingV2` - `apigateway.getDomainNameAccessAssociation` - `apigateway.getDomainNameV2` - `connect.getEmailAddress` - `customerprofiles.getSegmentDefinition` - `ec2.getVpcBlockPublicAccessExclusion` - `ec2.getVpcBlockPublicAccessOptions` - `m2.getDeployment` - `workspacesweb.getDataProtectionSettings`
- Loading branch information
1 parent
2f423cb
commit 30a616b
Showing
464 changed files
with
38,311 additions
and
1,230 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
cb94316f94576e3ce5c9b6f2912af63b46f9357e | ||
29eaaa79dfb7b0afd2f6a548371b1182aafe20c1 |
63 changes: 63 additions & 0 deletions
63
aws-cloudformation-schema/aws-apigateway-basepathmappingv2.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"typeName" : "AWS::ApiGateway::BasePathMappingV2", | ||
"description" : "Resource Type definition for AWS::ApiGateway::BasePathMappingV2", | ||
"sourceUrl" : "https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-apigateway", | ||
"additionalProperties" : false, | ||
"properties" : { | ||
"BasePath" : { | ||
"type" : "string", | ||
"description" : "The base path name that callers of the API must provide in the URL after the domain name." | ||
}, | ||
"DomainNameArn" : { | ||
"type" : "string", | ||
"description" : "The Arn of an AWS::ApiGateway::DomainNameV2 resource." | ||
}, | ||
"RestApiId" : { | ||
"type" : "string", | ||
"description" : "The ID of the API." | ||
}, | ||
"Stage" : { | ||
"type" : "string", | ||
"description" : "The name of the API's stage." | ||
}, | ||
"BasePathMappingArn" : { | ||
"type" : "string", | ||
"description" : "Amazon Resource Name (ARN) of the resource." | ||
} | ||
}, | ||
"required" : [ "DomainNameArn", "RestApiId" ], | ||
"createOnlyProperties" : [ "/properties/DomainNameArn", "/properties/BasePath" ], | ||
"readOnlyProperties" : [ "/properties/BasePathMappingArn" ], | ||
"primaryIdentifier" : [ "/properties/BasePathMappingArn" ], | ||
"tagging" : { | ||
"taggable" : false, | ||
"tagOnCreate" : false, | ||
"tagUpdatable" : false, | ||
"cloudFormationSystemTags" : false | ||
}, | ||
"handlers" : { | ||
"create" : { | ||
"permissions" : [ "apigateway:POST", "apigateway:GET" ] | ||
}, | ||
"read" : { | ||
"permissions" : [ "apigateway:GET" ] | ||
}, | ||
"update" : { | ||
"permissions" : [ "apigateway:GET", "apigateway:DELETE", "apigateway:PATCH" ] | ||
}, | ||
"delete" : { | ||
"permissions" : [ "apigateway:DELETE" ] | ||
}, | ||
"list" : { | ||
"handlerSchema" : { | ||
"properties" : { | ||
"DomainNameArn" : { | ||
"$ref" : "resource-schema.json#/properties/DomainNameArn" | ||
} | ||
}, | ||
"required" : [ "DomainNameArn" ] | ||
}, | ||
"permissions" : [ "apigateway:GET" ] | ||
} | ||
} | ||
} |
74 changes: 74 additions & 0 deletions
74
aws-cloudformation-schema/aws-apigateway-domainnameaccessassociation.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
{ | ||
"typeName" : "AWS::ApiGateway::DomainNameAccessAssociation", | ||
"description" : "Resource Type definition for AWS::ApiGateway::DomainNameAccessAssociation.", | ||
"sourceUrl" : "https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-apigateway", | ||
"additionalProperties" : false, | ||
"properties" : { | ||
"DomainNameAccessAssociationArn" : { | ||
"type" : "string", | ||
"description" : "The amazon resource name (ARN) of the domain name access association resource." | ||
}, | ||
"DomainNameArn" : { | ||
"type" : "string", | ||
"description" : "The amazon resource name (ARN) of the domain name resource." | ||
}, | ||
"AccessAssociationSource" : { | ||
"type" : "string", | ||
"description" : "The source of the domain name access association resource." | ||
}, | ||
"AccessAssociationSourceType" : { | ||
"type" : "string", | ||
"description" : "The source type of the domain name access association resource.", | ||
"enum" : [ "VPCE" ] | ||
}, | ||
"Tags" : { | ||
"description" : "An array of arbitrary tags (key-value pairs) to associate with the domainname access association.", | ||
"uniqueItems" : false, | ||
"type" : "array", | ||
"items" : { | ||
"$ref" : "#/definitions/Tag" | ||
} | ||
} | ||
}, | ||
"definitions" : { | ||
"Tag" : { | ||
"type" : "object", | ||
"additionalProperties" : false, | ||
"properties" : { | ||
"Value" : { | ||
"type" : "string" | ||
}, | ||
"Key" : { | ||
"type" : "string" | ||
} | ||
}, | ||
"required" : [ "Value", "Key" ] | ||
} | ||
}, | ||
"primaryIdentifier" : [ "/properties/DomainNameAccessAssociationArn" ], | ||
"required" : [ "DomainNameArn", "AccessAssociationSource", "AccessAssociationSourceType" ], | ||
"readOnlyProperties" : [ "/properties/DomainNameAccessAssociationArn" ], | ||
"createOnlyProperties" : [ "/properties/DomainNameArn", "/properties/AccessAssociationSource", "/properties/AccessAssociationSourceType", "/properties/Tags" ], | ||
"tagging" : { | ||
"taggable" : true, | ||
"tagOnCreate" : true, | ||
"tagUpdatable" : false, | ||
"cloudFormationSystemTags" : true, | ||
"tagProperty" : "/properties/Tags", | ||
"permissions" : [ "apigateway:POST", "apigateway:DELETE", "apigateway:GET" ] | ||
}, | ||
"handlers" : { | ||
"create" : { | ||
"permissions" : [ "apigateway:POST", "apigateway:GET" ] | ||
}, | ||
"read" : { | ||
"permissions" : [ "apigateway:GET" ] | ||
}, | ||
"delete" : { | ||
"permissions" : [ "apigateway:DELETE", "apigateway:GET" ] | ||
}, | ||
"list" : { | ||
"permissions" : [ "apigateway:GET" ] | ||
} | ||
} | ||
} |
93 changes: 93 additions & 0 deletions
93
aws-cloudformation-schema/aws-apigateway-domainnamev2.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
{ | ||
"typeName" : "AWS::ApiGateway::DomainNameV2", | ||
"description" : "Resource Type definition for AWS::ApiGateway::DomainNameV2.", | ||
"sourceUrl" : "https://github.com/aws-cloudformation/aws-cloudformation-rpdk.git", | ||
"definitions" : { | ||
"EndpointConfiguration" : { | ||
"type" : "object", | ||
"properties" : { | ||
"Types" : { | ||
"type" : "array", | ||
"items" : { | ||
"type" : "string" | ||
} | ||
} | ||
}, | ||
"additionalProperties" : false | ||
}, | ||
"Tag" : { | ||
"type" : "object", | ||
"properties" : { | ||
"Key" : { | ||
"type" : "string" | ||
}, | ||
"Value" : { | ||
"type" : "string" | ||
} | ||
}, | ||
"additionalProperties" : false | ||
} | ||
}, | ||
"properties" : { | ||
"CertificateArn" : { | ||
"type" : "string" | ||
}, | ||
"DomainName" : { | ||
"type" : "string" | ||
}, | ||
"EndpointConfiguration" : { | ||
"$ref" : "#/definitions/EndpointConfiguration" | ||
}, | ||
"SecurityPolicy" : { | ||
"type" : "string" | ||
}, | ||
"Policy" : { | ||
"type" : [ "object", "string" ] | ||
}, | ||
"ManagementPolicy" : { | ||
"type" : [ "object", "string" ] | ||
}, | ||
"DomainNameId" : { | ||
"type" : "string" | ||
}, | ||
"DomainNameArn" : { | ||
"type" : "string", | ||
"description" : "The amazon resource name (ARN) of the domain name resource." | ||
}, | ||
"Tags" : { | ||
"type" : "array", | ||
"items" : { | ||
"$ref" : "#/definitions/Tag" | ||
} | ||
} | ||
}, | ||
"tagging" : { | ||
"taggable" : true, | ||
"tagOnCreate" : true, | ||
"tagUpdatable" : true, | ||
"cloudFormationSystemTags" : true, | ||
"tagProperty" : "/properties/Tags", | ||
"permissions" : [ "apigateway:PUT", "apigateway:PATCH", "apigateway:DELETE", "apigateway:GET", "apigateway:POST" ] | ||
}, | ||
"additionalProperties" : false, | ||
"primaryIdentifier" : [ "/properties/DomainNameArn" ], | ||
"createOnlyProperties" : [ "/properties/DomainName", "/properties/SecurityPolicy", "/properties/EndpointConfiguration" ], | ||
"readOnlyProperties" : [ "/properties/DomainNameId", "/properties/DomainNameArn" ], | ||
"handlers" : { | ||
"create" : { | ||
"permissions" : [ "apigateway:POST", "apigateway:GET", "apigateway:UpdateDomainNamePolicy", "apigateway:UpdateDomainNameManagementPolicy" ] | ||
}, | ||
"read" : { | ||
"permissions" : [ "apigateway:GET" ] | ||
}, | ||
"update" : { | ||
"permissions" : [ "apigateway:GET", "apigateway:PUT", "apigateway:PATCH", "apigateway:UpdateDomainNamePolicy", "apigateway:UpdateDomainNameManagementPolicy" ] | ||
}, | ||
"delete" : { | ||
"permissions" : [ "apigateway:DELETE", "apigateway:GET", "apigateway:UpdateDomainNamePolicy", "apigateway:UpdateDomainNameManagementPolicy" ] | ||
}, | ||
"list" : { | ||
"permissions" : [ "apigateway:GET" ] | ||
} | ||
} | ||
} |
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
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
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
Oops, something went wrong.