pub struct CreateCertificateAuthorityAuditReportRequest {
pub audit_report_response_format: String,
pub certificate_authority_arn: String,
pub s3_bucket_name: String,
}
Fields§
§audit_report_response_format: String
The format in which to create the report. This can be either JSON or CSV.
The Amazon Resource Name (ARN) of the CA to be audited. This is of the form:
arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
.
s3_bucket_name: String
The name of the S3 bucket that will contain the audit report.
Trait Implementations§
Source§impl Clone for CreateCertificateAuthorityAuditReportRequest
impl Clone for CreateCertificateAuthorityAuditReportRequest
Source§fn clone(&self) -> CreateCertificateAuthorityAuditReportRequest
fn clone(&self) -> CreateCertificateAuthorityAuditReportRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for CreateCertificateAuthorityAuditReportRequest
impl Default for CreateCertificateAuthorityAuditReportRequest
Source§fn default() -> CreateCertificateAuthorityAuditReportRequest
fn default() -> CreateCertificateAuthorityAuditReportRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateCertificateAuthorityAuditReportRequest
impl PartialEq for CreateCertificateAuthorityAuditReportRequest
Source§fn eq(&self, other: &CreateCertificateAuthorityAuditReportRequest) -> bool
fn eq(&self, other: &CreateCertificateAuthorityAuditReportRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateCertificateAuthorityAuditReportRequest
Auto Trait Implementations§
impl Freeze for CreateCertificateAuthorityAuditReportRequest
impl RefUnwindSafe for CreateCertificateAuthorityAuditReportRequest
impl Send for CreateCertificateAuthorityAuditReportRequest
impl Sync for CreateCertificateAuthorityAuditReportRequest
impl Unpin for CreateCertificateAuthorityAuditReportRequest
impl UnwindSafe for CreateCertificateAuthorityAuditReportRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more