How to use create_association_batch method in localstack

Best Python code snippet using localstack_python

client.pyi

Source:client.pyi Github

copy

Full Screen

...492 managed nodes.493 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_association)494 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_association)495 """496 def create_association_batch(497 self, *, Entries: List["CreateAssociationBatchRequestEntryTypeDef"]498 ) -> CreateAssociationBatchResultTypeDef:499 """500 Associates the specified Amazon Web Services Systems Manager document (SSM501 document) with the specified managed nodes or targets.502 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_association_batch)503 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_association_batch)504 """505 def create_document(506 self,507 *,508 Content: str,509 Name: str,510 Requires: List["DocumentRequiresTypeDef"] = None,...

Full Screen

Full Screen

client.py

Source:client.py Github

copy

Full Screen

...18 def create_activation(self, IamRole: str, Description: str = None, DefaultInstanceName: str = None, RegistrationLimit: int = None, ExpirationDate: datetime = None, Tags: List = None) -> Dict:19 pass20 def create_association(self, Name: str, DocumentVersion: str = None, InstanceId: str = None, Parameters: Dict = None, Targets: List = None, ScheduleExpression: str = None, OutputLocation: Dict = None, AssociationName: str = None, AutomationTargetParameterName: str = None, MaxErrors: str = None, MaxConcurrency: str = None, ComplianceSeverity: str = None) -> Dict:21 pass22 def create_association_batch(self, Entries: List) -> Dict:23 pass24 def create_document(self, Content: str, Name: str, Attachments: List = None, VersionName: str = None, DocumentType: str = None, DocumentFormat: str = None, TargetType: str = None, Tags: List = None) -> Dict:25 pass26 def create_maintenance_window(self, Name: str, Schedule: str, Duration: int, Cutoff: int, AllowUnassociatedTargets: bool, Description: str = None, StartDate: str = None, EndDate: str = None, ScheduleTimezone: str = None, ClientToken: str = None, Tags: List = None) -> Dict:27 pass28 def create_patch_baseline(self, Name: str, OperatingSystem: str = None, GlobalFilters: Dict = None, ApprovalRules: Dict = None, ApprovedPatches: List = None, ApprovedPatchesComplianceLevel: str = None, ApprovedPatchesEnableNonSecurity: bool = None, RejectedPatches: List = None, RejectedPatchesAction: str = None, Description: str = None, Sources: List = None, ClientToken: str = None, Tags: List = None) -> Dict:29 pass30 def create_resource_data_sync(self, SyncName: str, S3Destination: Dict) -> Dict:31 pass32 def delete_activation(self, ActivationId: str) -> Dict:33 pass34 def delete_association(self, Name: str = None, InstanceId: str = None, AssociationId: str = None) -> Dict:35 pass36 def delete_document(self, Name: str) -> Dict:...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful