Uses of Class
software.amazon.awscdk.services.bedrockagentcore.PolicyCondition
Packages that use PolicyCondition
Package
Description
Amazon Bedrock AgentCore Construct Library
-
Uses of PolicyCondition in software.amazon.awscdk.services.bedrockagentcore
Methods in software.amazon.awscdk.services.bedrockagentcore that return PolicyConditionModifier and TypeMethodDescriptionstatic PolicyConditionPolicyCondition.allOf(List<? extends PolicyCondition> conditions) All of the given conditions must hold.static PolicyConditionPolicyCondition.anyOf(List<? extends PolicyCondition> conditions) At least one of the given conditions must hold.static PolicyConditionPolicyCondition.booleanEquals(PolicyAttribute attribute, Boolean value) The attribute equals a boolean value.static PolicyConditionPolicyCondition.ipInRange(PolicyAttribute attribute, String cidr) The attribute is an IP address inside the given CIDR range.static PolicyConditionPolicyCondition.numberEquals(PolicyAttribute attribute, Number value) The attribute equals a number value.static PolicyConditionPolicyCondition.numberGreaterThan(PolicyAttribute attribute, Number value) The attribute is greater than a number value.static PolicyConditionPolicyCondition.numberGreaterThanOrEquals(PolicyAttribute attribute, Number value) The attribute is greater than or equal to a number value.static PolicyConditionPolicyCondition.numberIn(PolicyAttribute attribute, List<? extends Number> values) The attribute is one of the given number values.static PolicyConditionPolicyCondition.numberLessThan(PolicyAttribute attribute, Number value) The attribute is less than a number value.static PolicyConditionPolicyCondition.numberLessThanOrEquals(PolicyAttribute attribute, Number value) The attribute is less than or equal to a number value.static PolicyConditionPolicyCondition.numberNotEquals(PolicyAttribute attribute, Number value) The attribute does not equal a number value.static PolicyConditionPolicyCondition.setContains(PolicyAttribute attribute, String value) The attribute is a set that contains the given value.static PolicyConditionPolicyCondition.stringEquals(PolicyAttribute attribute, String value) The attribute equals a string value.static PolicyConditionPolicyCondition.stringIn(PolicyAttribute attribute, List<String> values) The attribute is one of the given string values.static PolicyConditionPolicyCondition.stringNotEquals(PolicyAttribute attribute, String value) The attribute does not equal a string value.Methods in software.amazon.awscdk.services.bedrockagentcore that return types with arguments of type PolicyConditionModifier and TypeMethodDescriptiondefault List<PolicyCondition> PolicyStatementProps.getUnless()Conditions that must not hold for the statement to apply.final List<PolicyCondition> PolicyStatementProps.Jsii$Proxy.getUnless()default List<PolicyCondition> PolicyStatementProps.getWhen()Conditions that must all hold for the statement to apply.final List<PolicyCondition> PolicyStatementProps.Jsii$Proxy.getWhen()Method parameters in software.amazon.awscdk.services.bedrockagentcore with type arguments of type PolicyConditionModifier and TypeMethodDescriptionstatic PolicyConditionPolicyCondition.allOf(List<? extends PolicyCondition> conditions) All of the given conditions must hold.static PolicyConditionPolicyCondition.anyOf(List<? extends PolicyCondition> conditions) At least one of the given conditions must hold.PolicyStatement.Builder.unless(List<? extends PolicyCondition> unless) Conditions that must not hold for the statement to apply.PolicyStatementProps.Builder.unless(List<? extends PolicyCondition> unless) Sets the value ofPolicyStatementProps.getUnless()PolicyStatement.Builder.when(List<? extends PolicyCondition> when) Conditions that must all hold for the statement to apply.PolicyStatementProps.Builder.when(List<? extends PolicyCondition> when) Sets the value ofPolicyStatementProps.getWhen()