#[non_exhaustive]pub struct AddLayerVersionPermissionInput { /* private fields */ }
Implementations§
source§impl AddLayerVersionPermissionInput
impl AddLayerVersionPermissionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AddLayerVersionPermission, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AddLayerVersionPermission, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<AddLayerVersionPermission
>
Examples found in repository?
1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::AddLayerVersionPermission,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::AddLayerVersionPermissionError>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// 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](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::AddLayerVersionPermissionOutput,
aws_smithy_http::result::SdkError<crate::error::AddLayerVersionPermissionError>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AddLayerVersionPermissionInput
.
source§impl AddLayerVersionPermissionInput
impl AddLayerVersionPermissionInput
sourcepub fn layer_name(&self) -> Option<&str>
pub fn layer_name(&self) -> Option<&str>
The name or Amazon Resource Name (ARN) of the layer.
sourcepub fn version_number(&self) -> i64
pub fn version_number(&self) -> i64
The version number.
sourcepub fn statement_id(&self) -> Option<&str>
pub fn statement_id(&self) -> Option<&str>
An identifier that distinguishes the policy from others on the same layer version.
sourcepub fn action(&self) -> Option<&str>
pub fn action(&self) -> Option<&str>
The API action that grants access to the layer. For example, lambda:GetLayerVersion
.
sourcepub fn principal(&self) -> Option<&str>
pub fn principal(&self) -> Option<&str>
An account ID, or *
to grant layer usage permission to all accounts in an organization, or all Amazon Web Services accounts (if organizationId
is not specified). For the last case, make sure that you really do want all Amazon Web Services accounts to have usage permission to this layer.
sourcepub fn organization_id(&self) -> Option<&str>
pub fn organization_id(&self) -> Option<&str>
With the principal set to *
, grant permission to all accounts in the specified organization.
sourcepub fn revision_id(&self) -> Option<&str>
pub fn revision_id(&self) -> Option<&str>
Only update the policy if the revision ID matches the ID specified. Use this option to avoid modifying a policy that has changed since you last read it.
Trait Implementations§
source§impl Clone for AddLayerVersionPermissionInput
impl Clone for AddLayerVersionPermissionInput
source§fn clone(&self) -> AddLayerVersionPermissionInput
fn clone(&self) -> AddLayerVersionPermissionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more