[][src]Struct rusoto_fms::SecurityServicePolicyData

pub struct SecurityServicePolicyData {
    pub managed_service_data: Option<String>,
    pub type_: String,
}

Details about the security service that is being used to protect the resources.

Fields

managed_service_data: Option<String>

Details about the service that are specific to the service type, in JSON format. For service type SHIELDADVANCED, this is an empty string.

  • Example: WAFV2

    "ManagedServiceData": "{"type":"WAFV2","defaultAction":{"type":"ALLOW"},"preProcessRuleGroups":[{"managedRuleGroupIdentifier":null,"ruleGroupArn":"rulegrouparn","overrideAction":{"type":"COUNT"},"excludedRules":[{"name":"EntityName"}],"ruleGroupType":"RuleGroup"}],"postProcessRuleGroups":[{"managedRuleGroupIdentifier":{"managedRuleGroupName":"AWSManagedRulesAdminProtectionRuleSet","vendor":"AWS"},"ruleGroupArn":"rulegrouparn","overrideAction":{"type":"NONE"},"excludedRules":[],"ruleGroupType":"ManagedRuleGroup"}],"overrideCustomerWebACLAssociation":false}"

  • Example: WAF Classic

    "ManagedServiceData": "{"type": "WAF", "ruleGroups": [{"id": "12345678-1bcd-9012-efga-0987654321ab", "overrideAction" : {"type": "COUNT"}}], "defaultAction": {"type": "BLOCK"}}

  • Example: SECURITYGROUPSCOMMON

    "SecurityServicePolicyData":{"Type":"SECURITYGROUPSCOMMON","ManagedServiceData":"{"type":"SECURITYGROUPSCOMMON","revertManualSecurityGroupChanges":false,"exclusiveResourceSecurityGroupManagement":false, "applyToAllEC2InstanceENIs":false,"securityGroups":[{"id":" sg-000e55995d61a06bd"}]}"},"RemediationEnabled":false,"ResourceType":"AWS::EC2::NetworkInterface"}

  • Example: SECURITYGROUPSCONTENTAUDIT

    "SecurityServicePolicyData":{"Type":"SECURITYGROUPSCONTENTAUDIT","ManagedServiceData":"{"type":"SECURITYGROUPSCONTENTAUDIT","securityGroups":[{"id":" sg-000e55995d61a06bd "}],"securityGroupAction":{"type":"ALLOW"}}"},"RemediationEnabled":false,"ResourceType":"AWS::EC2::NetworkInterface"}

    The security group action for content audit can be ALLOW or DENY. For ALLOW, all in-scope security group rules must be within the allowed range of the policy's security group rules. For DENY, all in-scope security group rules must not contain a value or a range that matches a rule value or range in the policy security group.

  • Example: SECURITYGROUPSUSAGEAUDIT

    "SecurityServicePolicyData":{"Type":"SECURITYGROUPSUSAGEAUDIT","ManagedServiceData":"{"type":"SECURITYGROUPSUSAGE_AUDIT","deleteUnusedSecurityGroups":true,"coalesceRedundantSecurityGroups":true}"},"RemediationEnabled":false,"Resou rceType":"AWS::EC2::SecurityGroup"}

type_: String

The service that the policy is using to protect the resources. This specifies the type of policy that is created, either an AWS WAF policy, a Shield Advanced policy, or a security group policy. For security group policies, Firewall Manager supports one security group for each common policy and for each content audit policy. This is an adjustable limit that you can increase by contacting AWS Support.

Trait Implementations

impl Clone for SecurityServicePolicyData[src]

impl Debug for SecurityServicePolicyData[src]

impl Default for SecurityServicePolicyData[src]

impl<'de> Deserialize<'de> for SecurityServicePolicyData[src]

impl PartialEq<SecurityServicePolicyData> for SecurityServicePolicyData[src]

impl Serialize for SecurityServicePolicyData[src]

impl StructuralPartialEq for SecurityServicePolicyData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.