libZSservicesZSamazonka-maciev2ZSamazonka-maciev2
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.MacieV2.Types.DefaultDetection

Description

 
Synopsis

Documentation

data DefaultDetection Source #

Provides information about a type of sensitive data that was detected by a managed data identifier and produced a sensitive data finding.

See: newDefaultDetection smart constructor.

Constructors

DefaultDetection' 

Fields

  • occurrences :: Maybe Occurrences

    The location of 1-15 occurrences of the sensitive data that was detected. A finding includes location data for a maximum of 15 occurrences of sensitive data.

  • count :: Maybe Integer

    The total number of occurrences of the type of sensitive data that was detected.

  • type' :: Maybe Text

    The type of sensitive data that was detected. For example, AWS_CREDENTIALS, PHONE_NUMBER, or ADDRESS.

Instances

Instances details
Eq DefaultDetection Source # 
Instance details

Defined in Amazonka.MacieV2.Types.DefaultDetection

Read DefaultDetection Source # 
Instance details

Defined in Amazonka.MacieV2.Types.DefaultDetection

Show DefaultDetection Source # 
Instance details

Defined in Amazonka.MacieV2.Types.DefaultDetection

Generic DefaultDetection Source # 
Instance details

Defined in Amazonka.MacieV2.Types.DefaultDetection

Associated Types

type Rep DefaultDetection :: Type -> Type #

NFData DefaultDetection Source # 
Instance details

Defined in Amazonka.MacieV2.Types.DefaultDetection

Methods

rnf :: DefaultDetection -> () #

Hashable DefaultDetection Source # 
Instance details

Defined in Amazonka.MacieV2.Types.DefaultDetection

FromJSON DefaultDetection Source # 
Instance details

Defined in Amazonka.MacieV2.Types.DefaultDetection

type Rep DefaultDetection Source # 
Instance details

Defined in Amazonka.MacieV2.Types.DefaultDetection

type Rep DefaultDetection = D1 ('MetaData "DefaultDetection" "Amazonka.MacieV2.Types.DefaultDetection" "libZSservicesZSamazonka-maciev2ZSamazonka-maciev2" 'False) (C1 ('MetaCons "DefaultDetection'" 'PrefixI 'True) (S1 ('MetaSel ('Just "occurrences") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Occurrences)) :*: (S1 ('MetaSel ('Just "count") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newDefaultDetection :: DefaultDetection Source #

Create a value of DefaultDetection with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:occurrences:DefaultDetection', defaultDetection_occurrences - The location of 1-15 occurrences of the sensitive data that was detected. A finding includes location data for a maximum of 15 occurrences of sensitive data.

$sel:count:DefaultDetection', defaultDetection_count - The total number of occurrences of the type of sensitive data that was detected.

$sel:type':DefaultDetection', defaultDetection_type - The type of sensitive data that was detected. For example, AWS_CREDENTIALS, PHONE_NUMBER, or ADDRESS.

defaultDetection_occurrences :: Lens' DefaultDetection (Maybe Occurrences) Source #

The location of 1-15 occurrences of the sensitive data that was detected. A finding includes location data for a maximum of 15 occurrences of sensitive data.

defaultDetection_count :: Lens' DefaultDetection (Maybe Integer) Source #

The total number of occurrences of the type of sensitive data that was detected.

defaultDetection_type :: Lens' DefaultDetection (Maybe Text) Source #

The type of sensitive data that was detected. For example, AWS_CREDENTIALS, PHONE_NUMBER, or ADDRESS.