@awboost/cfn-resource-types 0.1.99 → 0.1.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -175,6 +175,7 @@ export type ProjectSourceVersion = {
|
|
|
175
175
|
export type ProjectTriggers = {
|
|
176
176
|
BuildType?: string;
|
|
177
177
|
FilterGroups?: FilterGroup[];
|
|
178
|
+
ScopeConfiguration?: ScopeConfiguration;
|
|
178
179
|
Webhook?: boolean;
|
|
179
180
|
};
|
|
180
181
|
/**
|
|
@@ -194,6 +195,13 @@ export type S3LogsConfig = {
|
|
|
194
195
|
Location?: string;
|
|
195
196
|
Status: string;
|
|
196
197
|
};
|
|
198
|
+
/**
|
|
199
|
+
* Type definition for `AWS::CodeBuild::Project.ScopeConfiguration`.
|
|
200
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-scopeconfiguration.html}
|
|
201
|
+
*/
|
|
202
|
+
export type ScopeConfiguration = {
|
|
203
|
+
Name: string;
|
|
204
|
+
};
|
|
197
205
|
/**
|
|
198
206
|
* Type definition for `AWS::CodeBuild::Project.Source`.
|
|
199
207
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html}
|