PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::FMS::Policy; use Moose; has ExcludeMap => (is => 'ro', isa => 'Paws::FMS::CustomerPolicyScopeMap'); has ExcludeResourceTags => (is => 'ro', isa => 'Bool', required => 1); has IncludeMap => (is => 'ro', isa => 'Paws::FMS::CustomerPolicyScopeMap'); has PolicyId => (is => 'ro', isa => 'Str'); has PolicyName => (is => 'ro', isa => 'Str', required => 1); has PolicyUpdateToken => (is => 'ro', isa => 'Str'); has RemediationEnabled => (is => 'ro', isa => 'Bool', required => 1); has ResourceTags => (is => 'ro', isa => 'ArrayRef[Paws::FMS::ResourceTag]'); has ResourceType => (is => 'ro', isa => 'Str', required => 1); has ResourceTypeList => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has SecurityServicePolicyData => (is => 'ro', isa => 'Paws::FMS::SecurityServicePolicyData', required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::FMS::Policy =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::FMS::Policy object: $service_obj->Method(Att1 => { ExcludeMap => $value, ..., SecurityServicePolicyData => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::FMS::Policy object: $result = $service_obj->Method(...); $result->Att1->ExcludeMap =head1 DESCRIPTION An AWS Firewall Manager policy. =head1 ATTRIBUTES =head2 ExcludeMap => L Specifies the AWS account IDs and AWS Organizations organizational units (OUs) to exclude from the policy. Specifying an OU is the equivalent of specifying all accounts in the OU and in any of its child OUs, including any child OUs and accounts that are added at a later time. You can specify inclusions or exclusions, but not both. If you specify an C, AWS Firewall Manager applies the policy to all accounts specified by the C, and does not evaluate any C specifications. If you do not specify an C, then Firewall Manager applies the policy to all accounts except for those specified by the C. You can specify account IDs, OUs, or a combination: =over =item * Specify account IDs by setting the key to C. For example, the following is a valid map: C<{EACCOUNTE : [EaccountID1E, EaccountID2E]}>. =item * Specify OUs by setting the key to C. For example, the following is a valid map: C<{EORG_UNITE : [Eouid111E, Eouid112E]}>. =item * Specify accounts and OUs together in a single map, separated with a comma. For example, the following is a valid map: C<{EACCOUNTE : [EaccountID1E, EaccountID2E], EORG_UNITE : [Eouid111E, Eouid112E]}>. =back =head2 B ExcludeResourceTags => Bool If set to C, resources with the tags that are specified in the C array are not in scope of the policy. If set to C, and the C array is not null, only resources with the specified tags are in scope of the policy. =head2 IncludeMap => L Specifies the AWS account IDs and AWS Organizations organizational units (OUs) to include in the policy. Specifying an OU is the equivalent of specifying all accounts in the OU and in any of its child OUs, including any child OUs and accounts that are added at a later time. You can specify inclusions or exclusions, but not both. If you specify an C, AWS Firewall Manager applies the policy to all accounts specified by the C, and does not evaluate any C specifications. If you do not specify an C, then Firewall Manager applies the policy to all accounts except for those specified by the C. You can specify account IDs, OUs, or a combination: =over =item * Specify account IDs by setting the key to C. For example, the following is a valid map: C<{EACCOUNTE : [EaccountID1E, EaccountID2E]}>. =item * Specify OUs by setting the key to C. For example, the following is a valid map: C<{EORG_UNITE : [Eouid111E, Eouid112E]}>. =item * Specify accounts and OUs together in a single map, separated with a comma. For example, the following is a valid map: C<{EACCOUNTE : [EaccountID1E, EaccountID2E], EORG_UNITE : [Eouid111E, Eouid112E]}>. =back =head2 PolicyId => Str The ID of the AWS Firewall Manager policy. =head2 B PolicyName => Str The name of the AWS Firewall Manager policy. =head2 PolicyUpdateToken => Str A unique identifier for each update to the policy. When issuing a C request, the C in the request must match the C of the current policy version. To get the C of the current policy version, use a C request. =head2 B RemediationEnabled => Bool Indicates if the policy should be automatically applied to new resources. =head2 ResourceTags => ArrayRef[L] An array of C objects. =head2 B ResourceType => Str The type of resource protected by or in scope of the policy. This is in the format shown in the AWS Resource Types Reference (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html). For AWS WAF and Shield Advanced, examples include C and C. For a security group common policy, valid values are C and C. For a security group content audit policy, valid values are C, C, and C. For a security group usage audit policy, the value is C. For an AWS Network Firewall policy, the value is C. =head2 ResourceTypeList => ArrayRef[Str|Undef] An array of C. =head2 B SecurityServicePolicyData => L Details about the security service that is being used to protect the resources. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut