forked from awslabs/goformation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(schema): CloudFormation Updates (2020-02-22) (awslabs#269)
Updated the following AWS CloudFormation resources: - AWS::WAFv2::RuleGroup - AWS::Config::ConfigurationAggregator - AWS::WAFv2::IPSet - AWS::Cognito::UserPool - AWS::WAFv2::RegexPatternSet - AWS::CodeBuild::Project - AWS::Config::AggregationAuthorization - AWS::WAFv2::WebACL - AWS::WAFv2::WebACL.ExcludedRule - AWS::WAFv2::WebACL.SizeConstraintStatement - AWS::WAFv2::WebACL.IPSetReferenceStatement - AWS::WAFv2::RuleGroup.AndStatementOne - AWS::CodeBuild::Project.ProjectFileSystemLocation - AWS::WAFv2::WebACL.ManagedRuleGroupStatement - AWS::WAFv2::WebACL.OverrideAction - AWS::WAFv2::RuleGroup.XssMatchStatement - AWS::WAFv2::WebACL.AndStatementOne - AWS::WAFv2::RuleGroup.SqliMatchStatement - AWS::WAFv2::RuleGroup.SizeConstraintStatement - AWS::WAFv2::WebACL.DefaultAction - AWS::WAFv2::RuleGroup.RegexPatternSetReferenceStatement - AWS::WAFv2::WebACL.TextTransformation - AWS::WAFv2::WebACL.Rule - AWS::WAFv2::RuleGroup.RateBasedStatementTwo - AWS::WAFv2::RuleGroup.TextTransformation - AWS::WAFv2::RuleGroup.IPSetReferenceStatement - AWS::WAFv2::RuleGroup.Rule - AWS::WAFv2::WebACL.AndStatementTwo - AWS::WAFv2::WebACL.FieldToMatch - AWS::WAFv2::RuleGroup.NotStatementOne - AWS::WAFv2::WebACL.OrStatementTwo - AWS::WAFv2::WebACL.RateBasedStatementTwo - AWS::WAFv2::WebACL.RateBasedStatementOne - AWS::WAFv2::RuleGroup.VisibilityConfig - AWS::WAFv2::RuleGroup.OrStatementTwo - AWS::WAFv2::WebACL.XssMatchStatement - AWS::WAFv2::WebACL.RuleGroupReferenceStatement - AWS::Cognito::UserPool.UsernameConfiguration - AWS::WAFv2::WebACL.OrStatementOne - AWS::WAFv2::RuleGroup.AndStatementTwo - AWS::WAFv2::RuleGroup.NotStatementTwo - AWS::WAFv2::RuleGroup.GeoMatchStatement - AWS::WAFv2::WebACL.ByteMatchStatement - AWS::WAFv2::RuleGroup.FieldToMatch - AWS::WAFv2::RuleGroup.RateBasedStatementOne - AWS::WAFv2::WebACL.GeoMatchStatement - AWS::WAFv2::RuleGroup.RuleAction - AWS::WAFv2::WebACL.RegexPatternSetReferenceStatement - AWS::WAFv2::WebACL.NotStatementTwo - AWS::WAFv2::WebACL.VisibilityConfig - AWS::WAFv2::WebACL.NotStatementOne - AWS::WAFv2::RuleGroup.ByteMatchStatement - AWS::WAFv2::WebACL.RuleAction - AWS::WAFv2::RuleGroup.OrStatementOne - AWS::WAFv2::WebACL.SqliMatchStatement
- Loading branch information
1 parent
fcae940
commit ffd88a6
Showing
82 changed files
with
5,984 additions
and
2,178 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
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
52 changes: 52 additions & 0 deletions
52
cloudformation/codebuild/aws-codebuild-project_projectfilesystemlocation.go
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,52 @@ | ||
package codebuild | ||
|
||
import ( | ||
"github.com/awslabs/goformation/v4/cloudformation/policies" | ||
) | ||
|
||
// Project_ProjectFileSystemLocation AWS CloudFormation Resource (AWS::CodeBuild::Project.ProjectFileSystemLocation) | ||
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectfilesystemlocation.html | ||
type Project_ProjectFileSystemLocation struct { | ||
|
||
// Identifier AWS CloudFormation Property | ||
// Required: true | ||
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectfilesystemlocation.html#cfn-codebuild-project-projectfilesystemlocation-identifier | ||
Identifier string `json:"Identifier,omitempty"` | ||
|
||
// Location AWS CloudFormation Property | ||
// Required: true | ||
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectfilesystemlocation.html#cfn-codebuild-project-projectfilesystemlocation-location | ||
Location string `json:"Location,omitempty"` | ||
|
||
// MountOptions AWS CloudFormation Property | ||
// Required: false | ||
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectfilesystemlocation.html#cfn-codebuild-project-projectfilesystemlocation-mountoptions | ||
MountOptions string `json:"MountOptions,omitempty"` | ||
|
||
// MountPoint AWS CloudFormation Property | ||
// Required: true | ||
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectfilesystemlocation.html#cfn-codebuild-project-projectfilesystemlocation-mountpoint | ||
MountPoint string `json:"MountPoint,omitempty"` | ||
|
||
// Type AWS CloudFormation Property | ||
// Required: true | ||
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectfilesystemlocation.html#cfn-codebuild-project-projectfilesystemlocation-type | ||
Type string `json:"Type,omitempty"` | ||
|
||
// AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy | ||
AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` | ||
|
||
// AWSCloudFormationDependsOn stores the logical ID of the resources to be created before this resource | ||
AWSCloudFormationDependsOn []string `json:"-"` | ||
|
||
// AWSCloudFormationMetadata stores structured data associated with this resource | ||
AWSCloudFormationMetadata map[string]interface{} `json:"-"` | ||
|
||
// AWSCloudFormationCondition stores the logical ID of the condition that must be satisfied for this resource to be created | ||
AWSCloudFormationCondition string `json:"-"` | ||
} | ||
|
||
// AWSCloudFormationType returns the AWS CloudFormation resource type | ||
func (r *Project_ProjectFileSystemLocation) AWSCloudFormationType() string { | ||
return "AWS::CodeBuild::Project.ProjectFileSystemLocation" | ||
} |
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
32 changes: 32 additions & 0 deletions
32
cloudformation/cognito/aws-cognito-userpool_usernameconfiguration.go
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,32 @@ | ||
package cognito | ||
|
||
import ( | ||
"github.com/awslabs/goformation/v4/cloudformation/policies" | ||
) | ||
|
||
// UserPool_UsernameConfiguration AWS CloudFormation Resource (AWS::Cognito::UserPool.UsernameConfiguration) | ||
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html | ||
type UserPool_UsernameConfiguration struct { | ||
|
||
// CaseSensitive AWS CloudFormation Property | ||
// Required: false | ||
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-usernameconfiguration.html#cfn-cognito-userpool-usernameconfiguration-casesensitive | ||
CaseSensitive bool `json:"CaseSensitive,omitempty"` | ||
|
||
// AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy | ||
AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` | ||
|
||
// AWSCloudFormationDependsOn stores the logical ID of the resources to be created before this resource | ||
AWSCloudFormationDependsOn []string `json:"-"` | ||
|
||
// AWSCloudFormationMetadata stores structured data associated with this resource | ||
AWSCloudFormationMetadata map[string]interface{} `json:"-"` | ||
|
||
// AWSCloudFormationCondition stores the logical ID of the condition that must be satisfied for this resource to be created | ||
AWSCloudFormationCondition string `json:"-"` | ||
} | ||
|
||
// AWSCloudFormationType returns the AWS CloudFormation resource type | ||
func (r *UserPool_UsernameConfiguration) AWSCloudFormationType() string { | ||
return "AWS::Cognito::UserPool.UsernameConfiguration" | ||
} |
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.