Interface CreateConfigurationPolicyRequest.Builder

    • Method Detail

      • name

        CreateConfigurationPolicyRequest.Builder name​(String name)

        The name of the configuration policy. Alphanumeric characters and the following ASCII characters are permitted: -, ., !, *, /.

        Parameters:
        name - The name of the configuration policy. Alphanumeric characters and the following ASCII characters are permitted: -, ., !, *, /.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • description

        CreateConfigurationPolicyRequest.Builder description​(String description)

        The description of the configuration policy.

        Parameters:
        description - The description of the configuration policy.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • configurationPolicy

        CreateConfigurationPolicyRequest.Builder configurationPolicy​(Policy configurationPolicy)

        An object that defines how Security Hub is configured. It includes whether Security Hub is enabled or disabled, a list of enabled security standards, a list of enabled or disabled security controls, and a list of custom parameter values for specified controls. If you provide a list of security controls that are enabled in the configuration policy, Security Hub disables all other controls (including newly released controls). If you provide a list of security controls that are disabled in the configuration policy, Security Hub enables all other controls (including newly released controls).

        Parameters:
        configurationPolicy - An object that defines how Security Hub is configured. It includes whether Security Hub is enabled or disabled, a list of enabled security standards, a list of enabled or disabled security controls, and a list of custom parameter values for specified controls. If you provide a list of security controls that are enabled in the configuration policy, Security Hub disables all other controls (including newly released controls). If you provide a list of security controls that are disabled in the configuration policy, Security Hub enables all other controls (including newly released controls).
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • configurationPolicy

        default CreateConfigurationPolicyRequest.Builder configurationPolicy​(Consumer<Policy.Builder> configurationPolicy)

        An object that defines how Security Hub is configured. It includes whether Security Hub is enabled or disabled, a list of enabled security standards, a list of enabled or disabled security controls, and a list of custom parameter values for specified controls. If you provide a list of security controls that are enabled in the configuration policy, Security Hub disables all other controls (including newly released controls). If you provide a list of security controls that are disabled in the configuration policy, Security Hub enables all other controls (including newly released controls).

        This is a convenience method that creates an instance of the Policy.Builder avoiding the need to create one manually via Policy.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to configurationPolicy(Policy).

        Parameters:
        configurationPolicy - a consumer that will call methods on Policy.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        configurationPolicy(Policy)