aws-cdk-lib.GlobIgnoreStrategy

class GlobIgnoreStrategy

LanguageType name
.NETAmazon.CDK.GlobIgnoreStrategy
Gogithub.com/aws/aws-cdk-go/awscdk/v2#GlobIgnoreStrategy
Javasoftware.amazon.awscdk.GlobIgnoreStrategy
Pythonaws_cdk.GlobIgnoreStrategy
TypeScript (source)aws-cdk-lib » GlobIgnoreStrategy

Extends IgnoreStrategy

Ignores file paths based on simple glob patterns.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
const globIgnoreStrategy = new cdk.GlobIgnoreStrategy('absoluteRootPath', ['patterns']);

Initializer

new GlobIgnoreStrategy(absoluteRootPath: string, patterns: string[])

Parameters

  • absoluteRootPath string
  • patterns string[]

Methods

NameDescription
add(pattern)Adds another pattern.
ignores(absoluteFilePath)Determines whether a given file path should be ignored or not.

add(pattern)

public add(pattern: string): void

Parameters

  • pattern string

Adds another pattern.


ignores(absoluteFilePath)

public ignores(absoluteFilePath: string): boolean

Parameters

  • absoluteFilePath string — absolute file path to be assessed against the pattern.

Returns

  • boolean

Determines whether a given file path should be ignored or not.