Struct aws_sdk_iam::client::fluent_builders::GetContextKeysForCustomPolicy [−][src]
pub struct GetContextKeysForCustomPolicy<C = DynConnector, M = AwsMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to GetContextKeysForCustomPolicy
.
Gets a list of all of the context keys referenced in the input policies. The policies are supplied as a list of one or more strings. To get the context keys from policies associated with an IAM user, group, or role, use GetContextKeysForPrincipalPolicy.
Context keys are variables maintained by Amazon Web Services and its services that provide details
about the context of an API query request. Context keys can be evaluated by testing
against a value specified in an IAM policy. Use
GetContextKeysForCustomPolicy
to understand what key names and values
you must supply when you call SimulateCustomPolicy. Note that all
parameters are shown in unencoded form here for clarity but must be URL encoded to be
included as a part of a real HTML request.
Implementations
impl<C, M, R> GetContextKeysForCustomPolicy<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> GetContextKeysForCustomPolicy<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<GetContextKeysForCustomPolicyOutput, SdkError<GetContextKeysForCustomPolicyError>> where
R::Policy: SmithyRetryPolicy<GetContextKeysForCustomPolicyInputOperationOutputAlias, GetContextKeysForCustomPolicyOutput, GetContextKeysForCustomPolicyError, GetContextKeysForCustomPolicyInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<GetContextKeysForCustomPolicyOutput, SdkError<GetContextKeysForCustomPolicyError>> where
R::Policy: SmithyRetryPolicy<GetContextKeysForCustomPolicyInputOperationOutputAlias, GetContextKeysForCustomPolicyOutput, GetContextKeysForCustomPolicyError, GetContextKeysForCustomPolicyInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
Appends an item to PolicyInputList
.
To override the contents of this collection use set_policy_input_list
.
A list of policies for which you want the list of context keys referenced in those policies. Each document is specified as a string containing the complete, valid JSON text of an IAM policy.
The regex pattern used to validate this parameter is a string of characters consisting of the following:
-
Any printable ASCII character ranging from the space character (
\u0020
) through the end of the ASCII character range -
The printable characters in the Basic Latin and Latin-1 Supplement character set (through
\u00FF
) -
The special characters tab (
\u0009
), line feed (\u000A
), and carriage return (\u000D
)
A list of policies for which you want the list of context keys referenced in those policies. Each document is specified as a string containing the complete, valid JSON text of an IAM policy.
The regex pattern used to validate this parameter is a string of characters consisting of the following:
-
Any printable ASCII character ranging from the space character (
\u0020
) through the end of the ASCII character range -
The printable characters in the Basic Latin and Latin-1 Supplement character set (through
\u00FF
) -
The special characters tab (
\u0009
), line feed (\u000A
), and carriage return (\u000D
)
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !RefUnwindSafe for GetContextKeysForCustomPolicy<C, M, R>
impl<C, M, R> Send for GetContextKeysForCustomPolicy<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for GetContextKeysForCustomPolicy<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for GetContextKeysForCustomPolicy<C, M, R>
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !UnwindSafe for GetContextKeysForCustomPolicy<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more