pub struct GetServiceArgs {
pub dns_name: Output<Option<String>>,
pub id: Output<Option<String>>,
pub region: Output<Option<String>>,
pub reverse_dns_name: Output<Option<String>>,
pub reverse_dns_prefix: Output<Option<String>>,
pub service_id: Output<Option<String>>,
}
Fields§
§dns_name: Output<Option<String>>
DNS name of the service (e.g., rds.us-east-1.amazonaws.com
). One of dns_name
, reverse_dns_name
, or service_id
is required.
id: Output<Option<String>>
§region: Output<Option<String>>
Region of the service (e.g., us-west-2
, ap-northeast-1
).
reverse_dns_name: Output<Option<String>>
Reverse DNS name of the service (e.g., com.amazonaws.us-west-2.s3
). One of dns_name
, reverse_dns_name
, or service_id
is required.
reverse_dns_prefix: Output<Option<String>>
Prefix of the service (e.g., com.amazonaws
in AWS Commercial, cn.com.amazonaws
in AWS China).
service_id: Output<Option<String>>
Service endpoint ID (e.g., s3
, rds
, ec2
). One of dns_name
, reverse_dns_name
, or service_id
is required. A service’s endpoint ID can be found in the AWS General Reference.
Implementations§
source§impl GetServiceArgs
impl GetServiceArgs
sourcepub fn builder() -> GetServiceArgsBuilder
pub fn builder() -> GetServiceArgsBuilder
Create an instance of GetServiceArgs
using the builder syntax
Trait Implementations§
source§impl Clone for GetServiceArgs
impl Clone for GetServiceArgs
source§fn clone(&self) -> GetServiceArgs
fn clone(&self) -> GetServiceArgs
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for GetServiceArgs
impl RefUnwindSafe for GetServiceArgs
impl Send for GetServiceArgs
impl Sync for GetServiceArgs
impl Unpin for GetServiceArgs
impl UnwindSafe for GetServiceArgs
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)